@sanity/icons
Version:
The Sanity icons.
32 lines (31 loc) • 667 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function GroqIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "groq",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [
/* @__PURE__ */ jsx("path", {
d: "M13 13H21L13 21L13 13Z",
fill: "currentColor"
}),
/* @__PURE__ */ jsx("path", {
d: "M12 12V4L4 12H12Z",
fill: "currentColor"
}),
/* @__PURE__ */ jsx("path", {
d: "M12 13H4L12 21V13Z",
fill: "currentColor"
})
]
});
}
export { GroqIcon, GroqIcon as default };
//# sourceMappingURL=Groq.js.map