Files
react-test/docs/data/joy/components/avatar/BasicAvatars.tsx

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

13 lines
295 B
TypeScript
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 BasicAvatars() {
return (
<Box sx={{ display: 'flex', gap: 2 }}>
<Avatar />
<Avatar>JG</Avatar>
<Avatar alt="Remy Sharp" src="/static/images/avatar/1.jpg" />
</Box>
);
}