import WarningRounded from '@mui/icons-material/WarningRounded' import type { BoxProps } from '@mui/material' import { Typography } from '@mui/material' import { useTranslation } from 'react-i18next' import { AlertMessage } from './AlertMessage.js' export const AccountDeployedMessage: React.FC = ({ ...props }) => { const { t } = useTranslation() return ( {t('info.message.accountDeployedMessage')} } icon={} severity="warning" multiline {...props} /> ) }