Files
react-test/docs/data/joy/components/badge/SimpleBadge.tsx

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

11 lines
226 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Badge from '@mui/joy/Badge';
import Typography from '@mui/joy/Typography';
export default function SimpleBadge() {
return (
<Badge>
<Typography sx={{ fontSize: 'xl' }}>🛒</Typography>
</Badge>
);
}