UNPKG

@sanity/icons

Version:
31 lines (30 loc) 799 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const VersionsIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "versions", 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 7.5H7.5V17.5H10.5M7.5 9.5H4.5V15.5H7.5", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M20.5 19.5V5.5H10.5V19.5H20.5Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { VersionsIcon, VersionsIcon as default }; //# sourceMappingURL=Versions.js.map