@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 746 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function DocumentRemoveIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "document-remove",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M11.5 4.5V9.5H6.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M6.5 14V20.5H18.5V14M6.5 11V9.5L11.5 4.5H18.5V11M3 12.5H22",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { DocumentRemoveIcon, DocumentRemoveIcon as default };
//# sourceMappingURL=DocumentRemove.js.map