ItemAccordion.jsx 285 B

12345678910111213
  1. import Typography from "@mui/material/Typography";
  2. export const ItemAccordion = ({text, size='h6'}) => {
  3. return (
  4. <Typography
  5. variant={size}
  6. color='#616161'
  7. letterSpacing='1px'
  8. >
  9. {text}
  10. </Typography>
  11. )
  12. }