UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

45 lines (42 loc) 1.91 kB
'use client'; import { TITLE } from "../style.mjs"; import { memo } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; //#region src/icons/Slack/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: "M5.057 15.11a2.508 2.508 0 01-2.511 2.513 2.521 2.521 0 01-2.52-2.512 2.514 2.514 0 012.511-2.512H5.05v2.512h.008zM6.31 15.111A2.508 2.508 0 018.82 12.6a2.514 2.514 0 012.512 2.512v6.283a2.508 2.508 0 01-2.512 2.511 2.508 2.508 0 01-2.512-2.511V15.11z", fill: "#E01E5A" }), /* @__PURE__ */ jsx("path", { d: "M8.83 5.008a2.508 2.508 0 01-2.512-2.512A2.514 2.514 0 018.829-.016a2.514 2.514 0 012.512 2.512v2.512H8.83zM8.83 6.281a2.508 2.508 0 012.512 2.512 2.514 2.514 0 01-2.512 2.512H2.523A2.508 2.508 0 01.01 8.793a2.514 2.514 0 012.512-2.512H8.83z", fill: "#36C5F0" }), /* @__PURE__ */ jsx("path", { d: "M18.903 8.793a2.508 2.508 0 012.512-2.511 2.514 2.514 0 012.512 2.511 2.514 2.514 0 01-2.512 2.512h-2.512V8.793zM17.65 8.797a2.508 2.508 0 01-2.512 2.512 2.514 2.514 0 01-2.511-2.512v-6.3a2.508 2.508 0 012.511-2.51 2.508 2.508 0 012.512 2.51v6.3z", fill: "#2EB67D" }), /* @__PURE__ */ jsx("path", { d: "M15.128 18.88a2.508 2.508 0 012.512 2.513 2.514 2.514 0 01-2.512 2.511 2.514 2.514 0 01-2.512-2.511V18.88h2.512zM15.128 17.623a2.508 2.508 0 01-2.512-2.512 2.514 2.514 0 012.512-2.512h6.308a2.508 2.508 0 012.512 2.512 2.514 2.514 0 01-2.512 2.512h-6.308z", fill: "#ECB22E" }) ] }); }); var Color_default = Icon; //#endregion export { Color_default as default }; //# sourceMappingURL=Color.mjs.map