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