Files
graff-mate-client/src/components/icons/SpinIcon.tsx
T
2025-06-18 17:25:47 +05:00

39 lines
1.5 KiB
TypeScript

function SpinIcon() {
return (
<svg
viewBox="0 0 20 20"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#a)" data-figma-skip-parse="true">
<foreignObject
x={-1750}
y={-1750}
width={3500}
height={3500}
transform="rotate(45.003 -7.07 17.072)scale(.0066)"
>
<div
style={{
height: "100%",
width: "100%",
opacity: 1,
}}
/>
</foreignObject>
</g>
<path
d="M15.833 10c.46 0 .839-.374.781-.831a6.667 6.667 0 1 0-1.9 5.544c.326-.325.257-.853-.107-1.135-.363-.283-.883-.21-1.222.101a5 5 0 1 1 1.545-4.508c.077.453.443.83.903.83"
data-figma-gradient-fill='{"type":"GRADIENT_ANGULAR","stops":[{"color":{"r":1.0,"g":1.0,"b":1.0,"a":1.0},"position":0.87451690435409546},{"color":{"r":1.0,"g":1.0,"b":1.0,"a":0.0},"position":0.98261332511901855}],"stopsVar":[],"transform":{"m00":9.3333330154418945,"m01":-9.3333330154418945,"m02":9.9996738433837891,"m10":9.3333330154418945,"m11":9.3333330154418945,"m12":0.66682958602905273},"opacity":1.0,"blendMode":"NORMAL","visible":true}'
/>
<defs>
<clipPath id="a">
<path d="M15.833 10c.46 0 .839-.374.781-.831a6.667 6.667 0 1 0-1.9 5.544c.326-.325.257-.853-.107-1.135-.363-.283-.883-.21-1.222.101a5 5 0 1 1 1.545-4.508c.077.453.443.83.903.83" />
</clipPath>
</defs>
</svg>
);
}
export default SpinIcon;