"use client" import React from 'react'; import { cn } from "../utils/cn"; interface MetricValueProps { value: string | number; label: string; className?: string; } /** * Displays a numeric/short textual value followed by a smaller grey label. * Example: 30s Generation Time */ export function MetricValue({ value, label, className }: MetricValueProps) { return (