@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 818 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function GenerateIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "generate",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M9 5.30423C6.33576 6.60253 4.5 9.33688 4.5 12.5C4.5 16.9183 8.08172 20.5 12.5 20.5C16.9183 20.5 20.5 16.9183 20.5 12.5C20.5 8.08172 16.9183 4.5 12.5 4.5V14.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M16 11L12.5 14.5L9 11",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { GenerateIcon, GenerateIcon as default };
//# sourceMappingURL=Generate.js.map