Renders a styled metric display pairing a prominent primary value with a smaller secondary label, suitable for dashboards and stat blocks.
## Key Components
**`MetricValue`** — Named export functional component
| Prop | Type | Required | Description |
|---|---|---|---|
| `value` | `string \| number` | ✅ | The primary metric to display (e.g., `30`, `"99%"`) |
| `label` | `string` | ✅ | Descriptive label rendered below/beside the value (e.g., `"Generation Time"`) |
| `className` | `string` | ❌ | Optional class overrides via `cn()` utility |
## Usage Example
```typescript
import { MetricValue } from '@/components/metric-value';
// Basic numeric stat