'use client'; import { cn } from '@/lib/utils'; import { LucideIcon } from 'lucide-react'; interface StatCardProps { title: string; value: string; change?: string; changeType?: 'positive' | 'negative' | 'neutral'; icon: LucideIcon; iconColor?: string; } export function StatCard({ title, value, change, changeType = 'neutral', icon: Icon, iconColor = 'text-emerald-600' }: StatCardProps) { return (

{title}

{value}

{change && (

{change}

)}
); }