UNPKG

@conduction/components

Version:

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

13 lines (12 loc) 327 B
/// <reference types="react" /> interface TopNavProps { items: { label: string; icon?: JSX.Element; current?: boolean; handleClick: () => any; }[]; layoutClassName?: string; } export declare const SecondaryTopNav: ({ items, layoutClassName }: TopNavProps) => JSX.Element; export {};