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

{value}

{hint &&

{hint}

}
); }