import { Control, Controller, FieldValues, Path } from 'react-hook-form'; import { FormControl, FormItem, FormLabel, FormMessage } from '@/components/ui/form'; import { Input } from '@/components/ui/input'; interface FormFieldProps { control: Control; name: Path; label: string; placeholder?: string; type?: 'text' | 'email' | 'password' | 'date'; } const FormField = ({ control, name, label, placeholder, type = 'text' }: FormFieldProps) => { return ( ( {label} )} /> ); }; export default FormField;