import { cn } from "../../lib/cn"; import { fieldNote, type FormFieldProps } from "./shared"; export function FormField({ children, className, error, hint, label, }: FormFieldProps) { return (
{label ? {label} : null} {children} {fieldNote(error, hint)}
); }