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