gatsby-theme-advanced
Version:
GatsbyJS theme equipped with advanced features.
13 lines (12 loc) • 379 B
TypeScript
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;