UNPKG

@sanity/icons

Version:
26 lines (25 loc) 714 B
import { forwardRef } from "react"; import { jsx } from "react/jsx-runtime"; /** * @public */ const SplitVerticalIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsx("svg", { "data-sanity-icon": "split-vertical", 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: "M10.5 5.5V19.5M13 12.5H15.5M18 12.5H15.5M15.5 12.5V15M15.5 12.5V10M4.5 5.5H20.5V19.5H4.5V5.5Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }) }); }); export { SplitVerticalIcon, SplitVerticalIcon as default }; //# sourceMappingURL=SplitVertical.js.map