Qortal-Hub/src/assets/Icons/ThreadsIcon.tsx
2024-09-20 03:57:10 +03:00

13 lines
539 B
TypeScript

import React from 'react';
export const ThreadsIcon= ({ color = 'white', height, width }) => {
return (
<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.51017 1.80943H7.76526H8V0.982675C8 0.440572 7.62128 0 7.1518 0H0.8482C0.380282 0 0 0.440572 0 0.982675V5.84347C0 6.38558 0.380282 6.82615 0.8482 6.82615H2.00782L1.90297 9L4 6.82615H5.42723V6.55419V3.06406C5.42723 2.37147 5.91236 1.80943 6.51017 1.80943Z" fill={color}/>
</svg>
);
};