import { cn } from "@/lib/utils"; import type { LucideIcon } from "lucide-react"; export function StatCard({ label, value, hint, icon: Icon, className, }: { label: string; value: string | number; hint?: string; icon?: LucideIcon; className?: string; }) { return (