UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

14 lines (13 loc) 510 B
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; }; export declare const Menu: KendoComponent<KendoMenuProps & React.HTMLAttributes<HTMLUListElement>>; export default Menu;