Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

EmptyCart.tsx 525B

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