import { LucideIcon } from 'lucide-react'; interface StatsCardProps { icon: LucideIcon; title: string; value: string | number; description?: string; colorClass?: string; } function StatsCard({ icon: Icon, title, value, description, colorClass = 'primary' }: StatsCardProps) { return (