import type React from 'react'; export interface KpiCardProps { label: string; value: string | number; sub?: string; color?: string; style?: React.CSSProperties; } export function KpiCard({ label, value, sub, color = '#f5f5f5', style }: KpiCardProps) { return (