import { cn } from '@/utils/cn'; import type { LucideIcon } from 'lucide-react'; import { ProjectLink } from '@/components/links'; export function SidebarLink({ href, icon: Icon, label, className, exact, }: { href: string; icon: LucideIcon; label: React.ReactNode; className?: string; exact?: boolean; }) { return (
{label}
); }