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-with-badge
Nidhi Kumari 4fcbaae32f
housekeeping for avatar network (#16663)
* added housekeeping for avatar network

* fixed alt

* updated story in Readme

* fixed indentation and added network src

* updated SIZES for avatar network

* updated snapshot

* updated docs and props

* updated name of avatar

* removed comments

* updated avatar network component

* updated readme

* updated story for badge

* added constants to the root
2022-12-15 22:58:42 +05:30
..
avatar-with-badge.constants.js Added AvatarBadge component (#15676) 2022-10-12 23:49:12 +05:30
avatar-with-badge.js Added AvatarBadge component (#15676) 2022-10-12 23:49:12 +05:30
avatar-with-badge.scss Added AvatarBadge component (#15676) 2022-10-12 23:49:12 +05:30
avatar-with-badge.stories.js housekeeping for avatar network (#16663) 2022-12-15 22:58:42 +05:30
avatar-with-badge.test.js housekeeping for avatar network (#16663) 2022-12-15 22:58:42 +05:30
index.js Added AvatarBadge component (#15676) 2022-10-12 23:49:12 +05:30
README.mdx housekeeping for avatar network (#16663) 2022-12-15 22:58:42 +05:30

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

import { AvatarWithBadge } from './avatar-with-badge';

# AvatarWithBadge

The `AvatarWithBadge` is a wrapper component that adds badge display options to avatars.

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

## Props

The `AvatarWithBadge` accepts all props below 

<ArgsTable of={AvatarWithBadge} />

### Badge Position

Use the `badgePosition` prop to set the position of the badge, it can have two values `Top` and `Bottom`

<Canvas>
  <Story id="ui-components-component-library-avatar-with-badge-avatar-with-badge-stories-js--badge-position" />
</Canvas>

### Badge

Used to define the badge component to be rendered inside the `AvatarWithBadge`

### Badge Props

The required props to be passed to the badge.

### Children

The children to be rendered inside the AvatarWithBadge. Generally used with the `AvatarAccount`