UNPKG

@conduction/components

Version:

React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)

10 lines (9 loc) 240 B
import * as React from "react"; interface LogoProps { variant?: "header" | "footer" | "navbar"; onClick?: () => any; layoutClassName?: string; ariaLabel?: string; } export declare const Logo: React.FC<LogoProps>; export {};