@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
19 lines (18 loc) • 594 B
TypeScript
export declare const COLUMNMENUEXPANDER_CLASSNAME = "k-expander";
export type KendoColumnMenuExpanderProps = {
itemText?: string;
itemStartIcon?: string;
itemEndIcon?: string;
itemSortIndex?: number;
expanderIcon?: string;
itemContent?: React.JSX.Element;
expanded?: boolean;
};
export declare const ColumnMenuExpander: {
(props: KendoColumnMenuExpanderProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {};
className: string;
defaultOptions: {};
};
export default ColumnMenuExpander;