import Link, { LinkProps } from 'next/link' import React from 'react' type Props = { icon: React.ReactElement title: string } & LinkProps & React.AnchorHTMLAttributes export default function MenuItem({ href, title, icon, className, children, ...restProps }: Props) { return ( {children} {icon}
{title}
) }