UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

23 lines (22 loc) 680 B
export declare const MENU_CLASSNAME = "k-menu"; export type KendoMenuProps = { orientation?: 'horizontal' | 'vertical'; header?: boolean | null; scrollable?: boolean; scrollButtonsPosition?: "around" | "start" | "end"; wrapperStyles?: React.CSSProperties; dir?: "rtl" | "ltr"; popup?: React.JSX.Element; }; export declare const Menu: { (props: KendoMenuProps & React.HTMLAttributes<HTMLUListElement>): import("react/jsx-runtime").JSX.Element; states: any[]; options: {}; className: string; defaultOptions: { orientation: string; header: boolean; scrollButtonsPosition: string; }; }; export default Menu;