export function MetricGrid({ metrics, minCardWidth = '180px' }) { return (
{metrics.map((item) => (
{item.label} {item.value} {item.detail}
))}
); }