| 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; | |