UNPKG

@sanity/icons

Version:
31 lines (30 loc) 763 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const ArrowLeftIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "arrow-left", 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: "M5.5 12.5H20", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M11 18L5.5 12.5L11 7", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { ArrowLeftIcon, ArrowLeftIcon as default }; //# sourceMappingURL=ArrowLeft.js.map