---
title: ByteDance
description: https://bytedance.com
category: Provider
---

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

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

## Icons

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

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

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

## Text

<DocsPreview>
  {
    <Flexbox gap={16} align={'flex-start'}>
      <ByteDance.Text size={48} />
      <ByteDance.TextCn size={48} />
    </Flexbox>
  }
</DocsPreview>

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

export default () => (
  <Flexbox gap={16} align={'flex-start'}>
    <ByteDance.Text size={48} />
    <ByteDance.TextCn size={48} />
  </Flexbox>
);
```

## Brands

<DocsPreview>
  {
    <Flexbox gap={16} align={'flex-start'}>
      <ByteDance.Brand size={64} />
      <ByteDance.BrandColor size={64} />
    </Flexbox>
  }
</DocsPreview>

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

export default () => (
  <Flexbox gap={16} align={'flex-start'}>
    <ByteDance.Brand size={64} />
    <ByteDance.BrandColor size={64} />
  </Flexbox>
);
```

## Avatars

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

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

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

## Colors

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

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

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

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