@sanity/icons
Version:
The Sanity icons.
30 lines (29 loc) • 641 B
JavaScript
import { forwardRef } from "react";
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
const StopIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "stop",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
ref,
children: /* @__PURE__ */ jsx("rect", {
x: 7.5,
y: 7.5,
width: 10,
height: 10,
fill: "currentColor",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
});
export { StopIcon, StopIcon as default };
//# sourceMappingURL=Stop.js.map