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