UNPKG

@sanity/icons

Version:
31 lines (30 loc) 747 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const EnterIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "enter", 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.5H19.5V7", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M10 18.5L6 14.5L10 10.5", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { EnterIcon, EnterIcon as default }; //# sourceMappingURL=Enter.js.map