interface StatCardProps { label: string; value: string | number; change?: string; changeType?: 'up' | 'down' | 'neutral'; progress?: number; progressColor?: string; } export function StatCard({ label, value, change, changeType = 'neutral', progress, progressColor = 'bg-warning', }: StatCardProps) { return (
{label}
{value}
{change && (
{change}
)} {progress !== undefined && (
)}
); }