UNPKG

gatsby-theme-advanced

Version:
13 lines (12 loc) 379 B
import React from "react"; export declare type LinkProps = { className?: string; activeClassName?: string; children: React.ReactNode; to: string; href?: string; noBasePath?: boolean; ariaLabel?: string; }; declare const Link: ({ to, href, className, children, activeClassName, noBasePath, ariaLabel, }: LinkProps) => JSX.Element; export default Link;