Avatar
Avatar represents a person that contains an image or initials which can also be presented in a group with multiple avatars.
Introduction
The avatar component is usually seen for displaying user information in places such as menus, tables, and chats.
<Avatar />
Playground
Component
After installation, you can start building with this component using the following basic elements:
import Avatar from '@mui/joy/Avatar';
export default function MyApp() {
return <Avatar />;
}
Sizes
The avatar components comes with three sizes out of the box: sm
, md
(the default), and lg
.
Image
Insert images in the avatar by using a path inside the src
prop, similar to how you'd do in the HTML <img>
element. Make sure to to write a meaningful description in the alt
prop.
Image fallbacks
If an error occurs while loading the avatar image, it will fallback to alternatives in the following order:
- The provided children string.
- The first letter of the
alt
text. - A generic icon.
With a badge
Combine the avatar component with the Badge
to extend what you can communicate with it.
Group
Use AvatarGroup
component to group multiple avatars together.
import AvatarGroup from '@mui/joy/AvatarGroup';
Quantity within a group
The AvatarGroup
does not provide built-in props to control the maximum and the total number of avatars within a group. This is because customization is broader if you have full control of the logic.
Use the snippet below as insipiration to create that:
Ellipsis action
Avatar
exposes meaningful CSS variables to communicate with AvatarGroup
. You can apply those variables to other components to mimic the avatar appearance inside a group. This customization technique makes your interface more resilient to changes.
Here is an example of using IconButton
component to create an ellipsis action:
Overlapping order
By default, the first avatar in the group stays behind the second and so on. You can reverse the overlapping order by reversing avatars position and using the CSS flexDirection: row-reverse
property in the AvatarGroup
.
Vertical
To render the AvatarGroup
vertically, add the CSS writing-mode: vertical-rl
property to the it and rotate the extra element, if existent, by -90 degrees.
CSS variables
Play around with all the CSS variables available in the slider component to see how the design changes.
You can use those to customize the component on both the sx
prop and the theme.
<AvatarGroup >
CSS Variables