import React from 'react'; import { StyleSheet, TextInput } from 'react-native'; interface Props { onChange: any; onBlur: any; value: any; } export const CustomTextInput: React.FC = ({ onChange, onBlur, value, }) => { return ( onChange(value)} value={value} /> ); }; const styles = StyleSheet.create({ input: { backgroundColor: 'white', borderColor: 'transparent', height: 40, padding: 10, borderRadius: 4, }, });