/**
* MetricsStrip — cost, latency, tokens, and model, styled like the marginalia
* on an accountant's ledger. Each is a small block with an eyebrow label and
* a display-font number, separated by thin ruled dividers.
*
* The cost gets a wax-stamp treatment — a small angled disc behind the number.
*/
import type { ExtractionMetrics } from "@/types";
interface Props {
metrics: ExtractionMetrics;
}
export function MetricsStrip({ metrics }: Props) {
return (