UNPKG

@sanity/icons

Version:
31 lines (30 loc) 808 B
import { forwardRef } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; /** * @public */ const UndoIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsxs("svg", { "data-sanity-icon": "undo", 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 9.5L15 9.5C17.4853 9.5 19.5 11.5147 19.5 14C19.5 16.4853 17.4853 18.5 15 18.5H6", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }), /* @__PURE__ */ jsx("path", { d: "M10 13.5L6 9.5L10 5.5", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" })] }); }); export { UndoIcon, UndoIcon as default }; //# sourceMappingURL=Undo.js.map