Avatar

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

Import#

Chakra UI exports 3 avatar-related components:

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

Usage#

<DarkMode>
<Wrap>
<WrapItem>
<Avatar
name="Might Guy"
src="https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1700&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Sakura Haruno"
src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3900&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Kakashi Hatake"
src="https://images.unsplash.com/photo-1542847970-584270eb111b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1233&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Naruto Uzumaki"
src="https://images.unsplash.com/photo-1599566150163-29194dcaad36?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Sasuke Uchiha"
src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixid=MnwxMjA3fDB8MHxzZWFyY2h8N3x8YXZhdGFyfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Isshiki Otsutsuki"
src="https://images.unsplash.com/photo-1543610892-0b1f7e6d8ac1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Kawaki"
src="https://images.unsplash.com/photo-1626586066636-a1523dd2141b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
</WrapItem>
</Wrap>
</DarkMode>
<Wrap>
<WrapItem>
<Avatar
name="Might Guy"
src="https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1700&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Sakura Haruno"
src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3900&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Kakashi Hatake"
src="https://images.unsplash.com/photo-1542847970-584270eb111b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1233&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Naruto Uzumaki"
src="https://images.unsplash.com/photo-1599566150163-29194dcaad36?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Sasuke Uchiha"
src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixid=MnwxMjA3fDB8MHxzZWFyY2h8N3x8YXZhdGFyfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Isshiki Otsutsuki"
src="https://images.unsplash.com/photo-1543610892-0b1f7e6d8ac1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
name="Kawaki"
src="https://images.unsplash.com/photo-1626586066636-a1523dd2141b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
</WrapItem>
</Wrap>

Avatar Sizes#

The Avatar component comes in 7 sizes.

<DarkMode>
<Wrap>
<WrapItem>
<Avatar
size="2xs"
name="Might Guy"
src="https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1700&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
size="xs"
name="Sakura Haruno"
src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3900&q=80"
/>{" "}
</WrapItem>
<WrapItem>
<Avatar
size="sm"
name="Kakashi Hatake"
src="https://images.unsplash.com/photo-1542847970-584270eb111b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1233&q=80"
/>{" "}
</WrapItem>
<WrapItem>
<Avatar
size="md"
name="Naruto Uzumaki"
src="https://images.unsplash.com/photo-1599566150163-29194dcaad36?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>{" "}
</WrapItem>
<WrapItem>
<Avatar size="lg" name="Sasuke Uchiha" src="" />{" "}
</WrapItem>
<WrapItem>
<Avatar
size="xl"
name="Isshiki Otsutsuki"
src="https://images.unsplash.com/photo-1543610892-0b1f7e6d8ac1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>{" "}
</WrapItem>
<WrapItem>
<Avatar size="2xl" name="Kawaki" src="" />{" "}
</WrapItem>
</Wrap>
</DarkMode>
<Wrap>
<WrapItem>
<Avatar
size="2xs"
name="Might Guy"
src="https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1700&q=80"
/>
</WrapItem>
<WrapItem>
<Avatar
size="xs"
name="Sakura Haruno"
src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3900&q=80"
/>{" "}
</WrapItem>
<WrapItem>
<Avatar
size="sm"
name="Kakashi Hatake"
src="https://images.unsplash.com/photo-1542847970-584270eb111b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1233&q=80"
/>{" "}
</WrapItem>
<WrapItem>
<Avatar
size="md"
name="Naruto Uzumaki"
src="https://images.unsplash.com/photo-1599566150163-29194dcaad36?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>{" "}
</WrapItem>
<WrapItem>
<Avatar size="lg" name="Sasuke Uchiha" src="" />{" "}
</WrapItem>
<WrapItem>
<Avatar
size="xl"
name="Isshiki Otsutsuki"
src="https://images.unsplash.com/photo-1543610892-0b1f7e6d8ac1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>{" "}
</WrapItem>
<WrapItem>
<Avatar size="2xl" name="Kawaki" src="" />{" "}
</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.
<DarkMode>
<Stack direction="row">
<Avatar name="Oshigaki Kisame" src="https://bit.ly/broken-link" />
<Avatar
name="Sasuke Uchiha"
src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixid=MnwxMjA3fDB8MHxzZWFyY2h8N3x8YXZhdGFyfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60https://bit.ly/broken-link"
/>
<Avatar src="https://bit.ly/broken-link" />
</Stack>
</DarkMode>
<Stack direction="row">
<Avatar name="Oshigaki Kisame" src="https://bit.ly/broken-link" />
<Avatar
name="Sasuke Uchiha"
src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixid=MnwxMjA3fDB8MHxzZWFyY2h8N3x8YXZhdGFyfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60https://bit.ly/broken-link"
/>
<Avatar src="https://bit.ly/broken-link" />
</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.
<DarkMode>
<AvatarGroup spacing="1rem">
<Avatar bg="red.500" icon={<AiOutlineUser fontSize="1.5rem" />} />
<Avatar bg="teal.500" />
</AvatarGroup>
</DarkMode>
<AvatarGroup spacing="1rem">
<Avatar bg="red.500" icon={<AiOutlineUser fontSize="1.5rem" />} />
<Avatar bg="teal.500" />
</AvatarGroup>

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:

