Spaces:
Running
Running
File size: 514 Bytes
ce8c232 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | function SpinnerIcon2({ size = 40 }) {
return (
<svg
width={size}
height={size}
viewBox="0 0 100 100"
preserveAspectRatio="xMidYMid"
style={{ display: "block", margin: "auto" }}
>
<circle
cx="50"
cy="50"
r="32"
strokeWidth="8"
stroke="#e3f0fd"
strokeDasharray="50.26548245743669 50.26548245743669"
fill="none"
strokeLinecap="round"
>
</circle>
</svg>
);
}
export default SpinnerIcon2;
|