satyamr196's picture
added React app files for testing, build commands added to the readme.md metadata
e7185a2
raw
history blame contribute delete
725 Bytes
function SpinnerIcon({ 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"
>
<animateTransform
attributeName="transform"
type="rotate"
repeatCount="indefinite"
dur="1s"
values="0 50 50;360 50 50"
keyTimes="0;1"
/>
</circle>
</svg>
);
}
export default SpinnerIcon;