UNPKG

@vela-ui/react

Version:

Vela UI React components

38 lines (36 loc) 917 B
// src/icons/loader-ring.tsx import { jsx, jsxs } from "react/jsx-runtime"; var LoaderRingIcon = (props) => { return /* @__PURE__ */ jsxs( "svg", { fill: "none", width: "1em", height: "1em", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...props, children: [ /* @__PURE__ */ jsx( "path", { stroke: "currentColor", strokeOpacity: "0.25", strokeWidth: "3.636", d: "M11.909 21a9.09 9.09 0 1 0 0-18.182 9.09 9.09 0 0 0 0 18.182Z" } ), /* @__PURE__ */ jsx( "path", { fill: "currentColor", d: "M4.636 11.91a7.273 7.273 0 0 1 7.273-7.274V1C5.885 1 1 5.885 1 11.91zm1.819 4.81a7.24 7.24 0 0 1-1.819-4.81H1c0 2.764 1.032 5.294 2.727 7.215z" } ) ] } ); }; export { LoaderRingIcon };