import React, { useContext } from 'react'; import PropTypes from 'prop-types'; import AccountListItem from '../../account-list-item'; import { I18nContext } from '../../../../contexts/i18n'; import Tooltip from '../../../ui/tooltip'; import InfoIcon from '../../../ui/icon/info-icon.component'; import { SEVERITIES } from '../../../../helpers/constants/design-system'; import PermissionsConnectHeader from '../../permissions-connect-header'; export default function SignatureRequestSIWEHeader({ fromAccount, domain, isSIWEDomainValid, subjectMetadata, }) { const t = useContext(I18nContext); return (
{t('SIWEDomainWarningBody', [domain])}

} wrapperClassName="signature-request-siwe-header__tooltip" containerClassName="signature-request-siwe-header__tooltip__container" > ) } /> {fromAccount && ( )}
); } SignatureRequestSIWEHeader.propTypes = { /** * The account that is requesting permissions */ fromAccount: PropTypes.object, /** * The domain that the request is for */ domain: PropTypes.string, /** * Whether the domain is valid */ isSIWEDomainValid: PropTypes.bool, /** * The metadata for the subject. This is used to display the icon and name * and is selected from the domain in the SIWE request. */ subjectMetadata: PropTypes.object, };