import Wallet from '@mui/icons-material/Wallet' import { Box, Typography } from '@mui/material' import { useTranslation } from 'react-i18next' export const WalletMenuContentEmpty: React.FC = () => { const { t } = useTranslation() return ( {t('title.availableWalletsNotFound')} {t('message.availableWalletsNotFound')} ) }