@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
93 lines (90 loc) • 2.99 kB
JavaScript
'use client';
import { TITLE } from "../style.mjs";
import { memo } from "react";
import { jsx, jsxs } from "react/jsx-runtime";
//#region src/icons/GoogleChat/components/Color.tsx
const Icon = memo(({ size = "1em", style, ...rest }) => {
return /* @__PURE__ */ jsxs("svg", {
height: size,
style: {
flex: "none",
lineHeight: 1,
...style
},
viewBox: "0 0 24 24",
width: size,
xmlns: "http://www.w3.org/2000/svg",
...rest,
children: [
/* @__PURE__ */ jsx("title", { children: TITLE }),
/* @__PURE__ */ jsx("path", {
d: "M6.077.045v5.736",
stroke: "#7E916F",
"stroke-width": ".15"
}),
/* @__PURE__ */ jsx("path", {
d: "M6.077 5.78H.35",
stroke: "#1375EB",
"stroke-width": ".15"
}),
/* @__PURE__ */ jsx("path", {
d: "M17.98.089a.106.106 0 00-.02.01.023.023 0 00-.01.008.022.022 0 00-.003.013l-.002 5.663",
stroke: "#F3801D",
"stroke-width": ".15"
}),
/* @__PURE__ */ jsx("path", {
d: "M17.945 5.783h-.003",
stroke: "#7EB426",
"stroke-width": ".15"
}),
/* @__PURE__ */ jsx("path", {
d: "M6.08 5.783l-.003-.002",
stroke: "#91A080",
"stroke-width": ".15"
}),
/* @__PURE__ */ jsx("path", {
d: "M23.639 5.765l-5.694.018",
stroke: "#75783E",
"stroke-width": ".15"
}),
/* @__PURE__ */ jsx("path", {
d: "M6.081 13.709L.35 13.707",
stroke: "#138495",
"stroke-width": ".15"
}),
/* @__PURE__ */ jsx("path", {
d: "M6.082 19.442v-2.871",
stroke: "#00983A",
"stroke-width": ".15"
}),
/* @__PURE__ */ jsx("path", {
d: "M6.077.045v5.736L.35 5.779V1.565c.042-.298.13-.548.265-.75.33-.502.81-.754 1.441-.758C3.388.05 4.73.047 6.077.045z",
fill: "#0066DA"
}),
/* @__PURE__ */ jsx("path", {
d: "M6.077.045l11.806.002a.12.12 0 01.07.022l.027.02a.104.104 0 00-.02.01.022.022 0 00-.013.02l-.002 5.664H6.08l-.003-.002V.045z",
fill: "#FBBC04"
}),
/* @__PURE__ */ jsx("path", {
d: "M17.98.089l5.659 5.676-5.694.018.002-5.663c0-.01.004-.017.013-.021a.106.106 0 01.02-.01z",
fill: "#EA4335"
}),
/* @__PURE__ */ jsx("path", {
d: "M.349 5.78h5.728l.003.003.001 7.926-5.732-.002V5.78z",
fill: "#2684FC"
}),
/* @__PURE__ */ jsx("path", {
d: "M23.639 5.765l.035.025v12.143c-.133.726-.51 1.196-1.13 1.408-.22.076-.546.113-.977.112l-8.469-.013c-.414 0-.834.003-1.26.01a.084.084 0 00-.06.025 1187.512 1187.512 0 00-4.2 4.201c-.215.217-.459.338-.768.292a.821.821 0 01-.637-.445c-.057-.108-.086-.305-.087-.591-.004-1.16-.005-2.323-.004-3.49V16.57l2.833-2.834a.133.133 0 01.094-.039l8.873.003a.063.063 0 00.062-.062l-.002-7.856h.003l5.694-.018z",
fill: "#00AC47"
}),
/* @__PURE__ */ jsx("path", {
d: "M6.081 13.709V19.442c-1.198.007-2.386.01-3.564.007-.49-.001-.845-.04-1.061-.116-.607-.212-.976-.682-1.107-1.41v-4.215l5.732.001z",
fill: "#00832D"
})
]
});
});
var Color_default = Icon;
//#endregion
export { Color_default as default };
//# sourceMappingURL=Color.mjs.map