import React from 'react'; import { Text } from 'react-native'; import styles from './styles'; import { themes } from '../../../lib/constants'; import Touch from '../../../utils/touch'; import { CustomIcon, TIconsName } from '../../CustomIcon'; import { useTheme } from '../../../theme'; interface IPasscodeButton { text?: string; icon?: TIconsName; disabled?: boolean; onPress?: Function; } const Button = React.memo(({ text, disabled, onPress, icon }: IPasscodeButton) => { const { theme } = useTheme(); const press = () => onPress && onPress(text); return ( {icon ? ( ) : ( {text} )} ); }); export default Button;