import { LucideIcon } from 'lucide-react'; interface StatCardProps { label: string; value: string | number; icon: LucideIcon; color?: string; trend?: string; trendUp?: boolean; } export default function StatCard({ label, value, icon: Icon, color = 'text-accent', trend, trendUp }: StatCardProps) { const bgColor = color.replace('text-', 'bg-'); return (
{value}
{label}