import type { ReactNode } from 'react'; export interface KpiCardProps { label: string; value: string; accent: string; bg: string; icon: ReactNode; } export function KpiCard({ label, value, accent, bg, icon }: KpiCardProps) { return (