@vela-ui/react
Version:
Vela UI React components
25 lines (23 loc) • 544 B
JavaScript
// src/icons/loader-circle.tsx
import { jsx } from "react/jsx-runtime";
var LoaderCircleIcon = (props) => {
return /* @__PURE__ */ jsx(
"svg",
{
fill: "none",
stroke: "currentColor",
strokeWidth: 2,
strokeLinecap: "round",
strokeLinejoin: "round",
width: "1em",
height: "1em",
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", { d: "M21 12a9 9 0 1 1-6.219-8.56" })
}
);
};
export {
LoaderCircleIcon
};