38 lines
996 B
TypeScript
38 lines
996 B
TypeScript
import React from 'react';
|
|
import { Text } from 'react-native';
|
|
|
|
import styles from './styles';
|
|
import { themes } from '../../../constants/colors';
|
|
import Touch from '../../../utils/touch';
|
|
import { CustomIcon } from '../../../lib/Icons';
|
|
|
|
interface IPasscodeButton {
|
|
text?: string;
|
|
icon?: string;
|
|
theme: string;
|
|
disabled?: boolean;
|
|
onPress?: Function;
|
|
}
|
|
|
|
const Button = React.memo(({ text, disabled, theme, onPress, icon }: IPasscodeButton) => {
|
|
const press = () => onPress && onPress(text);
|
|
|
|
return (
|
|
<Touch
|
|
style={[styles.buttonView, { backgroundColor: 'transparent' }]}
|
|
underlayColor={themes[theme].passcodeButtonActive}
|
|
rippleColor={themes[theme].passcodeButtonActive}
|
|
enabled={!disabled}
|
|
theme={theme}
|
|
onPress={press}>
|
|
{icon ? (
|
|
<CustomIcon name={icon} size={36} color={themes[theme].passcodePrimary} />
|
|
) : (
|
|
<Text style={[styles.buttonText, { color: themes[theme].passcodePrimary }]}>{text}</Text>
|
|
)}
|
|
</Touch>
|
|
);
|
|
});
|
|
|
|
export default Button;
|