import React from 'react'; import { Text, View } from 'react-native'; import Touchable from './Touchable'; import { BUTTON_HIT_SLOP } from './utils'; import styles from './styles'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../lib/constants'; import { IMessageCallButton } from './interfaces'; import { useTheme } from '../../theme'; const CallButton = React.memo(({ callJitsi }: IMessageCallButton) => { const { theme } = useTheme(); return ( <> {I18n.t('Click_to_join')} ); }); CallButton.displayName = 'CallButton'; export default CallButton;