import { LinkProps as ChakraLinkProps, Button } from '@chakra-ui/react' import { LinkProps as NextLinkProps } from 'next/link' import * as React from 'react' import { NextChakraLink } from '../nextChakraAdapters/NextChakraLink' type NavLinkProps = NextLinkProps & Omit & { active?: boolean } const DesktopNavLink = (props: NavLinkProps) => { const { href, children } = props return ( ) } DesktopNavLink.displayName = 'DesktopNavLink' export const MobileNavLink = (props: NavLinkProps) => { const { href, children } = props return ( ) } export const NavLink = { Mobile: MobileNavLink, Desktop: DesktopNavLink, }