@lobehub/icons
Version:
Popular AI / LLM Model Brand SVG Logo and Icon Collection
118 lines (92 loc) • 2.49 kB
text/mdx
---
title: Automatic1111 (SD Webui)
description: https://github.com/AUTOMATIC1111/stable-diffusion-webui
category: Application
---
import { Automatic } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
import ColorPreview from '../components/ColorPreview';
import DocsPreview from '../components/DocsPreview';
## Icons
**Not Official**: This icon has not been verified by the official source and comes from the online community.
[https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/2901](https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/2901)
<DocsPreview>
{
<Flexbox gap={16} horizontal>
<Automatic size={64} />
<Automatic.Color size={64} />
</Flexbox>
}
</DocsPreview>
```tsx
import { Automatic } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
export default () => (
<Flexbox gap={16} horizontal>
<Automatic size={64} />
<Automatic.Color size={64} />
</Flexbox>
);
```
## Text
<DocsPreview>{<Automatic.Text size={48} />}</DocsPreview>
```tsx
import { Automatic } from '@lobehub/icons';
export default () => <Automatic.Text size={48} />;
```
## Combine
<DocsPreview>
{
<Flexbox gap={16} align={'flex-start'}>
<Automatic.Combine size={64} />
<Automatic.Combine size={64} type={'color'} />
</Flexbox>
}
</DocsPreview>
```tsx
import { Automatic } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
export default () => (
<Flexbox gap={16} align={'flex-start'}>
<Automatic.Combine size={64} />
<Automatic.Combine size={64} type={'color'} />
</Flexbox>
);
```
## Avatars
<DocsPreview>
{
<Flexbox gap={16} horizontal>
<Automatic.Avatar size={64} />
<Automatic.Avatar size={64} shape={'square'} />
</Flexbox>
}
</DocsPreview>
```tsx
import { Automatic } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
export default () => (
<Flexbox gap={16} horizontal>
<Automatic.Avatar size={64} />
<Automatic.Avatar size={64} shape={'square'} />
</Flexbox>
);
```
## Colors
<DocsPreview>
{
<Flexbox gap={16} horizontal>
<ColorPreview color={Automatic.colorPrimary} />
</Flexbox>
}
</DocsPreview>
```tsx
import { Automatic } from '@lobehub/icons';
import { Flexbox } from '@lobehub/ui';
import ColorPreview from '../components/ColorPreview';
export default () => (
<Flexbox gap={16} horizontal>
<ColorPreview color={Automatic.colorPrimary} />
</Flexbox>
);
```