mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
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';
|
|
import { SEVERITIES } from '../../../helpers/constants/design-system';
|
|
|
|
export default function AccountMismatchWarning({ address }) {
|
|
const selectedAccount = useSelector(getSelectedAccount);
|
|
const t = useI18nContext();
|
|
if (selectedAccount.address === address) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Tooltip
|
|
position="bottom"
|
|
html={<p>{t('notCurrentAccount')}</p>}
|
|
wrapperClassName="account-mismatch-warning__tooltip-wrapper"
|
|
containerClassName="account-mismatch-warning__tooltip-container"
|
|
>
|
|
<div className="account-mismatch-warning__tooltip-container-icon">
|
|
<InfoIcon severity={SEVERITIES.WARNING} />
|
|
</div>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
AccountMismatchWarning.propTypes = {
|
|
address: PropTypes.string.isRequired,
|
|
};
|