import { SidebarMenuButton, SidebarMenuItem } from '@liam-hq/ui' import type { FC, ReactNode } from 'react' import styles from './MenuItemLink.module.css' export type Props = { label: string href: string target: '_self' | '_blank' noreferrer: boolean icon: ReactNode } export const MenuItemLink: FC = ({ label, href, target, noreferrer, icon, }) => { return ( {icon} {label} ) }