diff --git a/README.md b/README.md index 2236d1e..0882182 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,7 @@ Contributions, corrections & requests can be made on GitHub. - [x] [Groq](https://icons.lobehub.com/components/groq) - [x] [HuggingFace](https://icons.lobehub.com/components/hugging-face) - [x] [Hunyuan (腾讯混元)](https://icons.lobehub.com/components/hunyuan) +- [x] [Langfuse](https://icons.lobehub.com/components/langfuse) - [x] [LLaVA](https://icons.lobehub.com/components/l-la-va) - [x] [Meta](https://icons.lobehub.com/components/meta) - [x] [Microsoft (Azure)](https://icons.lobehub.com/components/azure) @@ -104,10 +105,13 @@ Contributions, corrections & requests can be made on GitHub. - [x] [Replicate](https://icons.lobehub.com/components/replicate) - [x] [Spark (讯飞星火)](https://icons.lobehub.com/components/spark) - [x] [Stability (StableDiffusion)](https://icons.lobehub.com/components/stability) +- [x] [Suno](https://icons.lobehub.com/components/suno) - [x] [Tencent](https://icons.lobehub.com/components/tencent) +- [x] [together.ai](https://icons.lobehub.com/components/together) - [x] [Tongyi (通义)](https://icons.lobehub.com/components/tongyi) - [x] [Wenxin (文心)](https://icons.lobehub.com/components/wenxin) - [x] [Yi (零一万物)](https://icons.lobehub.com/components/yi) +- [x] [Zeabur](https://icons.lobehub.com/components/zeabur) - [x] [Zhipu (ChatGLM)](https://icons.lobehub.com/components/chat-glm) - [x] [Zhipu (智谱)](https://icons.lobehub.com/components/zhipu) diff --git a/src/Langfuse/components/Avatar.tsx b/src/Langfuse/components/Avatar.tsx new file mode 100644 index 0000000..b6ef16c --- /dev/null +++ b/src/Langfuse/components/Avatar.tsx @@ -0,0 +1,22 @@ +import { memo } from 'react'; + +import IconAvatar, { type IconAvatarProps } from '@/IconAvatar'; + +import { COLOR_PRIMARY, TITLE } from '../style'; +import Mono from './Mono'; + +export type AvatarProps = Omit; + +const Avatar = memo(({ background, ...rest }) => { + return ( + + ); +}); + +export default Avatar; diff --git a/src/Langfuse/components/Color.tsx b/src/Langfuse/components/Color.tsx new file mode 100644 index 0000000..c22a3f7 --- /dev/null +++ b/src/Langfuse/components/Color.tsx @@ -0,0 +1,39 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + + + + + ); +}); + +export default Icon; diff --git a/src/Langfuse/components/Combine.tsx b/src/Langfuse/components/Combine.tsx new file mode 100644 index 0000000..2d4ede6 --- /dev/null +++ b/src/Langfuse/components/Combine.tsx @@ -0,0 +1,28 @@ +import { memo } from 'react'; + +import IconCombine, { type IconCombineProps } from '@/IconCombine'; + +import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from '../style'; +import Color from './Color'; +import Mono from './Mono'; +import Text from './Text'; + +export interface CombineProps extends Omit { + type?: 'color' | 'mono'; +} +const Combine = memo(({ type = 'mono', ...rest }) => { + const Icon = type === 'color' ? Color : Mono; + + return ( + + ); +}); + +export default Combine; diff --git a/src/Langfuse/components/Mono.tsx b/src/Langfuse/components/Mono.tsx new file mode 100644 index 0000000..5948f0c --- /dev/null +++ b/src/Langfuse/components/Mono.tsx @@ -0,0 +1,29 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + + + + ); +}); + +export default Icon; diff --git a/src/Langfuse/components/Text.tsx b/src/Langfuse/components/Text.tsx new file mode 100644 index 0000000..ce0c808 --- /dev/null +++ b/src/Langfuse/components/Text.tsx @@ -0,0 +1,25 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + ); +}); + +export default Icon; diff --git a/src/Langfuse/index.md b/src/Langfuse/index.md new file mode 100644 index 0000000..264c661 --- /dev/null +++ b/src/Langfuse/index.md @@ -0,0 +1,72 @@ +--- +nav: Components +group: Application +title: Langfuse +atomId: Langfuse +description: https://langfuse.com +--- + +## Icons + +```tsx +import { Langfuse } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Text + +```tsx +import { Langfuse } from '@lobehub/icons'; + +export default () => ; +``` + +## Combine + +```tsx +import { Langfuse } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Avatars + +```tsx +import { Langfuse } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Colors + +```tsx +import { Langfuse } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +import ColorPreview from '../components/ColorPreview'; + +export default () => ( + + + +); +``` diff --git a/src/Langfuse/index.ts b/src/Langfuse/index.ts new file mode 100644 index 0000000..92a3b98 --- /dev/null +++ b/src/Langfuse/index.ts @@ -0,0 +1,25 @@ +import Avatar from './components/Avatar'; +import Color from './components/Color'; +import Combine from './components/Combine'; +import Mono from './components/Mono'; +import Text from './components/Text'; +import { COLOR_PRIMARY, TITLE } from './style'; + +export type CompoundedIcon = typeof Mono & { + Avatar: typeof Avatar; + Color: typeof Color; + Combine: typeof Combine; + Text: typeof Text; + colorPrimary: string; + title: string; +}; + +const Icons = Mono as CompoundedIcon; +Icons.Color = Color; +Icons.Text = Text; +Icons.Combine = Combine; +Icons.Avatar = Avatar; +Icons.colorPrimary = COLOR_PRIMARY; +Icons.title = TITLE; + +export default Icons; diff --git a/src/Langfuse/style.ts b/src/Langfuse/style.ts new file mode 100644 index 0000000..07c8cce --- /dev/null +++ b/src/Langfuse/style.ts @@ -0,0 +1,4 @@ +export const TITLE = 'Langfuse'; +export const TEXT_MULTIPLE = 0.85; +export const SPACE_MULTIPLE = 0.3; +export const COLOR_PRIMARY = '#000'; diff --git a/src/Suno/components/Avatar.tsx b/src/Suno/components/Avatar.tsx new file mode 100644 index 0000000..5ad2dc3 --- /dev/null +++ b/src/Suno/components/Avatar.tsx @@ -0,0 +1,23 @@ +import { memo } from 'react'; + +import IconAvatar, { type IconAvatarProps } from '@/IconAvatar'; + +import { COLOR_PRIMARY, TITLE } from '../style'; +import Mono from './Mono'; + +export type AvatarProps = Omit; + +const Avatar = memo(({ background, ...rest }) => { + return ( + + ); +}); + +export default Avatar; diff --git a/src/Suno/components/Combine.tsx b/src/Suno/components/Combine.tsx new file mode 100644 index 0000000..dfa6ada --- /dev/null +++ b/src/Suno/components/Combine.tsx @@ -0,0 +1,24 @@ +import { memo } from 'react'; + +import IconCombine, { type IconCombineProps } from '@/IconCombine'; + +import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from '../style'; +import Mono from './Mono'; +import Text from './Text'; + +export type CombineProps = Omit; + +const Combine = memo(({ ...rest }) => { + return ( + + ); +}); + +export default Combine; diff --git a/src/Suno/components/Mono.tsx b/src/Suno/components/Mono.tsx new file mode 100644 index 0000000..e0a6446 --- /dev/null +++ b/src/Suno/components/Mono.tsx @@ -0,0 +1,26 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + ); +}); + +export default Icon; diff --git a/src/Suno/components/Text.tsx b/src/Suno/components/Text.tsx new file mode 100644 index 0000000..321e79b --- /dev/null +++ b/src/Suno/components/Text.tsx @@ -0,0 +1,25 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + ); +}); + +export default Icon; diff --git a/src/Suno/index.md b/src/Suno/index.md new file mode 100644 index 0000000..ba6810c --- /dev/null +++ b/src/Suno/index.md @@ -0,0 +1,66 @@ +--- +nav: Components +group: Application +title: Suno +atomId: Suno +description: https://app.suno.ai +--- + +## Icons + +```tsx +import { Suno } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ; +``` + +## Text + +```tsx +import { Suno } from '@lobehub/icons'; + +export default () => ; +``` + +## Combine + +```tsx +import { Suno } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + +); +``` + +## Avatars + +```tsx +import { Suno } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Colors + +```tsx +import { Suno } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +import ColorPreview from '../components/ColorPreview'; + +export default () => ( + + + +); +``` diff --git a/src/Suno/index.ts b/src/Suno/index.ts new file mode 100644 index 0000000..e7cb073 --- /dev/null +++ b/src/Suno/index.ts @@ -0,0 +1,21 @@ +import Avatar from './components/Avatar'; +import Combine from './components/Combine'; +import Mono from './components/Mono'; +import Text from './components/Text'; +import { COLOR_PRIMARY, TITLE } from './style'; + +export type CompoundedIcon = typeof Mono & { + Avatar: typeof Avatar; + Combine: typeof Combine; + Text: typeof Text; + colorPrimary: string; + title: string; +}; + +const Icons = Mono as CompoundedIcon; +Icons.Text = Text; +Icons.Combine = Combine; +Icons.Avatar = Avatar; +Icons.colorPrimary = COLOR_PRIMARY; +Icons.title = TITLE; +export default Icons; diff --git a/src/Suno/style.ts b/src/Suno/style.ts new file mode 100644 index 0000000..2fe581d --- /dev/null +++ b/src/Suno/style.ts @@ -0,0 +1,4 @@ +export const TITLE = 'Suno'; +export const TEXT_MULTIPLE = 1; +export const SPACE_MULTIPLE = 0.2; +export const COLOR_PRIMARY = '#000'; diff --git a/src/Together/components/Avatar.tsx b/src/Together/components/Avatar.tsx new file mode 100644 index 0000000..5f88384 --- /dev/null +++ b/src/Together/components/Avatar.tsx @@ -0,0 +1,22 @@ +import { memo } from 'react'; + +import IconAvatar, { type IconAvatarProps } from '@/IconAvatar'; + +import { COLOR_PRIMARY, TITLE } from '../style'; +import Mono from './Mono'; + +export type AvatarProps = Omit; + +const Avatar = memo(({ background, ...rest }) => { + return ( + + ); +}); + +export default Avatar; diff --git a/src/Together/components/BrandColor.tsx b/src/Together/components/BrandColor.tsx new file mode 100644 index 0000000..af10c04 --- /dev/null +++ b/src/Together/components/BrandColor.tsx @@ -0,0 +1,31 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + + + + ); +}); + +export default Icon; diff --git a/src/Together/components/BrandMono.tsx b/src/Together/components/BrandMono.tsx new file mode 100644 index 0000000..4672039 --- /dev/null +++ b/src/Together/components/BrandMono.tsx @@ -0,0 +1,28 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + + + + ); +}); + +export default Icon; diff --git a/src/Together/components/Color.tsx b/src/Together/components/Color.tsx new file mode 100644 index 0000000..174e228 --- /dev/null +++ b/src/Together/components/Color.tsx @@ -0,0 +1,32 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + + + + ); +}); + +export default Icon; diff --git a/src/Together/components/Combine.tsx b/src/Together/components/Combine.tsx new file mode 100644 index 0000000..2d4ede6 --- /dev/null +++ b/src/Together/components/Combine.tsx @@ -0,0 +1,28 @@ +import { memo } from 'react'; + +import IconCombine, { type IconCombineProps } from '@/IconCombine'; + +import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from '../style'; +import Color from './Color'; +import Mono from './Mono'; +import Text from './Text'; + +export interface CombineProps extends Omit { + type?: 'color' | 'mono'; +} +const Combine = memo(({ type = 'mono', ...rest }) => { + const Icon = type === 'color' ? Color : Mono; + + return ( + + ); +}); + +export default Combine; diff --git a/src/Together/components/Mono.tsx b/src/Together/components/Mono.tsx new file mode 100644 index 0000000..4e17598 --- /dev/null +++ b/src/Together/components/Mono.tsx @@ -0,0 +1,32 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + + + + ); +}); + +export default Icon; diff --git a/src/Together/components/Text.tsx b/src/Together/components/Text.tsx new file mode 100644 index 0000000..4672039 --- /dev/null +++ b/src/Together/components/Text.tsx @@ -0,0 +1,28 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + + + + ); +}); + +export default Icon; diff --git a/src/Together/index.md b/src/Together/index.md new file mode 100644 index 0000000..098eba2 --- /dev/null +++ b/src/Together/index.md @@ -0,0 +1,86 @@ +--- +nav: Components +group: Provider +title: together.ai +atomId: Together +description: https://www.together.ai +--- + +## Icons + +```tsx +import { Together } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Text + +```tsx +import { Together } from '@lobehub/icons'; + +export default () => ; +``` + +## Combine + +```tsx +import { Together } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Brands + +```tsx +import { Together } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Avatars + +```tsx +import { Together } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Colors + +```tsx +import { Together } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +import ColorPreview from '../components/ColorPreview'; + +export default () => ( + + + +); +``` diff --git a/src/Together/index.ts b/src/Together/index.ts new file mode 100644 index 0000000..ba129d1 --- /dev/null +++ b/src/Together/index.ts @@ -0,0 +1,31 @@ +import Avatar from './components/Avatar'; +import BrandColor from './components/BrandColor'; +import BrandMono from './components/BrandMono'; +import Color from './components/Color'; +import Combine from './components/Combine'; +import Mono from './components/Mono'; +import Text from './components/Text'; +import { COLOR_PRIMARY, TITLE } from './style'; + +export type CompoundedIcon = typeof Mono & { + Avatar: typeof Avatar; + Brand: typeof BrandMono; + BrandColor: typeof BrandColor; + Color: typeof Color; + Combine: typeof Combine; + Text: typeof Text; + colorPrimary: string; + title: string; +}; + +const Icons = Mono as CompoundedIcon; +Icons.Color = Color; +Icons.Text = Text; +Icons.Combine = Combine; +Icons.Avatar = Avatar; +Icons.Brand = BrandMono; +Icons.BrandColor = BrandColor; +Icons.colorPrimary = COLOR_PRIMARY; +Icons.title = TITLE; + +export default Icons; diff --git a/src/Together/style.ts b/src/Together/style.ts new file mode 100644 index 0000000..2903c0b --- /dev/null +++ b/src/Together/style.ts @@ -0,0 +1,4 @@ +export const TITLE = 'together.ai'; +export const TEXT_MULTIPLE = 0.85; +export const SPACE_MULTIPLE = 0.2; +export const COLOR_PRIMARY = '#0f6fff'; diff --git a/src/Zeabur/components/Avatar.tsx b/src/Zeabur/components/Avatar.tsx new file mode 100644 index 0000000..5ad2dc3 --- /dev/null +++ b/src/Zeabur/components/Avatar.tsx @@ -0,0 +1,23 @@ +import { memo } from 'react'; + +import IconAvatar, { type IconAvatarProps } from '@/IconAvatar'; + +import { COLOR_PRIMARY, TITLE } from '../style'; +import Mono from './Mono'; + +export type AvatarProps = Omit; + +const Avatar = memo(({ background, ...rest }) => { + return ( + + ); +}); + +export default Avatar; diff --git a/src/Zeabur/components/Color.tsx b/src/Zeabur/components/Color.tsx new file mode 100644 index 0000000..7092ce5 --- /dev/null +++ b/src/Zeabur/components/Color.tsx @@ -0,0 +1,30 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + + + + + ); +}); + +export default Icon; diff --git a/src/Zeabur/components/Combine.tsx b/src/Zeabur/components/Combine.tsx new file mode 100644 index 0000000..2d4ede6 --- /dev/null +++ b/src/Zeabur/components/Combine.tsx @@ -0,0 +1,28 @@ +import { memo } from 'react'; + +import IconCombine, { type IconCombineProps } from '@/IconCombine'; + +import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from '../style'; +import Color from './Color'; +import Mono from './Mono'; +import Text from './Text'; + +export interface CombineProps extends Omit { + type?: 'color' | 'mono'; +} +const Combine = memo(({ type = 'mono', ...rest }) => { + const Icon = type === 'color' ? Color : Mono; + + return ( + + ); +}); + +export default Combine; diff --git a/src/Zeabur/components/Mono.tsx b/src/Zeabur/components/Mono.tsx new file mode 100644 index 0000000..a5f8796 --- /dev/null +++ b/src/Zeabur/components/Mono.tsx @@ -0,0 +1,29 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + + + + ); +}); + +export default Icon; diff --git a/src/Zeabur/components/Text.tsx b/src/Zeabur/components/Text.tsx new file mode 100644 index 0000000..e363e57 --- /dev/null +++ b/src/Zeabur/components/Text.tsx @@ -0,0 +1,25 @@ +import { forwardRef } from 'react'; + +import type { IconType } from '@/types'; + +import { TITLE } from '../style'; + +const Icon: IconType = forwardRef(({ size = '1em', style, ...rest }, ref) => { + return ( + + {TITLE} + + + ); +}); + +export default Icon; diff --git a/src/Zeabur/index.md b/src/Zeabur/index.md new file mode 100644 index 0000000..d84f9f5 --- /dev/null +++ b/src/Zeabur/index.md @@ -0,0 +1,72 @@ +--- +nav: Components +group: Provider +title: Zeabur +atomId: Zeabur +description: https://zeabur.com +--- + +## Icons + +```tsx +import { Zeabur } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Text + +```tsx +import { Zeabur } from '@lobehub/icons'; + +export default () => ; +``` + +## Combine + +```tsx +import { Zeabur } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Avatars + +```tsx +import { Zeabur } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +export default () => ( + + + + +); +``` + +## Colors + +```tsx +import { Zeabur } from '@lobehub/icons'; +import { Flexbox } from 'react-layout-kit'; + +import ColorPreview from '../components/ColorPreview'; + +export default () => ( + + + +); +``` diff --git a/src/Zeabur/index.ts b/src/Zeabur/index.ts new file mode 100644 index 0000000..92a3b98 --- /dev/null +++ b/src/Zeabur/index.ts @@ -0,0 +1,25 @@ +import Avatar from './components/Avatar'; +import Color from './components/Color'; +import Combine from './components/Combine'; +import Mono from './components/Mono'; +import Text from './components/Text'; +import { COLOR_PRIMARY, TITLE } from './style'; + +export type CompoundedIcon = typeof Mono & { + Avatar: typeof Avatar; + Color: typeof Color; + Combine: typeof Combine; + Text: typeof Text; + colorPrimary: string; + title: string; +}; + +const Icons = Mono as CompoundedIcon; +Icons.Color = Color; +Icons.Text = Text; +Icons.Combine = Combine; +Icons.Avatar = Avatar; +Icons.colorPrimary = COLOR_PRIMARY; +Icons.title = TITLE; + +export default Icons; diff --git a/src/Zeabur/style.ts b/src/Zeabur/style.ts new file mode 100644 index 0000000..cecc3f4 --- /dev/null +++ b/src/Zeabur/style.ts @@ -0,0 +1,4 @@ +export const TITLE = 'Zeabur'; +export const TEXT_MULTIPLE = 0.75; +export const SPACE_MULTIPLE = 0.2; +export const COLOR_PRIMARY = '#6300FF'; diff --git a/src/index.ts b/src/index.ts index 30396d1..ca3cccc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -32,6 +32,7 @@ export { default as HuggingFace, type CompoundedIcon as HuggingFaceProps } from export { default as Hunyuan, type CompoundedIcon as HunyuanProps } from './Hunyuan'; export { default as IconAvatar, type IconAvatarProps } from './IconAvatar'; export { default as IconCombine, type IconCombineProps } from './IconCombine'; +export { default as Langfuse, type CompoundedIcon as LangfuseProps } from './Langfuse'; export { default as LLaVA, type CompoundedIcon as LLaVAProps } from './LLaVA'; export { default as Meta, type CompoundedIcon as MetaProps } from './Meta'; export { default as Midjourney, type CompoundedIcon as MidjourneyProps } from './Midjourney'; @@ -48,11 +49,14 @@ export { default as Qingyan, type CompoundedIcon as QingyanProps } from './Qingy export { default as Replicate, type CompoundedIcon as ReplicateProps } from './Replicate'; export { default as Spark, type CompoundedIcon as SparkProps } from './Spark'; export { default as Stability, type CompoundedIcon as StabilityProps } from './Stability'; +export { default as Suno, type CompoundedIcon as SunoProps } from './Suno'; export { default as Tencent, type CompoundedIcon as TencentProps } from './Tencent'; +export { default as Together, type CompoundedIcon as TogetherProps } from './Together'; export { default as Tongyi, type CompoundedIcon as TongyiProps } from './Tongyi'; export type { IconType } from './types'; export { default as Wenxin, type CompoundedIcon as WenxinProps } from './Wenxin'; export { default as WorkersAI, type CompoundedIcon as WorkersAIProps } from './WorkersAI'; export { default as Yi, type CompoundedIcon as YiProps } from './Yi'; +export { default as Zeabur, type CompoundedIcon as ZeaburProps } from './Zeabur'; export { default as ZeroOne, type CompoundedIcon as ZeroOneProps } from './ZeroOne'; export { default as Zhipu, type CompoundedIcon as ZhipuProps } from './Zhipu';