import { ArrowUpRight, type LucideIcon } from 'lucide-react'; import { cn } from '../../lib/classname'; type DashboardCardLinkProps = { href: string; title: string; icon: LucideIcon; description: string; className?: string; }; export function DashboardCardLink(props: DashboardCardLinkProps) { const { href, title, description, icon: Icon, className } = props; return (

{title}

{description}

); }