UNPKG

@sanity/icons

Version:
31 lines (30 loc) 810 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const ArchiveIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "archive", width: "1em", height: "1em", viewBox: "0 0 25 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref, children: [/* @__PURE__ */ jsx("path", { d: "M12.5 10V17M20.5 7.5V20.5H4.5V7.5L7.5 4.5H17.5L20.5 7.5Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M4.5 7.5H20.5M16 14L12.5 17.5L9 14", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { ArchiveIcon, ArchiveIcon as default }; //# sourceMappingURL=Archive.js.map