@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 792 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function AddDocumentIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "add-document",
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: "M11.5 4.5H18.5V12M11.5 4.5L6.5 9.5M11.5 4.5V9.5H6.5M6.5 9.5V19.5H11M20 17.5H16.5M16.5 17.5H13M16.5 17.5V14M16.5 17.5V21",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { AddDocumentIcon, AddDocumentIcon as default };
//# sourceMappingURL=AddDocument.js.map