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