You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112
  1. import { Typography } from '@mui/material';
  2. import { Box } from '@mui/system';
  3. const PageDescription = ({ description }) => {
  4. return (
  5. <Box sx={{ ml: { xs: 2, md: 12 }, my: 3 }}>
  6. <Typography sx={{ fontSize: 20 }}>{description}</Typography>
  7. </Box>
  8. );
  9. };
  10. export default PageDescription;