import { WarningRounded } from '@mui/icons-material';
import { Typography } from '@mui/material';
import { useTranslation } from 'react-i18next';
import { AlertMessage } from '../AlertMessage/AlertMessage.js';
export const FundsSufficiencyMessage = () => {
const { t } = useTranslation();
return (
}
title={
{t(`warning.message.insufficientFunds`)}
}
multilineTitle
/>
);
};