UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

17 lines (16 loc) 609 B
import { KendoComponent } from '../_types/component'; export declare const DRAWERITEM_CLASSNAME = "k-drawer-item"; declare const states: ("focus" | "disabled" | "selected" | "hover")[]; export type KendoDrawerItemProps = { icon?: string; text?: string; link?: boolean; expanded?: boolean; hasChildren?: boolean; level?: number | string; }; export type KendoDrawerItemState = { [K in (typeof states)[number]]?: boolean; }; export declare const DrawerItem: KendoComponent<KendoDrawerItemProps & KendoDrawerItemState & React.HTMLAttributes<HTMLLIElement>>; export default DrawerItem;