Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
22 lines
551 B
JavaScript
22 lines
551 B
JavaScript
import Stack from '@mui/joy/Stack';
|
|
import Person from '@mui/icons-material/Person';
|
|
|
|
export default function IconFontSizes() {
|
|
return (
|
|
<Stack
|
|
spacing={2}
|
|
direction="row"
|
|
sx={{ gridColumn: '1 / -1', alignItems: 'center', justifyContent: 'center' }}
|
|
>
|
|
<Person fontSize="xs" />
|
|
<Person fontSize="sm" />
|
|
<Person fontSize="md" />
|
|
<Person fontSize="lg" />
|
|
<Person fontSize="xl" />
|
|
<Person fontSize="xl2" />
|
|
<Person fontSize="xl3" />
|
|
<Person fontSize="xl4" />
|
|
</Stack>
|
|
);
|
|
}
|