export function Field({ label, hint, error, ...input }: React.InputHTMLAttributes & { label: string; hint?: React.ReactNode; error?: string; }) { return ( ); }