Files
react-test/docs/data/joy/components/linear-progress/LinearProgressSizes.tsx

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

13 lines
316 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Stack from '@mui/joy/Stack';
import LinearProgress from '@mui/joy/LinearProgress';
export default function LinearProgressSizes() {
return (
<Stack spacing={2} sx={{ flex: 1 }}>
<LinearProgress size="sm" />
<LinearProgress size="md" />
<LinearProgress size="lg" />
</Stack>
);
}