@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
18 lines (17 loc) • 613 B
TypeScript
export declare const TREEVIEWLEAF_CLASSNAME = "k-treeview-leaf";
declare const states: ("focus" | "selected" | "hover")[];
export type KendoTreeviewLeafProps = {
text?: string;
showIcon?: boolean;
icon?: string;
};
export type KendoTreeviewLeafState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const TreeviewLeaf: {
(props: KendoTreeviewLeafProps & KendoTreeviewLeafState & React.HTMLAttributes<HTMLLIElement>): import("react/jsx-runtime").JSX.Element;
states: ("focus" | "selected" | "hover")[];
options: {};
className: string;
};
export default TreeviewLeaf;