mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
419bf92282
* Removing Box props description from TS component docs * Making style utility prop comments more generic |
||
---|---|---|
.. | ||
__snapshots__ | ||
avatar-network.scss | ||
avatar-network.stories.tsx | ||
avatar-network.test.tsx | ||
avatar-network.tsx | ||
avatar-network.types.ts | ||
index.ts | ||
README.mdx |
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 <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` The fallback display of the `AvatarNetwork` is a circle with the initial letter of the network name. The size of the initial letter is calculated based on the size of the `AvatarNetwork` component. <Canvas> <Story id="components-componentlibrary-avatarnetwork--size-story" /> </Canvas> ```jsx import { AvatarNetwork, AvatarNetworkSize } from '../../component-library'; <AvatarNetwork size={AvatarNetworkSize.Xs} /> <AvatarNetwork size={AvatarNetworkSize.Sm} /> <AvatarNetwork size={AvatarNetworkSize.Md} /> <AvatarNetwork size={AvatarNetworkSize.Lg} /> <AvatarNetwork size={AvatarNetworkSize.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. Use `Text` component props to change the `variant`, `font-weight`, `font-family`, etc. <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 { TextColor, BackgroundColor, BorderColor } from '../../../helpers/constants/design-system'; import { AvatarNetwork } from '../../component-library'; <AvatarNetwork backgroundColor={BackgroundColor.goerli} borderColor={BorderColor.goerli} name="G" color={Color.goerliInverse} > G </AvatarNetwork> <AvatarNetwork backgroundColor={BackgroundColor.sepolia} borderColor={BorderColor.sepolia} name="S" color={Color.goerliInverse} > S </AvatarNetwork> ```