import { PropsWithChildren } from "react" import NextLink from "next/link" import { LinkProps as NextLinkProps } from "next/dist/client/link" import { Link as ChakraLink, LinkProps as ChakraLinkProps, } from "@teste-ui/react" export type NextChakraLinkProps = PropsWithChildren< NextLinkProps & Omit > // Has to be a new component because both chakra and next share the `as` keyword export const NextChakraLink = ({ href, as, replace, scroll, shallow, prefetch, children, ...chakraProps }: NextChakraLinkProps) => { return ( {children} ) }