18 lines
515 B
JavaScript
18 lines
515 B
JavaScript
|
|
import Avatar from '@mui/material/Avatar';
|
||
|
|
import Stack from '@mui/material/Stack';
|
||
|
|
import { deepOrange, green } from '@mui/material/colors';
|
||
|
|
import AssignmentIcon from '@mui/icons-material/Assignment';
|
||
|
|
|
||
|
|
export default function VariantAvatars() {
|
||
|
|
return (
|
||
|
|
<Stack direction="row" spacing={2}>
|
||
|
|
<Avatar sx={{ bgcolor: deepOrange[500] }} variant="square">
|
||
|
|
N
|
||
|
|
</Avatar>
|
||
|
|
<Avatar sx={{ bgcolor: green[500] }} variant="rounded">
|
||
|
|
<AssignmentIcon />
|
||
|
|
</Avatar>
|
||
|
|
</Stack>
|
||
|
|
);
|
||
|
|
}
|