import { controlClass } from "./Button"; export function Field({ label, hint, error, className, ...input }: React.InputHTMLAttributes & { label: string; hint?: React.ReactNode; error?: string; }) { return ( ); }