import { Card, CardContent } from "@/components/ui/card"; interface StatCardProps { label: string; value: string | number; sub?: React.ReactNode; } export function StatCard({ label, value, sub }: StatCardProps) { return (

{label}

{value}

{sub &&
{sub}
}
); }