UNPKG

@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.

13 lines 702 B
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 AccountDeployedMessage = ({ ...props }) => { const { t } = useTranslation(); return (_jsx(AlertMessage, { title: _jsx(Typography, { variant: "body2", sx: { px: 1, color: 'text.primary', }, children: t('info.message.accountDeployedMessage') }), icon: _jsx(WarningRounded, {}), severity: "warning", multiline: true, ...props })); }; //# sourceMappingURL=AccountDeployedMessage.js.map