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
18 lines
581 B
JavaScript
18 lines
581 B
JavaScript
import Card from '@mui/joy/Card';
|
|
import Typography from '@mui/joy/Typography';
|
|
|
|
export default function TypographyBasics() {
|
|
return (
|
|
<Card variant="outlined" sx={{ maxWidth: 400 }}>
|
|
<Typography level="h1">National Parks</Typography>
|
|
<Typography level="h2" sx={{ fontSize: 'xl', mb: 0.5 }}>
|
|
Yosemite National Park
|
|
</Typography>
|
|
<Typography>
|
|
Yosemite National Park is a national park spanning 747,956 acres (1,169.4 sq
|
|
mi; 3,025.2 km2) in the western Sierra Nevada of Central California.
|
|
</Typography>
|
|
</Card>
|
|
);
|
|
}
|