UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

20 lines (19 loc) 661 B
export declare const COLUMNMENUITEM_CLASSNAME = "k-columnmenu-item"; declare const states: ("focus" | "selected")[]; export type KendoColumnMenuItemProps = { text?: string; startIcon?: string; endIcon?: string; sortIndex?: number; }; export type KendoColumnMenuItemState = { [K in (typeof states)[number]]?: boolean; }; export declare const ColumnMenuItem: { (props: KendoColumnMenuItemProps & KendoColumnMenuItemState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: ("focus" | "selected")[]; options: {}; className: string; defaultOptions: {}; }; export default ColumnMenuItem;