import { BorderlessButton } from 'react-native-gesture-handler'; import React from 'react'; import { View } from 'react-native'; import styles from '../styles'; import i18n from '../../../i18n'; import { CustomIcon, TIconsName } from '../../CustomIcon'; import { useTheme } from '../../../theme'; import { themes } from '../../../lib/constants'; interface IBaseButton { onPress(): void; testID: string; accessibilityLabel: string; icon: TIconsName; color?: string; } const BaseButton = ({ accessibilityLabel, icon, color, ...props }: IBaseButton) => { const { theme } = useTheme(); return ( ); }; export default BaseButton;