import type { ReactNode } from "react" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" interface StatCardProps { title: string value: string description: string icon: ReactNode } export default function StatCard({ title, value, description, icon }: StatCardProps) { return ( {title} {icon}
{value}
{description}
) }