import React from "react"; import { TextInput, StyleSheet, StyleProp, ViewStyle, KeyboardTypeOptions } from "react-native"; interface NormalInputProps { placeholder: string; extendedStyle?: StyleProp; onChangeText: (text: string) => void; type?: KeyboardTypeOptions; secureTextEntry?: boolean; value?: string; textContentType?: "oneTimeCode"; } const NormalInput: React.FC = ({ placeholder, extendedStyle, type, onChangeText, secureTextEntry = false, value, textContentType, }) => { return ( onChangeText(value)} textContentType={textContentType} /> ); }; const styles = StyleSheet.create({ textInput: { maxWidth: "100%", fontSize: 16, borderWidth: 1, padding: 20, borderRadius: 12, borderColor: "#bbbbbb", }, }); export default NormalInput;