import { StatGrid } from '@/ui/StatGrid'; interface KpiItem { label: string; value: string | number; intent?: 'primary' | 'success' | 'warning' | 'critical' | 'high' | 'med' | 'low'; } interface DashboardKpiRowProps { items: KpiItem[]; } /** * DashboardKpiRow * * A horizontal row of key performance indicators with telemetry styling. */ export function DashboardKpiRow({ items }: DashboardKpiRowProps) { return ( ({ label: item.label, value: item.value, intent: item.intent as any }))} /> ); }