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

{value}

{label}

{description && (

{description}

)}
); }