1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/components/component-library/avatar-token
ryanml 0bc1eeaf37
Deprecating the Rinkeby, Ropsten, and Kovan test networks (#15989)
* Deprecating Rinkeby, setting default debug network to Goerli

* Deprecating Ropsten and Kovan

* Conflict fix

* Remove unused localization, test fixes

* Add migration for moving used deprecated testnets to custom networks

* Fix migrator test

* Add more unit tests

* Migration updates provider type to rpc if deprecated network is selected

* Migration fully and correctly updates the provider if selected network is a deprecated testnet

* Continue to show deprecation warning on each of rinkeby, ropsten and kovan

* Add rpcUrl deprecation message to loading screen

* Removing mayBeFauceting prop

Co-authored-by: Dan Miller <danjm.com@gmail.com>
2022-09-28 20:26:01 -07:00
..
avatar-token.js added avatar token component (#15466) 2022-08-18 22:00:19 +05:30
avatar-token.scss added avatar token component (#15466) 2022-08-18 22:00:19 +05:30
avatar-token.stories.js Deprecating the Rinkeby, Ropsten, and Kovan test networks (#15989) 2022-09-28 20:26:01 -07:00
avatar-token.test.js added avatar network component (#15502) 2022-08-19 00:24:10 +05:30
index.js added avatar token component (#15466) 2022-08-18 22:00:19 +05:30
README.mdx added avatar network component (#15502) 2022-08-19 00:24:10 +05:30

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

import { AvatarToken } from './avatar-token';

# AvatarToken

The `AvatarToken` is a component responsible for display of the image of a given token

<Canvas>
  <Story id="ui-components-component-library-avatar-token-avatar-token-stories-js--default-story" />
</Canvas>

## Props

The `AvatarToken` accepts all props below as well as all [Box](/docs/ui-components-ui-box-box-stories-js--default-story#props) component props

<ArgsTable of={AvatarToken} />

### Size

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

Possible sizes include:

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

Defaults to `md`

<Canvas>
  <Story id="ui-components-component-library-avatar-token-avatar-token-stories-js--size" />
</Canvas>

### Token Name

Use the `tokenName` prop to set the initial letter of the `AvatarToken`. This will be used as the fallback display if no image url is passed to the `tokenImageUrl` prop.

<Canvas>
  <Story id="ui-components-component-library-avatar-token-avatar-token-stories-js--token-name" />
</Canvas>

### Token Image Url

Use the `tokenImageUrl` prop to set the image to be rendered of the `AvatarToken`.

<Canvas>
  <Story id="ui-components-component-library-avatar-token-avatar-token-stories-js--token-image-url" />
</Canvas>

### Show Halo

If we want to display the component with halo effect. Only works if an image url is supplied to `tokenImageUrl`

<Canvas>
  <Story id="ui-components-component-library-avatar-token-avatar-token-stories-js--show-halo" />
</Canvas>

### 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 `AvatarToken`.

<Canvas>
  <Story id="ui-components-component-library-avatar-token-avatar-token-stories-js--color-background-color-and-border-color" />
</Canvas>