import { cn } from '@/lib/utils' import { LucideIcon } from 'lucide-react' interface DashboardCardProps { label: string Icon: LucideIcon amount: any description: string } export const DashboardCard = ({ label, Icon, amount, description }: DashboardCardProps) => { return (
{label}
{description}