@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 812 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function DocumentZipIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "document-zip",
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: "M15 4.5L13.5 5L15.5 6L13.5 7L15.5 8L13.5 9L15.5 10L13.5 11L14.5 11.5V13M11.5 4.5H18.5V20.5H6.5V9.5L11.5 4.5ZM13.5 13H15.5L16 17H13L13.5 13Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { DocumentZipIcon, DocumentZipIcon as default };
//# sourceMappingURL=DocumentZip.js.map