iran-license-plate
Version:
A general react component for Iran license plate.
41 lines • 1 kB
JavaScript
// src/IranLicensePlate/components/Spinner.tsx
import { jsx } from "react/jsx-runtime";
var SpinnerSvg = (props) => {
return /* @__PURE__ */ jsx(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "20px",
height: "20px",
...props,
viewBox: "0 0 100 100",
preserveAspectRatio: "xMidYMid",
children: /* @__PURE__ */ jsx(
"circle",
{
cx: "50",
cy: "50",
fill: "none",
stroke: "currentColor",
r: "35",
strokeDasharray: "164.93361431346415 56.97787143782138",
children: /* @__PURE__ */ jsx(
"animateTransform",
{
attributeName: "transform",
type: "rotate",
repeatCount: "indefinite",
dur: "1s",
values: "0 50 50;360 50 50",
keyTimes: "0;1"
}
)
}
)
}
);
};
export {
SpinnerSvg
};
//# sourceMappingURL=Spinner.mjs.map