import React from 'react'; import { View, TouchableOpacity } from 'react-native'; import { BorderlessButton } from 'react-native-gesture-handler'; import { useTheme } from '../../theme'; import { CustomIcon } from '../CustomIcon'; import styles from './styles'; import { IFooterProps } from './interfaces'; const BUTTON_HIT_SLOP = { top: 15, right: 15, bottom: 15, left: 15 }; const Footer = React.memo(({ onSearchPressed, onBackspacePressed }: IFooterProps) => { const { colors } = useTheme(); return ( ); }); export default Footer;