A React component used to show users avatar or initials
npm install @chakra-ui/avatarThe Avatar component is used to represent user, and displays the profile
picture, initials or fallback icon.
``sh
yarn add @chakra-ui/avatar
npm i @chakra-ui/avatar
`
`jsx`
import { Avatar, AvatarGroup } from "@chakra-ui/avatar"
Simply import the Avatar component and pass it the image src and name of the
user in the avatar.
`jsx`
Stack Avatars in a group by using the AvatarGroup component
`jsx``