@sanity/icons
Version:
The Sanity icons.
30 lines (29 loc) • 895 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function Progress50Icon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "progress-50",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M17 12.5C17 14.9853 14.9853 17 12.5 17V8C14.9853 8 17 10.0147 17 12.5Z",
fill: "currentColor",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M12.5 20.5C16.9183 20.5 20.5 16.9183 20.5 12.5C20.5 8.08172 16.9183 4.5 12.5 4.5C8.08172 4.5 4.5 8.08172 4.5 12.5C4.5 16.9183 8.08172 20.5 12.5 20.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { Progress50Icon, Progress50Icon as default };
//# sourceMappingURL=Progress50.js.map