import type { Provider } from "@/types"; import { fmt } from "@/lib/format"; /** * Overview tab content for the provider drill-down drawer (SP21 * Task 2.2). Renders the base provider fields in a two-column grid: * * - Identity: NPI, Tax ID, address, phone * - Activity: claim count, outstanding AR * * Subsequent tasks (Phase 3) will hang ``recent_claims`` and * ``recent_activity`` off this surface; for now we only render the * base fields the drawer needs to present "who is this provider and * what's their activity shape" at a glance. */ export function ProviderOverview({ provider }: { provider: Provider }) { return (
); } function Field({ label, value, mono }: { label: string; value: string; mono?: boolean }) { return (
{label}
{value}
); }