import type { ReactNode } from "react"; type Props = { requestNumber: string; requestedBy: string; department: string; budgetCode: string; requestedDate: string; onRequestedByChange: (v: string) => void; onDepartmentChange: (v: string) => void; onBudgetCodeChange: (v: string) => void; onRequestedDateChange: (v: string) => void; }; const INPUT = "mt-0.5 w-full rounded-md border border-outline-variant bg-surface-container-lowest px-2 py-1 text-[11px] leading-tight text-primary shadow-sm focus:border-primary focus:outline-none focus:ring-1 focus:ring-primary"; function MiniField({ label, children, }: { label: string; children: ReactNode; }) { return (