@theguild/components
Version:
12 lines (11 loc) • 903 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
const SvgHive = (props) => /* @__PURE__ */ jsxs("svg", { width: 52, height: 52, viewBox: "0 0 52 52", fill: "none", ...props, children: [
/* @__PURE__ */ jsxs("g", { clipPath: "url(#hive-icon)", fill: "currentColor", children: [
/* @__PURE__ */ jsx("path", { d: "M36.902.081H16.097L.5 15.678v20.806L16.097 52.08h20.805L52.5 36.484V15.678L36.902.081ZM49.18 28.918 29.334 48.762a4.01 4.01 0 0 1-5.67 0L3.82 28.918a4.01 4.01 0 0 1 0-5.671L23.663 3.402a4.01 4.01 0 0 1 5.671 0L49.18 23.247a4.01 4.01 0 0 1 0 5.67Z" }),
/* @__PURE__ */ jsx("path", { d: "m26.499 20.637-5.444 5.443 5.444 5.444 5.443-5.444-5.443-5.443Z" })
] }),
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "hive-icon", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h52v52H0z" }) }) })
] });
export {
SvgHive as ReactComponent
};