Avatar

The Avatar component is used to represent user, and displays the profile picture, initials or fallback icon.

    SourceTheme Source@chakra-ui/avatar

Import#

Chakra UI exports 3 avatar-related components:

  • Avatar.Root: The image that represents the user.
  • Avatar.Badge: A wrapper that displays its content on the right corner of the avatar.
  • Avatar.Group: A wrapper to stack multiple Avatars together.
import { Avatar } from '@chakra-ui/react'

Usage#

<Wrap>
<WrapItem>
<Avatar.Root name='Dan Abrahmov' src='https://bit.ly/dan-abramov'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</WrapItem>
<WrapItem>
<Avatar.Root name='Kola Tioluwani' src='https://bit.ly/tioluwani-kolawole'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</WrapItem>
<WrapItem>
<Avatar.Root name='Kent Dodds' src='https://bit.ly/kent-c-dodds'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</WrapItem>
<WrapItem>
<Avatar.Root name='Ryan Florence' src='https://bit.ly/ryan-florence'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</WrapItem>
<WrapItem>
<Avatar.Root name='Prosper Otemuyiwa' src='https://bit.ly/prosper-baba'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</WrapItem>
<WrapItem>
<Avatar.Root name='Christian Nwamba' src='https://bit.ly/code-beast'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</WrapItem>
<WrapItem>
<Avatar.Root name='Segun Adebayo' src='https://bit.ly/sage-adebayo'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</WrapItem>
</Wrap>

Avatar Sizes#

The Avatar component comes in 7 sizes.

<Wrap>
<WrapItem>
<Avatar.Root
size='2xs'
name='Dan Abrahmov'
src='https://bit.ly/dan-abramov'
>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</WrapItem>
<WrapItem>
<Avatar.Root
size='xs'
name='Kola Tioluwani'
src='https://bit.ly/tioluwani-kolawole'
>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>{' '}
</WrapItem>
<WrapItem>
<Avatar.Root size='sm' name='Kent Dodds' src='https://bit.ly/kent-c-dodds'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>{' '}
</WrapItem>
<WrapItem>
<Avatar.Root
size='md'
name='Ryan Florence'
src='https://bit.ly/ryan-florence'
>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>{' '}
</WrapItem>
<WrapItem>
<Avatar.Root
size='lg'
name='Prosper Otemuyiwa'
src='https://bit.ly/prosper-baba'
>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>{' '}
</WrapItem>
<WrapItem>
<Avatar.Root
size='xl'
name='Christian Nwamba'
src='https://bit.ly/code-beast'
>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>{' '}
</WrapItem>
<WrapItem>
<Avatar.Root
size='2xl'
name='Segun Adebayo'
src='https://bit.ly/sage-adebayo'
>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>{' '}
</WrapItem>
</Wrap>

Avatar Fallbacks#

If there is an error loading the src of the avatar, there are 2 fallbacks:

  • If there's a name prop, we use it to generate the initials and a random, accessible background color.
  • If there's no name prop, we use a default avatar.
<Stack direction='row'>
<Avatar.Root name='Oshigaki Kisame' src='https://bit.ly/broken-link'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
<Avatar.Root name='Sasuke Uchiha' src='https://bit.ly/broken-link'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
<Avatar.Root src='https://bit.ly/broken-link'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</Stack>

Customize the fallback avatar#

You can customize the background color and icon of the fallback avatar icon to match your design requirements.

  • To update the background, pass the usual bg prop.
  • To update the icon svg, pass the icon prop.
<Avatar.Group spacing='1rem'>
<Avatar.Root bg='red.500' icon={<AiOutlineUser fontSize='1.5rem' />}>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
<Avatar.Root bg='teal.500'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</Avatar.Group>

Avatar with badge#

In some products, you might need to show a badge on the right corner of the avatar. We call this a badge. Here's an example that shows if the user is online:

<Stack direction='row' spacing={4}>
<Avatar.Root>
<Avatar.Image />
<Avatar.Fallback />
<Avatar.Badge boxSize='1.25em' bg='green.500' />
</Avatar.Root>
{/* You can also change the borderColor and bg of the badge */}
<Avatar.Root>
<Avatar.Image />
<Avatar.Fallback />
<Avatar.Badge borderColor='papayawhip' bg='tomato' boxSize='1.25em' />
</Avatar.Root>
</Stack>

Note the use of em for the size of the Avatar.Badge. This is useful to size the badge relative to the avatar font size.

Avatar.Group#

In some cases, you might need to stack avatars as a group. Use the Avatar.Group component.

  • To limit the amount of avatars to show, use the max prop. It'll truncate the avatars and show a "+X" label (where X is the remaining avatars).
  • To size all the avatars equally, pass the size prop.
  • To adjust the spacing between the avatars, pass the spacing prop.
<Avatar.Group size='md' max={2}>
<Avatar.Root name='Ryan Florence' src='https://bit.ly/ryan-florence'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
<Avatar.Root name='Segun Adebayo' src='https://bit.ly/sage-adebayo'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
<Avatar.Root name='Kent Dodds' src='https://bit.ly/kent-c-dodds'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
<Avatar.Root name='Prosper Otemuyiwa' src='https://bit.ly/prosper-baba'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
<Avatar.Root name='Christian Nwamba' src='https://bit.ly/code-beast'>
<Avatar.Image />
<Avatar.Fallback />
</Avatar.Root>
</Avatar.Group>

Changing the initials logic#

Added getInitials prop to allow users to manage how initials are generated from name. By default we merge the first characters of each word in the name prop.

Edit this page on GitHub

Proudly made inNigeria by Segun Adebayo

Deployed by â–² Vercel