import { InputFieldProps } from "@/types/type"; import { KeyboardAvoidingView, Text, TouchableWithoutFeedback, View ,Image, TextInput, Platform, Keyboard} from "react-native"; import tw from "twrnc"; const InputField=({ label,labelStyle,icon, secureTextEntry=false, containerStyle,inputStyle,iconStyle,style,...props }:InputFieldProps)=>( {label} {icon && ( )} ) export default InputField;