@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 778 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function RefreshIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "refresh",
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.5 13.5C19.5 17.366 16.366 20.5 12.5 20.5C8.63401 20.5 5.5 17.366 5.5 13.5C5.5 9.63401 8.63401 6.5 12.5 6.5H15.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M11.5 10.5L15.5 6.5L11.5 2.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { RefreshIcon, RefreshIcon as default };
//# sourceMappingURL=Refresh.js.map