UNPKG

@sanity/icons

Version:
26 lines (25 loc) 618 B
import { forwardRef } from "react"; import { jsx } from "react/jsx-runtime"; /** * @public */ const EditIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsx("svg", { "data-sanity-icon": "edit", 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: "M15 7L18 10M6 19L7 15L17 5L20 8L10 18L6 19Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }) }); }); export { EditIcon, EditIcon as default }; //# sourceMappingURL=Edit.js.map