import type { Control, FieldValues, Path } from "react-hook-form"; import { FormField, FormItem, FormLabel } from "~/components/ui/form"; import { Input } from "~/components/ui/input"; export default function TexttInputFormField(params: { control: Control, name: Path, label:string }) { return ( ( {params.label} )} /> ) }