Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@sushiswap/ui / link / Internal.tsx
Size: Mime:
import Link, { LinkProps } from 'next/link'
import { FC } from 'react'

export type InternalLinkProps = LinkProps & {
  className?: string | undefined
  children?: React.ReactNode
}

export const Internal: FC<InternalLinkProps> = ({ href, ...rest }) => {
  return <Link href={href} {...rest} />
}