Files
react-test/docs/data/material/components/rating/RatingSize.tsx

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

13 lines
362 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Rating from '@mui/material/Rating';
import Stack from '@mui/material/Stack';
export default function RatingSize() {
return (
<Stack spacing={1}>
<Rating name="size-small" defaultValue={2} size="small" />
<Rating name="size-medium" defaultValue={2} />
<Rating name="size-large" defaultValue={2} size="large" />
</Stack>
);
}