@sanity/icons
Version:
The Sanity icons.
31 lines (30 loc) • 808 B
JavaScript
import { forwardRef } from "react";
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
const RedoIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "redo",
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: "M19 9.5L10 9.5C7.51472 9.5 5.5 11.5147 5.5 14C5.5 16.4853 7.51472 18.5 10 18.5H19",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M15 13.5L19 9.5L15 5.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
});
export { RedoIcon, RedoIcon as default };
//# sourceMappingURL=Redo.js.map