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 '../../constants/colors'; import { IMessageCallButton } from './interfaces'; const CallButton = React.memo(({ theme, callJitsi }: IMessageCallButton) => ( <> {I18n.t('Click_to_join')} )); CallButton.displayName = 'CallButton'; export default CallButton;