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.

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;