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
15 lines
369 B
TypeScript
15 lines
369 B
TypeScript
import Box from '@mui/joy/Box';
|
|
import Avatar from '@mui/joy/Avatar';
|
|
|
|
export default function FallbackAvatars() {
|
|
return (
|
|
<Box sx={{ display: 'flex', gap: 2 }}>
|
|
<Avatar alt="Remy Sharp" src="/broken-image.jpg">
|
|
BT
|
|
</Avatar>
|
|
<Avatar alt="Remy Sharp" src="/broken-image.jpg" />
|
|
<Avatar src="/broken-image.jpg" />
|
|
</Box>
|
|
);
|
|
}
|