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

{title}

{value}

{description &&

{description}

}
) }