@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 733 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function RevertIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "revert",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
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 { RevertIcon, RevertIcon as default };
//# sourceMappingURL=Revert.js.map