import styled from '@emotion/styled'; import Alert from 'sentry/components/alert'; import ExternalLink from 'sentry/components/links/externalLink'; import {tct} from 'sentry/locale'; import space from 'sentry/styles/space'; import getPendingInvite from 'sentry/utils/getPendingInvite'; const TwoFactorRequired = () => !getPendingInvite() ? null : ( {tct( 'You have been invited to an organization that requires [link:two-factor authentication].' + ' Setup two-factor authentication below to join your organization.', { link: , } )} ); const StyledAlert = styled(Alert)` margin: ${space(3)} 0; `; export default TwoFactorRequired;