import React from 'react' import { useSelector } from 'react-redux' import PropTypes from 'prop-types' import Tooltip from '../tooltip' import { getSelectedAccount } from '../../../selectors' import InfoIcon from '../icon/info-icon.component' import { useI18nContext } from '../../../hooks/useI18nContext' export default function AccountMismatchWarning ({ address }) { const selectedAccount = useSelector(getSelectedAccount) const t = useI18nContext() if (selectedAccount.address === address) { return null } return ( {t('notCurrentAccount')}

} wrapperClassName="account-mismatch-warning__tooltip-wrapper" containerClassName="account-mismatch-warning__tooltip-container" >
) } AccountMismatchWarning.propTypes = { address: PropTypes.string.isRequired, }