import type { LucideIcon } from "lucide-react"; import { StatsCard } from "@/components/dashboard/stats-card"; type DashboardCardProps = { title: string; value: string; description: string; icon: LucideIcon; }; export function DashboardCard({ title, value, description, icon: Icon, }: DashboardCardProps) { return ( ); }