ConstThe properties for the Avatar component
A rendered Avatar component
// Basic usage with text
<Avatar>JD</Avatar>
// With image
<Avatar
alt="User Name"
src="/path/to/image.jpg"
/>
// With custom styling
<Avatar
sx={{
bgcolor: 'primary.main',
width: 56,
height: 56
}}
>
<PersonIcon />
</Avatar>
A customized Material-UI Avatar component.