Files
react-test/docs/data/joy/components/avatar/AvatarSizes.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
439 B
JavaScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Avatar from '@mui/joy/Avatar';
import Box from '@mui/joy/Box';
export default function AvatarSizes() {
return (
<Box sx={{ display: 'flex', gap: 2, alignItems: 'center' }}>
<Avatar alt="Remy Sharp" src="/static/images/avatar/1.jpg" size="sm" />
<Avatar alt="Remy Sharp" src="/static/images/avatar/1.jpg" size="md" />
<Avatar alt="Remy Sharp" src="/static/images/avatar/1.jpg" size="lg" />
</Box>
);
}