@lifi/widget
Version:
LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.
10 lines • 655 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import WarningRounded from '@mui/icons-material/WarningRounded';
import { Typography } from '@mui/material';
import { useTranslation } from 'react-i18next';
import { AlertMessage } from './AlertMessage.js';
export const AccountNotDeployedMessage = (props) => {
const { t } = useTranslation();
return (_jsx(AlertMessage, { title: _jsx(Typography, { variant: "body2", sx: { color: 'text.primary' }, children: t('warning.message.accountNotDeployedMessage') }), icon: _jsx(WarningRounded, {}), severity: "warning", multiline: true, ...props }));
};
//# sourceMappingURL=AccountNotDeployedMessage.js.map