1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00
metamask-extension/ui/components/component-library/avatar-account
George Marshall 419bf92282
Removing Box props description from TS component docs (#20451)
* Removing Box props description from TS component docs

* Making style utility prop comments more generic
2023-08-16 10:34:08 -07:00
..
__snapshots__ fix/migrate AvatarAccount to TS (#20208) 2023-08-01 14:19:32 -07:00
avatar-account.scss avatar account housekeeping (#16930) 2023-01-09 16:38:43 -08:00
avatar-account.stories.tsx fix/migrate AvatarAccount to TS (#20208) 2023-08-01 14:19:32 -07:00
avatar-account.test.tsx fix/migrate AvatarAccount to TS (#20208) 2023-08-01 14:19:32 -07:00
avatar-account.tsx fix/migrate AvatarAccount to TS (#20208) 2023-08-01 14:19:32 -07:00
avatar-account.types.ts fix/migrate AvatarAccount to TS (#20208) 2023-08-01 14:19:32 -07:00
index.ts fix/migrate AvatarAccount to TS (#20208) 2023-08-01 14:19:32 -07:00
README.mdx Removing Box props description from TS component docs (#20451) 2023-08-16 10:34:08 -07:00

import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';

import { AvatarAccount } from './avatar-account';
import { AvatarBase } from '../';

# AvatarAccount

The `AvatarAccount` is a type of avatar reserved for representing accounts.

<Canvas>
  <Story id="components-componentlibrary-avataraccount--default-story" />
</Canvas>

## Props

<ArgsTable of={AvatarAccount} />

### Size

Use the `size` prop and the `AvatarAccountSize` enum from `../../component-library` to change the size of `AvatarAccount`

Possible sizes include:

- `AvatarAccountSize.Xs` 16px
- `AvatarAccountSize.Sm` 24px
- `AvatarAccountSize.Md` 32px
- `AvatarAccountSize.Lg` 40px
- `AvatarAccountSize.Xl` 48px

Defaults to `AvatarAccountSize.MD`

<Canvas>
  <Story id="components-componentlibrary-avataraccount--size" />
</Canvas>

```jsx
import { AvatarAccount, AvatarAccountSize } from '../../component-library';

<AvatarAccount size={AvatarAccountSize.Xs} />
<AvatarAccount size={AvatarAccountSize.Sm} />
<AvatarAccount size={AvatarAccountSize.Md} />
<AvatarAccount size={AvatarAccountSize.Lg} />
<AvatarAccount size={AvatarAccountSize.Xl} />
```

### Variant

Use the `variant` prop and the `AvatarAccountVariant` enum from `../../component-library` to change between jazzicon and blockies variants.

<Canvas>
  <Story id="components-componentlibrary-avataraccount--variant" />
</Canvas>

```jsx
import { AvatarAccount, AvatarAccountVariant } from '../../component-library';

<AvatarAccount variant={AvatarAccountVariant.Jazzicon} />
<AvatarAccount variant={AvatarAccountVariant.Blockies} />
```

### Address

Use the required `address` for generating images

<Canvas>
  <Story id="components-componentlibrary-avataraccount--address" />
</Canvas>

```jsx
import { AvatarAccount, AvatarAccountVariant } from '../../component-library';

<AvatarAccount variant={AvatarAccountVariant.Jazzicon} address="0x5CfE73b6021E818B776b421B1c4Db2474086a7e1" />
<AvatarAccount variant={AvatarAccountVariant.Blockies} address="0x0" />
```