import type { ReactNode } from 'react' interface FieldProps { label: ReactNode hint?: ReactNode htmlFor?: string children: ReactNode } export default function Field({ label, hint, htmlFor, children }: FieldProps) { return (
{children}
) }