@conductionnl/nl-design-system
Version:
NL design system components created by Conduction
21 lines (20 loc) • 625 B
TypeScript
/// <reference types="react" />
import "../../style/bottomNavigation.css";
export declare enum BreakpointBottomNavigation {
mobile = "mobile",
tablet = "tablet",
desktop = "desktop"
}
interface BottomNavigationProps {
items: Array<Partial<Record<"name" | "icon" | "link", any>>>;
pageDescription?: string;
iconSize?: string;
breakpoint?: BreakpointBottomNavigation;
}
/**
* This components renders a vertical menu at the bottom of the page.
*
* @returns JSX of the generated Bottom navigation.
*/
export declare function BottomNavigation(props: BottomNavigationProps): JSX.Element;
export {};