feat: add logo components for various AI providers using @lobehub/icons

This commit is contained in:
2025-10-22 17:32:46 +02:00
parent 886e7557df
commit fa0a55d846
14 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
import { Ai21 } from '@lobehub/icons';
export default () => <Ai21.Brand size={30} />;

View File

@@ -0,0 +1,3 @@
import { AlibabaCloud } from '@lobehub/icons';
export default () => <AlibabaCloud.Text size={30} />;

View File

@@ -0,0 +1,3 @@
import { BaiduCloud } from '@lobehub/icons';
export default () => <BaiduCloud.Combine size={30} />;

View File

@@ -0,0 +1,3 @@
import { ByteDance } from '@lobehub/icons';
export default () => <ByteDance.Text size={30} />;

View File

@@ -0,0 +1,3 @@
import { Claude } from '@lobehub/icons';
export default () => <Claude.Combine size={30} />;

View File

@@ -0,0 +1,3 @@
import { DeepMind } from '@lobehub/icons';
export default () => <DeepMind.Combine size={30} />;

View File

@@ -0,0 +1,3 @@
import { DeepSeek } from '@lobehub/icons';
export default () => <DeepSeek.Combine size={30} />;

View File

@@ -0,0 +1,3 @@
import { Minimax } from '@lobehub/icons';
export default () => <Minimax.Combine size={30} />;

View File

@@ -0,0 +1,3 @@
import { Mistral } from '@lobehub/icons';
export default () => <Mistral.Combine size={30} />;

View File

@@ -0,0 +1,3 @@
import { Moonshot } from '@lobehub/icons';
export default () => <Moonshot.Combine size={30} />;

View File

View File

@@ -0,0 +1,3 @@
import { OpenAI } from '@lobehub/icons';
export default () => <OpenAI.Combine size={30} />;

View File

@@ -0,0 +1,3 @@
import { TencentCloud } from '@lobehub/icons';
export default () => <TencentCloud.Combine size={30} />;

View File

@@ -0,0 +1,23 @@
const XAILogo = () => (
<svg
version="1.1"
id="katman_1"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 841.89 595.28"
xmlSpace="preserve"
width="30"
height="30"
>
<g>
<polygon points="557.09,211.99 565.4,538.36 631.96,538.36 640.28,93.18 " />
<polygon points="640.28,56.91 538.72,56.91 379.35,284.53 430.13,357.05 " />
<polygon points="201.61,538.36 303.17,538.36 353.96,465.84 303.17,393.31 " />
<polygon points="201.61,211.99 430.13,538.36 531.69,538.36 303.17,211.99 " />
</g>
</svg>
);
export default XAILogo;