Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
63 lines
1.6 KiB
JavaScript
63 lines
1.6 KiB
JavaScript
import { styled } from '@mui/material/styles';
|
|
import Badge from '@mui/material/Badge';
|
|
import Avatar from '@mui/material/Avatar';
|
|
import Stack from '@mui/material/Stack';
|
|
|
|
const StyledBadge = styled(Badge)(({ theme }) => ({
|
|
'& .MuiBadge-badge': {
|
|
backgroundColor: '#44b700',
|
|
color: '#44b700',
|
|
boxShadow: `0 0 0 2px ${theme.palette.background.paper}`,
|
|
'&::after': {
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
width: '100%',
|
|
height: '100%',
|
|
borderRadius: '50%',
|
|
animation: 'ripple 1.2s infinite ease-in-out',
|
|
border: '1px solid currentColor',
|
|
content: '""',
|
|
},
|
|
},
|
|
'@keyframes ripple': {
|
|
'0%': {
|
|
transform: 'scale(.8)',
|
|
opacity: 1,
|
|
},
|
|
'100%': {
|
|
transform: 'scale(2.4)',
|
|
opacity: 0,
|
|
},
|
|
},
|
|
}));
|
|
|
|
const SmallAvatar = styled(Avatar)(({ theme }) => ({
|
|
width: 22,
|
|
height: 22,
|
|
border: `2px solid ${theme.palette.background.paper}`,
|
|
}));
|
|
|
|
export default function BadgeAvatars() {
|
|
return (
|
|
<Stack direction="row" spacing={2}>
|
|
<StyledBadge
|
|
overlap="circular"
|
|
anchorOrigin={{ vertical: 'bottom', horizontal: 'right' }}
|
|
variant="dot"
|
|
>
|
|
<Avatar alt="Remy Sharp" src="/static/images/avatar/1.jpg" />
|
|
</StyledBadge>
|
|
<Badge
|
|
overlap="circular"
|
|
anchorOrigin={{ vertical: 'bottom', horizontal: 'right' }}
|
|
badgeContent={
|
|
<SmallAvatar alt="Remy Sharp" src="/static/images/avatar/1.jpg" />
|
|
}
|
|
>
|
|
<Avatar alt="Travis Howard" src="/static/images/avatar/2.jpg" />
|
|
</Badge>
|
|
</Stack>
|
|
);
|
|
}
|