Skip to content

Commit 63b09b0

Browse files
✨ feat: Add more providers
1 parent efbe736 commit 63b09b0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1602
-2
lines changed

README.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,56 @@ Contributions, corrections & requests can be made on GitHub.
6060
<!-- ICON LIST -->
6161

6262
- [x] [01.AI (零一万物)](https://icons.lobehub.com/components/zero-one)
63+
- [x] [Alibaba](https://icons.lobehub.com/components/alibaba)
64+
- [x] [AntGroup](https://icons.lobehub.com/components/ant-group)
65+
- [x] [Anthropic](https://icons.lobehub.com/components/anthropic)
66+
- [x] [Automatic1111 (SD Webui)](https://icons.lobehub.com/components/automatic)
67+
- [x] [AWS](https://icons.lobehub.com/components/aws)
68+
- [x] [AWS (Bedrock)](https://icons.lobehub.com/components/bedrock)
69+
- [x] [Baichuan (百川)](https://icons.lobehub.com/components/baichuan)
70+
- [x] [Baidu](https://icons.lobehub.com/components/baidu)
71+
- [x] [ByteDance](https://icons.lobehub.com/components/byte-dance)
72+
- [x] [Claude](https://icons.lobehub.com/components/claude)
73+
- [x] [Cloudflare](https://icons.lobehub.com/components/cloudflare)
74+
- [x] [Cloudflare (WorkersAI)](https://icons.lobehub.com/components/workers-ai)
75+
- [x] [Cohere (Command)](https://icons.lobehub.com/components/cohere)
76+
- [x] [DeepMind(Google)](https://icons.lobehub.com/components/deep-mind)
77+
- [x] [Fireworks](https://icons.lobehub.com/components/fireworks)
78+
- [x] [Github](https://icons.lobehub.com/components/github)
79+
- [x] [Github Copilot](https://icons.lobehub.com/components/github-copilot)
80+
- [x] [Google](https://icons.lobehub.com/components/google)
81+
- [x] [Google (Colab)](https://icons.lobehub.com/components/colab)
82+
- [x] [Google (Gemini)](https://icons.lobehub.com/components/gemini)
83+
- [x] [Google (Gemma)](https://icons.lobehub.com/components/gemma)
84+
- [x] [Grok](https://icons.lobehub.com/components/grok)
85+
- [x] [Groq](https://icons.lobehub.com/components/groq)
86+
- [x] [HuggingFace](https://icons.lobehub.com/components/hugging-face)
87+
- [x] [Hunyuan (腾讯混元)](https://icons.lobehub.com/components/hunyuan)
88+
- [x] [LLaVA](https://icons.lobehub.com/components/l-la-va)
89+
- [x] [Meta](https://icons.lobehub.com/components/meta)
90+
- [x] [Microsoft (Azure)](https://icons.lobehub.com/components/azure)
91+
- [x] [Microsoft Copilot](https://icons.lobehub.com/components/copilot)
92+
- [x] [Midjourney](https://icons.lobehub.com/components/midjourney)
93+
- [x] [Minimax](https://icons.lobehub.com/components/minimax)
94+
- [x] [Mistral](https://icons.lobehub.com/components/mistral)
95+
- [x] [Moonshot (月之暗面)](https://icons.lobehub.com/components/moonshot)
96+
- [x] [Nvidia (ChatWithRTX)](https://icons.lobehub.com/components/nvidia)
97+
- [x] [Ollama](https://icons.lobehub.com/components/ollama)
98+
- [x] [OpenAI (ChatGPT)](https://icons.lobehub.com/components/open-ai)
99+
- [x] [OpenAI (DALL·E)](https://icons.lobehub.com/components/dalle)
100+
- [x] [OpenRouter](https://icons.lobehub.com/components/open-router)
101+
- [x] [Perplexity](https://icons.lobehub.com/components/perplexity)
102+
- [x] [Pollinations](https://icons.lobehub.com/components/pollinations)
103+
- [x] [Qingyan (智谱清言)](https://icons.lobehub.com/components/qingyan)
104+
- [x] [Replicate](https://icons.lobehub.com/components/replicate)
105+
- [x] [Spark (讯飞星火)](https://icons.lobehub.com/components/spark)
106+
- [x] [Stability (StableDiffusion)](https://icons.lobehub.com/components/stability)
107+
- [x] [Tencent](https://icons.lobehub.com/components/tencent)
108+
- [x] [Tongyi (通义)](https://icons.lobehub.com/components/tongyi)
109+
- [x] [Wenxin (文心)](https://icons.lobehub.com/components/wenxin)
110+
- [x] [Yi (零一万物)](https://icons.lobehub.com/components/yi)
111+
- [x] [Zhipu (ChatGLM)](https://icons.lobehub.com/components/chat-glm)
112+
- [x] [Zhipu (智谱)](https://icons.lobehub.com/components/zhipu)
63113

64114
<!-- ICON LIST -->
65115

scripts/genMdList.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ const updateReadme = (split: string, md: string, content: string): string => {
1414
return mds.join(split);
1515
};
1616
const run = () => {
17-
const mds = globSync(resolve(ROOT_PATH, './src/**/index.md'));
17+
const mds = globSync(resolve(ROOT_PATH, './src/**/index.md').replace('\\', '/'));
1818
const metas = mds
1919
.map((md) => {
2020
const meta: any = fm(readFileSync(md, 'utf8')).attributes;
2121
const paths = md.split('/');
22-
if (meta.group !== 'Icons') return false;
22+
if (!['model', 'provider', 'application'].includes(String(meta.group).toLowerCase()))
23+
return false;
2324
return {
2425
...meta,
2526
path: paths.at(-2),

src/Alibaba/components/Avatar.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { memo } from 'react';
2+
3+
import IconAvatar, { type IconAvatarProps } from '@/IconAvatar';
4+
5+
import { COLOR_PRIMARY, TITLE } from '../style';
6+
import Mono from './Mono';
7+
8+
export type AvatarProps = Omit<IconAvatarProps, 'Icon'>;
9+
10+
const Avatar = memo<AvatarProps>(({ background, ...rest }) => {
11+
return (
12+
<IconAvatar Icon={Mono} aria-label={TITLE} background={background || COLOR_PRIMARY} {...rest} />
13+
);
14+
});
15+
16+
export default Avatar;

src/Alibaba/components/BrandColor.tsx

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { forwardRef } from 'react';
2+
3+
import type { IconType } from '@/types';
4+
5+
import { TITLE } from '../style';
6+
7+
const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
8+
return (
9+
<svg
10+
height={size}
11+
ref={ref}
12+
style={{ flex: 'none', lineHeight: 1, width: 'fit-content', ...style }}
13+
viewBox="0 0 90 24"
14+
xmlns="http://www.w3.org/2000/svg"
15+
{...rest}
16+
>
17+
<title>{TITLE}</title>
18+
<path
19+
d="M40.768 15.267c-4.522 2.503-9.08 4.794-14.149 5.834-1.13.23-2.384.23-3.532.07-1.095-.14-1.643-1.127-1.254-2.167.37-.97.865-1.956 1.501-2.767 1.378-1.763 2.932-3.366 4.328-5.111a26.102 26.102 0 002.296-3.402c.494-.846.265-1.868-.6-2.29-1.45-.724-3.004-1.235-4.54-1.781-.177-.07-.442.123-.795.247.441.405.76.705 1.201 1.11-4.557.793-8.867 1.921-13.053 3.472-.018.088-.053.159-.036.194.619.97.336 1.71-.565 2.309-.336.229-.653.51-.918.863 2.755.829 5.21.353 7.56-1.216-.142-.211-.283-.405-.424-.617.883.159 1.413.653 1.483 1.428.018.176-.088.352-.14.529-.125-.141-.284-.282-.39-.44-.07-.107-.088-.23-.14-.406-2.792 1.903-5.794 2.38-9.098 1.392 0 .67-.035 1.234.018 1.78.035.476-.159.687-.583.934-.954.6-1.943 1.216-2.738 2.01-.953.969-.6 2.15.69 2.643 1.465.564 3.002.582 4.539.388 1.82-.23 3.603-.529 5.581-.81-2.313 1.11-4.592 1.885-6.994 2.202-1.678.23-3.356.353-5.017-.14-2.384-.688-3.444-2.486-2.826-4.9.583-2.256 1.996-4.054 3.515-5.71 5.07-5.517 11.481-8.32 18.9-8.883 1.731-.124 3.48.105 5.105.846 2.278 1.057 3.232 3.295 2.12 5.551-.725 1.498-1.732 2.873-2.738 4.23-.99 1.34-2.102 2.573-3.145 3.86-.3.388-.582.793-.812 1.234-.442.828-.141 1.374.795 1.286 1.96-.194 3.956-.352 5.846-.846 2.774-.722 5.476-1.745 8.214-2.644.283-.07.548-.176.795-.282zm3.603-10.75h2.084v5.305c0 .423-.211.793-.512 1.128-.159.158-.335.3-.512.44a2.11 2.11 0 01-1.06.388H42.27V4.517h2.102zm-.46 1.41v4.511h.884V5.927h-.883zm-2.33-3.772v3.437c0 .493-.584.899-.83 1.092.246.194.83.6.83 1.076v2.643c0 .476-.778 1.392-1.431 1.428h-.99v.599c0 .828-.918 1.586-1.766 1.586V2.155h4.186zM39.513 3.6h-.354v6.803h.69V6.966h-.566c.018 0 .035 0 .053-.017.018 0 .018 0 .018-.018l.141-.14.018-.018c.194-.194.335-.512.335-.688V3.618c-.017-.018-.335-.018-.335-.018zm9.785-1.445c0 .37-.282 1.445-.67 1.445v8.742c0 1.145-1.202 1.674-1.767 1.674V3.6h-5.034V2.155h7.471zm12.877 10.504c-.336.511-.742 1.375-1.183 1.375H50.359v-1.375h4.716v-1.128H50.5v-1.304h4.575v-.97H50.5V2.156h11.34v5.516c-.035.564-1.254 1.569-2.013 1.569h-2.65v.97h4.734c-.247.475-.707 1.303-1.236 1.303h-3.498v1.128l4.999.018zm-4.999-4.723h2.561V3.512h-2.56v1.533h2.366c-.106.106-.9 1.128-1.06 1.216h-.017c-.142.089-.248.141-.371.141h-.919v1.534zm-2.12-1.551H52.55v1.533h2.509V6.385zm0-2.873H52.55v1.533h2.509V3.512zm19.925 8.97c-.124.494-.918 1.534-1.572 1.534h-8.602c-.919 0-1.413-.828-1.413-1.674V2.155h11.27v5.358c-.036.564-1.22 1.621-1.873 1.621H65.55v3.349h9.432zM70.16 7.62h2.384V3.67H70.16v3.948zm-4.593 0h2.526V3.67h-2.526v3.948zM88 12.483c-.124.493-.919 1.533-1.572 1.533h-8.602c-.936 0-1.413-.828-1.413-1.674V2.155h11.27v5.358c-.036.564-1.22 1.621-1.873 1.621h-7.278v3.349H88zm-4.822-4.864h2.402V3.67h-2.402v3.948zm-4.61 0h2.508V3.67h-2.508v3.948zm-31 14.258V18.14h1.449v3.737h-1.449zm-.035-4.283v-1.04h1.501v1.04h-1.501zM45.2 21.877v-5.323h1.413v5.323h-1.413zm37.376 0V18.14h.548v.582c.194-.194.282-.353.494-.458.195-.141.407-.177.672-.177.265 0 .512.036.724.177.124.123.23.264.318.458.318-.423.689-.635 1.183-.635.354 0 .671.053.883.318.177.193.265.51.265.916v2.556h-.635V19.55c0-.282 0-.458-.036-.546-.035-.124-.141-.194-.23-.282a1.07 1.07 0 00-.423-.088c-.283 0-.513.088-.672.229-.14.176-.23.458-.23.881v2.133h-.6v-2.415c0-.317-.088-.493-.176-.634-.124-.141-.283-.194-.513-.194-.23 0-.406.053-.494.14-.177.054-.283.195-.353.424-.053.123-.089.37-.089.775v1.904h-.636zm-5.458-.459c-.194.141-.6.582-1.377.582-1.043 0-2.05-.81-2.05-1.992a2.04 2.04 0 012.05-2.062c.777 0 1.183.423 1.377.635-.088.14-.194.493-.282.6-.354-.46-.83-.583-1.095-.583-.778 0-1.414.635-1.414 1.41 0 .776.636 1.375 1.414 1.375.423 0 .83-.194 1.095-.634.123.317.265.528.282.67zm-4.751-.088h.512v.547h-.512v-.547zm-30.046-4.776h-1.82l-2.772 5.323h1.607l.495-1.058h2.932l.46 1.058h1.73l-2.632-5.323zm-1.996 3.225l1.007-2.062.919 2.062h-1.926zm14.096-1.18c-.371-.37-.813-.547-1.36-.547-.23 0-.46.035-.672.053-.353.123-.741.37-1.006.6v-2.15h-1.449v4.881c0 .123 0 .282-.035.423h1.448c0-.088.036-.141.036-.264v-.406c.194.23.406.423.777.635.23.123.671.14.812.14.6 0 1.06-.175 1.449-.546.318-.37.459-.828.459-1.445 0-.599-.141-1.057-.46-1.375zm-1.272 2.22c-.141.176-.406.265-.742.265-.318 0-.583-.089-.742-.265-.194-.194-.282-.458-.282-.81 0-.37.088-.688.282-.917.194-.194.424-.282.742-.282s.583.088.742.282c.194.194.283.493.283.864 0 .37-.071.652-.283.863zm12.24-2.22a1.803 1.803 0 00-1.324-.547c-.265 0-.46.035-.671.053-.371.123-.777.37-1.007.6v-2.15h-1.43v4.881c0 .123 0 .282-.036.423h1.448c0-.088.036-.141.036-.264v-.406c.194.23.406.423.777.635.23.123.6.14.812.14.6 0 1.095-.175 1.413-.546.318-.352.495-.828.495-1.445-.018-.599-.194-1.057-.512-1.375zm-1.236 2.22c-.141.176-.406.265-.742.265-.335 0-.6-.089-.777-.265-.176-.176-.265-.423-.265-.81 0-.406.089-.723.265-.917.195-.194.46-.282.777-.282.318 0 .583.088.742.282.177.194.265.493.265.864 0 .37-.088.652-.265.863zm-4.133.864v-2.186c0-.458-.177-.81-.548-1.057-.282-.23-.812-.353-1.554-.353h-.141c-.671 0-1.148.089-1.502.282-.353.194-.547.494-.636.882h1.449a.745.745 0 01.689-.423h.141c.265 0 .371.052.512.176.124.088.177.229.177.458v.088h-.83c-.548 0-.919.035-1.13.053-.283.035-.495.088-.637.194-.194.14-.37.282-.459.423-.088.23-.141.423-.141.634 0 .353.141.6.406.811.265.194.636.317 1.095.317.318 0 .6-.035.866-.123.318-.088.724-.317.865-.546v.088c0 .264.036.405.089.458h1.36c-.053 0-.071-.088-.071-.176zm-1.43-1.393c0 .318-.124.512-.23.67-.195.088-.318.194-.548.23h-.283c-.194 0-.37-.036-.459-.124-.123-.088-.176-.176-.176-.317 0-.194.123-.353.353-.406.088-.035.265-.088.512-.123h.83v.07zm12.434 1.393v-2.186c0-.458-.176-.81-.512-1.057-.318-.23-.865-.353-1.59-.353h-.14c-.672 0-1.131.053-1.502.282a1.156 1.156 0 00-.6.882h1.448c.035-.194.23-.423.67-.423h.142c.23 0 .406.052.512.176.124.053.177.194.177.458v.088h-.83c-.548 0-.883.035-1.13.053-.283.035-.513.088-.672.194-.194.14-.283.23-.424.423-.088.176-.123.37-.123.634 0 .37.123.635.353.811.318.194.689.317 1.13.317.318 0 .6-.035.866-.123.318-.088.742-.317.865-.546v.088c0 .264.036.423.124.458h1.325c-.071 0-.089-.088-.089-.176zm-1.413-1.393c0 .318-.088.512-.265.67-.141.088-.282.194-.512.23h-.265a.898.898 0 01-.494-.124c-.124-.053-.177-.176-.177-.317 0-.194.124-.353.353-.406.089-.035.23-.088.495-.123h.865v.07zm10.05-2.344c-1.13 0-1.995.917-1.995 2.062 0 1.058.865 1.992 1.996 1.992 1.13 0 2.013-.916 2.013-1.992 0-1.145-.9-2.062-2.013-2.062zm0 3.437c-.776 0-1.36-.6-1.36-1.375s.584-1.41 1.36-1.41c.778 0 1.379.635 1.379 1.41 0 .776-.601 1.375-1.378 1.375z"
20+
fill="#FF6003"
21+
fillRule="nonzero"
22+
></path>
23+
</svg>
24+
);
25+
});
26+
27+
export default Icon;

src/Alibaba/components/BrandMono.tsx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { forwardRef } from 'react';
2+
3+
import type { IconType } from '@/types';
4+
5+
import { TITLE } from '../style';
6+
7+
const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => {
8+
return (
9+
<svg
10+
fill="currentColor"
11+
fillRule="evenodd"
12+
height={size}
13+
ref={ref}
14+
style={{ flex: 'none', lineHeight: 1, width: 'fit-content', ...style }}
15+
viewBox="0 0 90 24"
16+
xmlns="http://www.w3.org/2000/svg"
17+
{...rest}
18+
>
19+
<title>{TITLE}</title>
20+
<path d="M40.768 15.267c-4.522 2.503-9.08 4.794-14.149 5.834-1.13.23-2.384.23-3.532.07-1.095-.14-1.643-1.127-1.254-2.167.37-.97.865-1.956 1.501-2.767 1.378-1.763 2.932-3.366 4.328-5.111a26.102 26.102 0 002.296-3.402c.494-.846.265-1.868-.6-2.29-1.45-.724-3.004-1.235-4.54-1.781-.177-.07-.442.123-.795.247.441.405.76.705 1.201 1.11-4.557.793-8.867 1.921-13.053 3.472-.018.088-.053.159-.036.194.619.97.336 1.71-.565 2.309-.336.229-.653.51-.918.863 2.755.829 5.21.353 7.56-1.216-.142-.211-.283-.405-.424-.617.883.159 1.413.653 1.483 1.428.018.176-.088.352-.14.529-.125-.141-.284-.282-.39-.44-.07-.107-.088-.23-.14-.406-2.792 1.903-5.794 2.38-9.098 1.392 0 .67-.035 1.234.018 1.78.035.476-.159.687-.583.934-.954.6-1.943 1.216-2.738 2.01-.953.969-.6 2.15.69 2.643 1.465.564 3.002.582 4.539.388 1.82-.23 3.603-.529 5.581-.81-2.313 1.11-4.592 1.885-6.994 2.202-1.678.23-3.356.353-5.017-.14-2.384-.688-3.444-2.486-2.826-4.9.583-2.256 1.996-4.054 3.515-5.71 5.07-5.517 11.481-8.32 18.9-8.883 1.731-.124 3.48.105 5.105.846 2.278 1.057 3.232 3.295 2.12 5.551-.725 1.498-1.732 2.873-2.738 4.23-.99 1.34-2.102 2.573-3.145 3.86-.3.388-.582.793-.812 1.234-.442.828-.141 1.374.795 1.286 1.96-.194 3.956-.352 5.846-.846 2.774-.722 5.476-1.745 8.214-2.644.283-.07.548-.176.795-.282zm3.603-10.75h2.084v5.305c0 .423-.211.793-.512 1.128-.159.158-.335.3-.512.44a2.11 2.11 0 01-1.06.388H42.27V4.517h2.102zm-.46 1.41v4.511h.884V5.927h-.883zm-2.33-3.772v3.437c0 .493-.584.899-.83 1.092.246.194.83.6.83 1.076v2.643c0 .476-.778 1.392-1.431 1.428h-.99v.599c0 .828-.918 1.586-1.766 1.586V2.155h4.186zM39.513 3.6h-.354v6.803h.69V6.966h-.566c.018 0 .035 0 .053-.017.018 0 .018 0 .018-.018l.141-.14.018-.018c.194-.194.335-.512.335-.688V3.618c-.017-.018-.335-.018-.335-.018zm9.785-1.445c0 .37-.282 1.445-.67 1.445v8.742c0 1.145-1.202 1.674-1.767 1.674V3.6h-5.034V2.155h7.471zm12.877 10.504c-.336.511-.742 1.375-1.183 1.375H50.359v-1.375h4.716v-1.128H50.5v-1.304h4.575v-.97H50.5V2.156h11.34v5.516c-.035.564-1.254 1.569-2.013 1.569h-2.65v.97h4.734c-.247.475-.707 1.303-1.236 1.303h-3.498v1.128l4.999.018zm-4.999-4.723h2.561V3.512h-2.56v1.533h2.366c-.106.106-.9 1.128-1.06 1.216h-.017c-.142.089-.248.141-.371.141h-.919v1.534zm-2.12-1.551H52.55v1.533h2.509V6.385zm0-2.873H52.55v1.533h2.509V3.512zm19.925 8.97c-.124.494-.918 1.534-1.572 1.534h-8.602c-.919 0-1.413-.828-1.413-1.674V2.155h11.27v5.358c-.036.564-1.22 1.621-1.873 1.621H65.55v3.349h9.432zM70.16 7.62h2.384V3.67H70.16v3.948zm-4.593 0h2.526V3.67h-2.526v3.948zM88 12.483c-.124.493-.919 1.533-1.572 1.533h-8.602c-.936 0-1.413-.828-1.413-1.674V2.155h11.27v5.358c-.036.564-1.22 1.621-1.873 1.621h-7.278v3.349H88zm-4.822-4.864h2.402V3.67h-2.402v3.948zm-4.61 0h2.508V3.67h-2.508v3.948zm-31 14.258V18.14h1.449v3.737h-1.449zm-.035-4.283v-1.04h1.501v1.04h-1.501zM45.2 21.877v-5.323h1.413v5.323h-1.413zm37.376 0V18.14h.548v.582c.194-.194.282-.353.494-.458.195-.141.407-.177.672-.177.265 0 .512.036.724.177.124.123.23.264.318.458.318-.423.689-.635 1.183-.635.354 0 .671.053.883.318.177.193.265.51.265.916v2.556h-.635V19.55c0-.282 0-.458-.036-.546-.035-.124-.141-.194-.23-.282a1.07 1.07 0 00-.423-.088c-.283 0-.513.088-.672.229-.14.176-.23.458-.23.881v2.133h-.6v-2.415c0-.317-.088-.493-.176-.634-.124-.141-.283-.194-.513-.194-.23 0-.406.053-.494.14-.177.054-.283.195-.353.424-.053.123-.089.37-.089.775v1.904h-.636zm-5.458-.459c-.194.141-.6.582-1.377.582-1.043 0-2.05-.81-2.05-1.992a2.04 2.04 0 012.05-2.062c.777 0 1.183.423 1.377.635-.088.14-.194.493-.282.6-.354-.46-.83-.583-1.095-.583-.778 0-1.414.635-1.414 1.41 0 .776.636 1.375 1.414 1.375.423 0 .83-.194 1.095-.634.123.317.265.528.282.67zm-4.751-.088h.512v.547h-.512v-.547zm-30.046-4.776h-1.82l-2.772 5.323h1.607l.495-1.058h2.932l.46 1.058h1.73l-2.632-5.323zm-1.996 3.225l1.007-2.062.919 2.062h-1.926zm14.096-1.18c-.371-.37-.813-.547-1.36-.547-.23 0-.46.035-.672.053-.353.123-.741.37-1.006.6v-2.15h-1.449v4.881c0 .123 0 .282-.035.423h1.448c0-.088.036-.141.036-.264v-.406c.194.23.406.423.777.635.23.123.671.14.812.14.6 0 1.06-.175 1.449-.546.318-.37.459-.828.459-1.445 0-.599-.141-1.057-.46-1.375zm-1.272 2.22c-.141.176-.406.265-.742.265-.318 0-.583-.089-.742-.265-.194-.194-.282-.458-.282-.81 0-.37.088-.688.282-.917.194-.194.424-.282.742-.282s.583.088.742.282c.194.194.283.493.283.864 0 .37-.071.652-.283.863zm12.24-2.22a1.803 1.803 0 00-1.324-.547c-.265 0-.46.035-.671.053-.371.123-.777.37-1.007.6v-2.15h-1.43v4.881c0 .123 0 .282-.036.423h1.448c0-.088.036-.141.036-.264v-.406c.194.23.406.423.777.635.23.123.6.14.812.14.6 0 1.095-.175 1.413-.546.318-.352.495-.828.495-1.445-.018-.599-.194-1.057-.512-1.375zm-1.236 2.22c-.141.176-.406.265-.742.265-.335 0-.6-.089-.777-.265-.176-.176-.265-.423-.265-.81 0-.406.089-.723.265-.917.195-.194.46-.282.777-.282.318 0 .583.088.742.282.177.194.265.493.265.864 0 .37-.088.652-.265.863zm-4.133.864v-2.186c0-.458-.177-.81-.548-1.057-.282-.23-.812-.353-1.554-.353h-.141c-.671 0-1.148.089-1.502.282-.353.194-.547.494-.636.882h1.449a.745.745 0 01.689-.423h.141c.265 0 .371.052.512.176.124.088.177.229.177.458v.088h-.83c-.548 0-.919.035-1.13.053-.283.035-.495.088-.637.194-.194.14-.37.282-.459.423-.088.23-.141.423-.141.634 0 .353.141.6.406.811.265.194.636.317 1.095.317.318 0 .6-.035.866-.123.318-.088.724-.317.865-.546v.088c0 .264.036.405.089.458h1.36c-.053 0-.071-.088-.071-.176zm-1.43-1.393c0 .318-.124.512-.23.67-.195.088-.318.194-.548.23h-.283c-.194 0-.37-.036-.459-.124-.123-.088-.176-.176-.176-.317 0-.194.123-.353.353-.406.088-.035.265-.088.512-.123h.83v.07zm12.434 1.393v-2.186c0-.458-.176-.81-.512-1.057-.318-.23-.865-.353-1.59-.353h-.14c-.672 0-1.131.053-1.502.282a1.156 1.156 0 00-.6.882h1.448c.035-.194.23-.423.67-.423h.142c.23 0 .406.052.512.176.124.053.177.194.177.458v.088h-.83c-.548 0-.883.035-1.13.053-.283.035-.513.088-.672.194-.194.14-.283.23-.424.423-.088.176-.123.37-.123.634 0 .37.123.635.353.811.318.194.689.317 1.13.317.318 0 .6-.035.866-.123.318-.088.742-.317.865-.546v.088c0 .264.036.423.124.458h1.325c-.071 0-.089-.088-.089-.176zm-1.413-1.393c0 .318-.088.512-.265.67-.141.088-.282.194-.512.23h-.265a.898.898 0 01-.494-.124c-.124-.053-.177-.176-.177-.317 0-.194.124-.353.353-.406.089-.035.23-.088.495-.123h.865v.07zm10.05-2.344c-1.13 0-1.995.917-1.995 2.062 0 1.058.865 1.992 1.996 1.992 1.13 0 2.013-.916 2.013-1.992 0-1.145-.9-2.062-2.013-2.062zm0 3.437c-.776 0-1.36-.6-1.36-1.375s.584-1.41 1.36-1.41c.778 0 1.379.635 1.379 1.41 0 .776-.601 1.375-1.378 1.375z"></path>
21+
</svg>
22+
);
23+
});
24+
25+
export default Icon;

0 commit comments

Comments
 (0)