---
title: FastGPT
description: https://tryfastgpt.ai
category: Application
---

import { FastGPT } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';

import ColorPreview from '../components/ColorPreview';
import DocsPreview from '../components/DocsPreview';

## Icons

<DocsPreview>
  {
    <Flexbox gap={16} horizontal>
      <FastGPT size={64} />
      <FastGPT.Color size={64} />
    </Flexbox>
  }
</DocsPreview>

```tsx
import { FastGPT } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';

export default () => (
  <Flexbox gap={16} horizontal>
    <FastGPT size={64} />
    <FastGPT.Color size={64} />
  </Flexbox>
);
```

## Text

<DocsPreview>{<FastGPT.Text size={48} />}</DocsPreview>

```tsx
import { FastGPT } from '@lobehub/icons';

export default () => <FastGPT.Text size={48} />;
```

## Combine

<DocsPreview>
  {
    <Flexbox gap={16} align={'flex-start'}>
      <FastGPT.Combine size={64} />
      <FastGPT.Combine size={64} type={'color'} />
    </Flexbox>
  }
</DocsPreview>

```tsx
import { FastGPT } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';

export default () => (
  <Flexbox gap={16} align={'flex-start'}>
    <FastGPT.Combine size={64} />
    <FastGPT.Combine size={64} type={'color'} />
  </Flexbox>
);
```

## Avatars

<DocsPreview>
  {
    <Flexbox gap={16} horizontal>
      <FastGPT.Avatar size={64} />
      <FastGPT.Avatar size={64} shape={'square'} />
    </Flexbox>
  }
</DocsPreview>

```tsx
import { FastGPT } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';

export default () => (
  <Flexbox gap={16} horizontal>
    <FastGPT.Avatar size={64} />
    <FastGPT.Avatar size={64} shape={'square'} />
  </Flexbox>
);
```

## Colors

<DocsPreview>
  {
    <Flexbox gap={16} horizontal>
      <ColorPreview color={FastGPT.colorPrimary} />
    </Flexbox>
  }
</DocsPreview>

```tsx
import { FastGPT } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';

import ColorPreview from '../components/ColorPreview';

export default () => (
  <Flexbox gap={16} horizontal>
    <ColorPreview color={FastGPT.colorPrimary} />
  </Flexbox>
);
```
