UNPKG

@lobehub/ui

Version:

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

30 lines (27 loc) 1.27 kB
'use client'; import { TITLE } from "../style.mjs"; import { memo } from "react"; import { jsx, jsxs } from "react/jsx-runtime"; //#region src/icons/Telegram/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: "M11.944 0a12 12 0 10.112 24 12 12 0 00-.112-24zm4.962 7.224c.1-.002.321.023.465.14.096.083.157.2.171.325.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z", fill: "#26A5E4" })] }); }); var Color_default = Icon; //#endregion export { Color_default as default }; //# sourceMappingURL=Color.mjs.map