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 & Icon */}

{label}

{/* Amount & Description */}

{amount}

{description}

) } export function DashboardCardContent( props: React.HTMLAttributes ) { return (
) }