UNPKG

@mui/x-tree-view

Version:

The community edition of the MUI X Tree View components.

13 lines • 615 B
export interface TreeItemLoaderClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the icon gutter element of the default content. */ iconContainer: string; /** Styles applied to the checkbox placeholder element of the default content. */ checkbox: string; /** Styles applied to the label placeholder element of the default content. */ label: string; } export type TreeItemLoaderClassKey = keyof TreeItemLoaderClasses; export declare function getTreeItemLoaderUtilityClass(slot: string): string; export declare const treeItemLoaderClasses: TreeItemLoaderClasses;