UNPKG

@lobehub/ui

Version:

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

29 lines (26 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/Inner.tsx const Icon = memo(({ size = "1em", style, ...rest }) => { return /* @__PURE__ */ jsxs("svg", { fill: "currentColor", fillRule: "evenodd", 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: "M20.036 4.337c.153-.003.493.035.714.215.146.127.24.305.262.498.025.143.055.47.03.725-.275 2.913-1.476 9.978-2.086 13.24-.258 1.38-.766 1.843-1.259 1.887-1.068.1-1.88-.706-2.916-1.384-1.62-1.064-2.537-1.725-4.11-2.762-1.818-1.198-.64-1.857.396-2.932.272-.282 4.983-4.569 5.076-4.957.01-.049.021-.23-.086-.325-.108-.095-.267-.063-.382-.037-.163.037-2.752 1.75-7.768 5.133-.736.507-1.4.752-1.998.737-.656-.012-1.921-.37-2.862-.675-1.154-.376-2.07-.574-1.99-1.21.041-.332.498-.672 1.37-1.018 5.368-2.34 8.947-3.882 10.74-4.626 5.113-2.127 6.177-2.497 6.87-2.51z" })] }); }); var Inner_default = Icon; //#endregion export { Inner_default as default }; //# sourceMappingURL=Inner.mjs.map