Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 16x 16x 288x | import { Typography, TypographyProps } from "@mui/material"; import { theme } from "theme"; export default function PageTitle(props: TypographyProps) { return ( <Typography {...props} className={props.className} sx={{ paddingBottom: theme.spacing(2), paddingTop: theme.spacing(2) }} variant="h1" /> ); } |