Avatar
An avatar is a graphical representation of a user's identity.
Introduction
The Avatar component can be used to display graphical information about a user in places such as menus, tables, and chats.
<Avatar />
Playground
Basics
import Avatar from '@mui/joy/Avatar';
By default, the Avatar component displays a generic Person Icon. You can replace this icon with a text string or an image.
Text Avatar
Wrap the Avatar component around a string to display text. Note that the Avatar is designed to comfortably fit two letters at most—for instance, a user's initials:
Image Avatar
Insert images into the Avatar by defining a path inside the src
prop, just like you would with an HTML <img>
element.
Make sure to to write a meaningful description for the alt
prop.
Image fallbacks
If an error occurs while loading the Avatar's image, it will fall back to the following alternatives (in this order):
- The provided child string
- The first letter of the alt text
- The default generic icon
Customization
Variants
The Avatar component supports Joy UI's four global variants: solid
, soft
(default), outlined
, and plain
.
Usage with Avatar Group
import AvatarGroup from '@mui/joy/AvatarGroup';
Use the Avatar Group component to group multiple Avatars together.
Quantity within a group
The Avatar Group does not provide built-in props to control the maximum or the total number of Avatars within a group. This is intentionally left open-ended to give you broader options for customization.
The demo below shows an example of an Avatar Group that maxes out at five; all Avatars beyond the first four are lumped together in the fifth Avatar, which displays the total number hidden:
Consistent appearance
The Avatar component exposes meaningful CSS variables to communicate with Avatar Group. You can apply those variables to other non-Avatar components to mimic the Avatar's appearance inside of a group. This customization technique makes your interface more resilient to changes, as any style changes applied to the Avatar will also be applied to the other components in the group.
Here is an example using an Icon Button with its styles defined by the Avatar's CSS variables:
Overlapping order
By default, the first Avatar in the group sits behind the second, which sits behind the third, and so on.
You can reverse the overlapping order by reversing the order of the Avatars and using the CSS flexDirection: row-reverse
property in the Avatar Group:
Vertical stacking
To render the Avatar Group vertically, add the CSS writing-mode: vertical-rl
property and rotate the interior element (if one is present) by -90 degrees.
Usage with Badge
import Badge from '@mui/joy/Badge';
Combine the Avatar component with the Badge to visually communicate more complex information about a user's status:
CSS variable playground
Play around with the CSS variables available to the Avatar component to see how the design changes.
You can use these to customize the component with both the sx
prop and the theme.
<AvatarGroup >
CSS Variables