interface StatCardProps { label: string value: number color?: 'slate' | 'blue' | 'green' | 'yellow' | 'red' | 'orange' highlight?: boolean } const colorClasses: Record = { slate: 'text-slate-900', blue: 'text-blue-600', green: 'text-green-600', yellow: 'text-yellow-600', red: 'text-red-600', orange: 'text-orange-600', } export function StatCard({ label, value, color = 'slate', highlight = false }: StatCardProps) { return (

{label}

{value}

) }