@sanity/icons
Version:
The Sanity icons.
34 lines (33 loc) • 752 B
JavaScript
import { forwardRef } from "react";
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
const GroqIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
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,
ref,
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