@sanity/icons
Version:
The Sanity icons.
28 lines (27 loc) • 556 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function StopIcon(props) {
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,
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