interface StatCardProps { title: string; value: string | number; subtitle?: string; color?: string; icon?: React.ReactNode; } export function StatCard({ title, value, subtitle, color = "#3b82f6", icon }: StatCardProps) { return (

{title}

{value}

{subtitle && (

{subtitle}

)}
{icon && (
{icon}
)}
); }