import Link from 'next/link'; import { IconType } from 'react-icons'; import { twMerge } from 'tailwind-merge'; interface SidebarItemProps { icon: IconType; label: string; active?: boolean; href: string; } const SidebarItem: React.FC = ({ icon: Icon, label, active, href }) => { return (

{label}

); } export default SidebarItem;