UNPKG

@sanity/icons

Version:
31 lines (30 loc) 795 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const CollapseIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "collapse", 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: "M6 14.5L10.5 14.5V19M19 10.5H14.5L14.5 6", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M10.5 14.5L6 19M14.5 10.5L19 6", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { CollapseIcon, CollapseIcon as default }; //# sourceMappingURL=Collapse.js.map