UNPKG

@sanity/icons

Version:
31 lines (30 loc) 775 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const ExpandIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "expand", 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: "M14 6.5H18.5V11M11 18.5H6.5V14", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M18.5 6.5L14 11M6.5 18.5L11 14", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { ExpandIcon, ExpandIcon as default }; //# sourceMappingURL=Expand.js.map