import React from 'react'; import { Text, TouchableOpacity } from 'react-native'; import styles from '../styles'; import I18n from '../../../i18n'; import { themes } from '../../../constants/colors'; import { useTheme } from '../../../theme'; interface IMessageBoxFixedMentionItem { item: { username: string; }; onPress: Function; } const FixedMentionItem = ({ item, onPress }: IMessageBoxFixedMentionItem) => { const { theme } = useTheme(); return ( onPress(item)}> {item.username} {item.username === 'here' ? I18n.t('Notify_active_in_this_room') : I18n.t('Notify_all_in_this_room')} ); }; export default FixedMentionItem;