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