@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
16 lines (15 loc) • 632 B
TypeScript
import { KendoComponent } from '../_types/component';
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;
/** @aria When true, renders as context menu with role="menu" instead of role="menubar" */
contextMenu?: boolean;
};
export declare const Menu: KendoComponent<KendoMenuProps & React.HTMLAttributes<HTMLUListElement>>;
export default Menu;