<DarkMode>
<Stack direction="row" spacing={4}>
<Avatar>
<AvatarBadge boxSize="1.25em" bg="green.500" />
</Avatar>
{/* You can also change the borderColor and bg of the badge */}
<Avatar>
<AvatarBadge borderColor="papayawhip" bg="tomato" boxSize="1.25em" />
</Avatar>
</Stack>
</DarkMode>
<Stack direction="row" spacing={4}>
<Avatar>
<AvatarBadge boxSize="1.25em" bg="green.500" />
</Avatar>
{/* You can also change the borderColor and bg of the badge */}
<Avatar>
<AvatarBadge borderColor="papayawhip" bg="tomato" boxSize="1.25em" />
</Avatar>
</Stack>

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

AvatarGroup#

In some cases, you might need to stack avatars as a group. Use the AvatarGroup 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.
<DarkMode>
<AvatarGroup size="md" max={2}>
<Avatar
borderColor="#121241"
name="Naruto Uzumaki"
src="https://images.unsplash.com/photo-1599566150163-29194dcaad36?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
<Avatar
borderColor="#121241"
name="Kawaki"
src="https://images.unsplash.com/photo-1626586066636-a1523dd2141b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
<Avatar
borderColor="#121241"
name="Kakashi Hatake"
src="https://images.unsplash.com/photo-1542847970-584270eb111b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1233&q=80"
/>
<Avatar
borderColor="#121241"
name="Sasuke Uchiha"
src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixid=MnwxMjA3fDB8MHxzZWFyY2h8N3x8YXZhdGFyfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60"
/>
<Avatar
borderColor="#121241"
name="Isshiki Otsutsuki"
src="https://images.unsplash.com/photo-1543610892-0b1f7e6d8ac1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
</AvatarGroup>
</DarkMode>
<AvatarGroup size="md" max={2}>
<Avatar
name="Naruto Uzumaki"
src="https://images.unsplash.com/photo-1599566150163-29194dcaad36?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
<Avatar
name="Kawaki"
src="https://images.unsplash.com/photo-1626586066636-a1523dd2141b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
<Avatar
name="Kakashi Hatake"
src="https://images.unsplash.com/photo-1542847970-584270eb111b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1233&q=80"
/>
<Avatar
name="Sasuke Uchiha"
src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixid=MnwxMjA3fDB8MHxzZWFyY2h8N3x8YXZhdGFyfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60"
/>
<Avatar
name="Isshiki Otsutsuki"
src="https://images.unsplash.com/photo-1543610892-0b1f7e6d8ac1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1234&q=80"
/>
</AvatarGroup>

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.

Props#

Avatar Props#

Avatar composes the Box component so you can pass all its props. These are props specific to the Avatar component:

colorScheme

Description

Color Schemes for Avatar are not implemented in the default theme. You can extend the theme to implement them.

Type
"whiteAlpha" | "blackAlpha" | "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram"

getInitials

Description

Function to get the initials to display

Type
((name: string) => string)

icon

Description

The default avatar used as fallback when name, and src is not specified.

Type
React.ReactElement

iconLabel

Type
string

loading

Description

Defines loading strategy

Type
"eager" | "lazy"

name

Description

The name of the person in the avatar. - if src has loaded, the name will be used as the alt attribute of the img - If src is not loaded, the name will be used to create the initials

Type
string

onError

Description

Function called when image failed to load

Type
(() => void)

showBorder

Description

If true, the Avatar will show a border around it. Best for a group of avatars

Type
boolean

size

Type
"sm" | "md" | "lg" | "xl" | "2xl" | "full" | "2xs" | "xs"
Default
"md"

src

Description

The image url of the Avatar

Type
string

srcSet

Description

List of sources to use for different screen resolutions

Type
string

variant

Description

Variants for Avatar are not implemented in the default theme. You can extend the theme to implement them.

Type
string

Avatar Group Props#

AvatarGroup composes the Box component so you can pass all its props. These are props specific to the AvatarGroup component:

childrenrequired

Description

The children of the avatar group. Ideally should be Avatar and MoreIndicator components

Type
ReactNode

colorScheme

Description

Color Schemes for AvatarGroup are not implemented in the default theme. You can extend the theme to implement them.

Type
"whiteAlpha" | "blackAlpha" | "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram"

max

Description

The maximum number of visible avatars

Type
number

size

Type
"sm" | "md" | "lg" | "xl" | "2xl" | "full" | "2xs" | "xs"

spacing

Description

The space between the avatars in the group.

Type
SystemProps["margin"]

variant

Description

Variants for AvatarGroup are not implemented in the default theme. You can extend the theme to implement them.

Type
string

© 2021, Made with ❤️ by Creative Tim & Simmmple for a better web

  • Creative Tim
  • Simmmple
  • Blog
  • License