@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 723 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function RedoIcon(props) {
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,
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