import { Image, Keyboard, KeyboardAvoidingView, Platform, Text, TextInput, TouchableWithoutFeedback, View, } from "react-native"; import type { InputFieldProps } from "@/types/type"; export const InputField = ({ label, labelStyles, icon, secureTextEntry = false, containerStyles, inputStyles, iconStyles, className, ...props }: InputFieldProps) => ( {label} {icon && ( {`${label} )} );