import { LucideIcon } from 'lucide-react'; interface StatCardProps { icon: LucideIcon; value: string | number; label: string; color: string; className?: string; } export function StatCard({ icon: Icon, value, label, color, className }: StatCardProps) { return (

{value}

{label}

); }