import { BorderlessButton } from 'react-native-gesture-handler'; import React from 'react'; import styles from '../styles'; import { CustomIcon } from '../../../lib/Icons'; import { useTheme } from '../../../theme'; import { themes } from '../../../lib/constants'; import { testProps } from '../../../lib/methods/testProps'; 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;