import React, { ReactElement } from 'react'; import { Linking, StyleSheet, Text, View } from 'react-native'; import { useTheme } from '../../../theme'; import { CustomIcon } from '../../../containers/CustomIcon'; import Button from '../../../containers/Button'; import sharedStyles from '../../Styles'; import I18n from '../../../i18n'; import { LEARN_MORE_E2EE_URL } from '../../../lib/encryption'; const GAP = 32; export const MissingRoomE2EEKey = (): ReactElement => { const { colors } = useTheme(); const styles = useStyle(); return ( {I18n.t('missing_room_e2ee_title')} {I18n.t('missing_room_e2ee_description')}