mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 04:46:10 +01:00
c5368c152b
* added storybook test runner * added test runner in ci * updated test for ci and fixed lint error * updated lavamoat policy * updated test command * updated playwright * changed command to storybook;ci * updated command * updated instance for test-storybook * updated playwright * added playwright step * replaced concurrently with start-server-and-test * updated the static storybook directory * replaced first with last * updated lock file * replaced first with last * updated test-storybook with maxworkers * updated .depchechrc * updated yml * removed id from banner base * replaced broken stories with .stories-to-do.js extesnsion * updated token allowance story * removed duplicacies from yarn * fixed lavamoat * removed filename comment * updated links for docs * fixed file extension for stories * updated path for stories.json * updated stories.json path * yarn updated * updated stories * updated yarn * updated wait on
121 lines
3.1 KiB
Plaintext
121 lines
3.1 KiB
Plaintext
import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';
|
|
|
|
import { AvatarNetwork } from './avatar-network';
|
|
|
|
# AvatarNetwork
|
|
|
|
The `AvatarNetwork` is a component responsible for display of the image of a given network
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-avatarnetwork--default-story" />
|
|
</Canvas>
|
|
|
|
## Props
|
|
|
|
The `AvatarNetwork` accepts all props below as well as all [Box](/docs/components-ui-box--default-story#props) component props
|
|
|
|
<ArgsTable of={AvatarNetwork} />
|
|
|
|
### Size
|
|
|
|
Use the `size` prop to set the size of the `AvatarNetwork`.
|
|
|
|
Possible sizes include:
|
|
|
|
- `xs` 16px
|
|
- `sm` 24px
|
|
- `md` 32px
|
|
- `lg` 40px
|
|
- `xl` 48px
|
|
|
|
Defaults to `md`
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-avatarnetwork--size" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { SIZES } from '../../../helpers/constants/design-system';
|
|
import { AvatarNetwork } from '../../component-library';
|
|
<AvatarNetwork size={SIZES.XS} />
|
|
<AvatarNetwork size={SIZES.SM} />
|
|
<AvatarNetwork size={SIZES.MD} />
|
|
<AvatarNetwork size={SIZES.LG} />
|
|
<AvatarNetwork size={SIZES.XL} />
|
|
```
|
|
|
|
### Name
|
|
|
|
Use the `name` prop to set the initial letter of the `AvatarNetwork`. This will be used as the fallback display if no image url is passed to the `src` prop.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-avatarnetwork--name" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { AvatarNetwork } from '../../component-library';
|
|
<AvatarNetwork name="Arbitrum One" />
|
|
```
|
|
|
|
### Src
|
|
|
|
Use the `src` prop to set the image to be rendered of the `AvatarNetwork`.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-avatarnetwork--src" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { AvatarNetwork } from '../../component-library';
|
|
<AvatarNetwork src="./images/matic-token.png" />
|
|
<AvatarNetwork src="./images/arbitrum.svg" />
|
|
<AvatarNetwork src="./images/optimism.svg" />
|
|
<AvatarNetwork src="./images/avax-token.png" />
|
|
<AvatarNetwork src="./images/palm.svg" />
|
|
<AvatarNetwork src="./images/bsc-filled.svg" />
|
|
<AvatarNetwork src="./images/fantom-opera.svg" />
|
|
<AvatarNetwork src="./images/harmony-one.svg" />
|
|
<AvatarNetwork src="./images/aurora.png" />
|
|
```
|
|
|
|
### Show Halo
|
|
|
|
Use the `showHalo` prop to display the component with halo effect. Only works if an image url is supplied to `src`
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-avatarnetwork--show-halo" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { AvatarNetwork } from '../../component-library';
|
|
<AvatarNetwork src="./images/arbitrum.svg" showHalo/>
|
|
```
|
|
|
|
### 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 `AvatarNetwork`.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-avatarnetwork--color-background-color-and-border-color" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { COLORS } from '../../../helpers/constants/design-system';
|
|
import { AvatarNetwork } from '../../component-library';
|
|
<AvatarNetwork
|
|
backgroundColor={COLORS.GOERLI}
|
|
borderColor={COLORS.GOERLI}
|
|
name="G"
|
|
color={COLORS.PRIMARY_INVERSE}
|
|
>
|
|
G
|
|
</AvatarNetwork>
|
|
<AvatarNetwork
|
|
backgroundColor={COLORS.SEPOLIA}
|
|
borderColor={COLORS.SEPOLIA}
|
|
name="S"
|
|
color={COLORS.PRIMARY_INVERSE}
|
|
>
|
|
S
|
|
</AvatarNetwork>
|
|
``` |