export function Kpi({ label, value, sub, tone, }: { label: string; value: React.ReactNode; sub?: React.ReactNode; tone?: "up" | "down" | "warn" | "mute"; }) { const color = tone === "up" ? "text-up" : tone === "down" ? "text-down" : tone === "warn" ? "text-warn" : tone === "mute" ? "text-mute" : "text-ink"; return (