1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/ui/components/component-library/avatar-base
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__ Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
avatar-base.scss AvatarBase font-size logic (#18203) 2023-03-17 10:06:59 -07:00
avatar-base.stories.tsx Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
avatar-base.test.tsx Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
avatar-base.tsx Fix/18884 migrate avatar network (#19079) 2023-07-24 11:15:33 -07:00
avatar-base.types.ts Fix/18884 migrate avatar network (#19079) 2023-07-24 11:15:33 -07:00
index.ts Migrates avatar base to TypeScript (#18494) 2023-05-03 17:30:07 -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 { AvatarBase } from './avatar-base';

### This is a base component. It should not be used in your feature code directly but as a "base" for other UI components

# AvatarBase

The `AvatarBase` is a wrapper component responsible for enforcing dimensions and border radius for Avatar components

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

## Props

<ArgsTable of={AvatarBase} />

### Size

Use the `size` prop to set the size of the `AvatarBase`.

Possible sizes include:

- `xs` 16px
- `sm` 24px
- `md` 32px
- `lg` 40px
- `xl` 48px

Defaults to `md`

The text styles of the `AvatarBase` is based on the `size` prop. To override this use the `Text` component's `variant` prop. `AvatarBase` also accepts all `Text` component props.

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

```jsx
import { AvatarBaseSize } from '../ui/component-library/avatar-base/avatar-base.types';
import { AvatarBase } from '../../component-library/avatar-base';
<AvatarBase size={AvatarBaseSize.XS} />
<AvatarBase size={AvatarBaseSize.SM} />
<AvatarBase size={AvatarBaseSize.MD} />
<AvatarBase size={AvatarBaseSize.LG} />
<AvatarBase size={AvatarBaseSize.XL} />
```

### Children

The `AvatarBase` component can contain images, icons or text

<Canvas>
  <Story id="components-componentlibrary-avatarbase--children" />
</Canvas>

```jsx
import { AvatarBase } from '../../component-library';
<AvatarBase>
  <img src="./images/eth_logo.png" />
</AvatarBase>
<AvatarBase>
  <img width="100%" src="./images/arbitrum.svg" />
</AvatarBase>
<AvatarBase>
  <img width="100%" src="./images/avax-token.png" />
</AvatarBase>
<AvatarBase>A</AvatarBase>
```

### Color, Background Color And Border Color

Use the `color`, `backgroundColor` and `borderColor` props to set the text color, background-color and border-color of the `AvatarBase`.

<Canvas>
  <Story id="components-componentlibrary-avatarbase--color-background-color-and-border-color" />
</Canvas>

```jsx
import {   TextColor,
           BackgroundColor,
           BorderColor } from '../../../helpers/constants/design-system';
import { AvatarBase } from '../../component-library';
<AvatarBase>B</AvatarBase>
<AvatarBase
    backgroundColor={BackgroundColor.goerli}
    borderColor={BorderColor.goerli}
    color={TextColor.primaryInverse}
  >
  G
</AvatarBase>
<AvatarBase
   backgroundColor={BackgroundColor.sepolia}
   borderColor={BorderColor.sepolia}
   color={TextColor.primaryInverse}
>
  S
</AvatarBase>
```