// ** MUI Imports import Card from '@mui/material/Card' import { styled } from '@mui/material/styles' import CardHeader from '@mui/material/CardHeader' import Typography from '@mui/material/Typography' import CardContent from '@mui/material/CardContent' import Grid, { GridProps } from '@mui/material/Grid' const DemoGrid = styled(Grid)(({ theme }) => ({ [theme.breakpoints.down('sm')]: { paddingTop: `${theme.spacing(1)} !important` } })) const TypographyHeadings = () => { return ( H1 Heading 1 font-size: 96px / line-height: 112px / font-weight: 500 H2 Heading 2 font-size: 60px / line-height: 72px / font-weight: 500 H3 Heading 3 font-size: 48px / line-height: 56px / font-weight: 500 H4 Heading 4 font-size: 32px / line-height: 40px / font-weight: 500 H5 Heading 5 font-size: 24px / line-height: 32px / font-weight: 500 H6 Heading 6 font-size: 20px / line-height: 32px / font-weight: 500 ) } export default TypographyHeadings