選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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;