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