import { LucideIcon } from 'lucide-react' interface StatCardProps { label: string value: string | number icon?: LucideIcon hint?: string accent?: 'indigo' | 'green' | 'amber' | 'rose' } const ACCENTS = { indigo: 'text-indigo-400 bg-indigo-500/10 border-indigo-500/20', green: 'text-green-400 bg-green-500/10 border-green-500/20', amber: 'text-amber-400 bg-amber-500/10 border-amber-500/20', rose: 'text-rose-400 bg-rose-500/10 border-rose-500/20', } export default function StatCard({ label, value, icon: Icon, hint, accent = 'indigo' }: StatCardProps) { return (