UNPKG

@conductionnl/nl-design-system

Version:

NL design system components created by Conduction

21 lines (20 loc) 542 B
import * as React from "react"; import "../../style/actionMenu.css"; export declare enum BreakpointActionMenu { mobile = "small", tablet = "medium", desktop = "large" } interface ActionMenuProps { items: Array<Partial<Record<"name" | "icon" | "link", any>>>; pageDescription?: string; breakpoint?: BreakpointActionMenu; iconSize?: string; } /** * This components renders a horizontal menu. * * @returns JSX of the generated ActionMenu. */ export declare const ActionMenu: React.FC<ActionMenuProps>; export {};