import { fmt } from "@/lib/format"; import { cn } from "@/lib/utils"; import type { RemitDetail } from "@/hooks/useRemitDetail"; type FinancialSummaryCardProps = { remit: RemitDetail; }; /** * Single label/value row used inside the financial summary card. * `mono` opts the value into the project's mono numeric treatment * (font-mono + tabular-nums + slightly heavier weight) so currency * figures line up vertically across rows. */ function SummaryRow({ testId, label, value, mono = false, }: { testId: string; label: string; value: React.ReactNode; mono?: boolean; }) { return (