import { Grid } from '@/ui/Grid'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; import { Card } from '@/ui/Card'; 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 ( {items.map((item, index) => ( {item.label} {item.value} ))} ); }