---
title: Smithery
description: https://smithery.ai
category: Application
---

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

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

## Icons

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

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

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

## Text

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

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

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

## Combine

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

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

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

## Avatars

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

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

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

## Colors

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

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

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

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