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 658 B
import { jsx as _jsx } from "react/jsx-runtime"; import Wallet from '@mui/icons-material/Wallet'; import { Typography } from '@mui/material'; import { useTranslation } from 'react-i18next'; import { AlertMessage } from './AlertMessage.js'; export const ToAddressRequiredMessage = ({ ...props }) => { const { t } = useTranslation(); return (_jsx(AlertMessage, { title: _jsx(Typography, { variant: "body2", sx: { px: 1, color: 'text.primary', }, children: t('info.message.toAddressIsRequired') }), icon: _jsx(Wallet, {}), multiline: true, ...props })); }; //# sourceMappingURL=ToAddressRequiredMessage.js.map