conduction-components
Version:
React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)
13 lines (12 loc) • 324 B
TypeScript
import * as React from "react";
export interface ITopNavItem {
label: string;
href: string;
icon?: JSX.Element;
}
interface TopNavItemsProps {
items: ITopNavItem[];
}
export declare const PrimaryTopNav: React.FC<TopNavItemsProps>;
export declare const SecondaryTopNav: React.FC<TopNavItemsProps>;
export {};