Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

EmptyCart.jsx 365B

1234567891011121314151617181920
  1. import { Typography } from '@mui/material';
  2. const EmptyCart = () => {
  3. return (
  4. <Typography
  5. sx={{
  6. mr: { lg: 1 },
  7. mt: 6,
  8. height: '100%',
  9. textAlign: 'center',
  10. fontSize: { xs: 36, md: 45 },
  11. mb: { md: 5 },
  12. }}
  13. >
  14. Your cart is currently empty
  15. </Typography>
  16. );
  17. };
  18. export default EmptyCart;