@lobehub/icons
Version:
Popular AI / LLM Model Brand SVG Logo and Icon Collection
114 lines (90 loc) • 2.18 kB
text/mdx
---
title: AkashChat
description: https://chatapi.akash.network
category: Provider
---
import { AkashChat } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
import ColorPreview from '../components/ColorPreview';
import DocsPreview from '../components/DocsPreview';
## Icons
<DocsPreview>
{
<Flexbox gap={16} horizontal>
<AkashChat size={64} />
<AkashChat.Color size={64} />
</Flexbox>
}
</DocsPreview>
```tsx
import { AkashChat } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
export default () => (
<Flexbox gap={16} horizontal>
<AkashChat size={64} />
<AkashChat.Color size={64} />
</Flexbox>
);
```
## Text
<DocsPreview>{<AkashChat.Text size={48} />}</DocsPreview>
```tsx
import { AkashChat } from '@lobehub/icons';
export default () => <AkashChat.Text size={48} />;
```
## Combine
<DocsPreview>
{
<Flexbox gap={16} align={'flex-start'}>
<AkashChat.Combine size={64} />
<AkashChat.Combine size={64} type={'color'} />
</Flexbox>
}
</DocsPreview>
```tsx
import { AkashChat } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
export default () => (
<Flexbox gap={16} align={'flex-start'}>
<AkashChat.Combine size={64} />
<AkashChat.Combine size={64} type={'color'} />
</Flexbox>
);
```
## Avatars
<DocsPreview>
{
<Flexbox gap={16} horizontal>
<AkashChat.Avatar size={64} />
<AkashChat.Avatar size={64} shape={'square'} />
</Flexbox>
}
</DocsPreview>
```tsx
import { AkashChat } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
export default () => (
<Flexbox gap={16} horizontal>
<AkashChat.Avatar size={64} />
<AkashChat.Avatar size={64} shape={'square'} />
</Flexbox>
);
```
## Colors
<DocsPreview>
{
<Flexbox gap={16} horizontal>
<ColorPreview color={AkashChat.colorPrimary} />
</Flexbox>
}
</DocsPreview>
```tsx
import { AkashChat } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
import ColorPreview from '../components/ColorPreview';
export default () => (
<Flexbox gap={16} horizontal>
<ColorPreview color={AkashChat.colorPrimary} />
</Flexbox>
);
```