import { Card, CardContent } from "@/components/ui/card" import type { LucideIcon } from "lucide-react" interface StatsCardProps { title: string value: string | number icon: LucideIcon description?: string } export function StatsCard({ title, value, icon: Icon, description }: StatsCardProps) { return (

{title}

{value}

{description &&

{description}

}
) }