import cn from "clsx"; import Link from "next/link"; import { ReactElement } from "react"; export type SidebarLinkProps = { href: string; className?: string; icon: ReactElement; name: string; hightlighted: boolean; }; export const SidebarLink = (props: SidebarLinkProps) => { const { href, className, icon, name, hightlighted } = props; return (