reablocks
Version:
Component library for React
21 lines (20 loc) • 442 B
TypeScript
export interface TreeTheme {
base: string;
tree: string;
arrow: string;
node: {
base: string;
collapsed: string;
disabled: string;
leaf: string;
label: string;
button: {
base: string;
icon: string;
};
};
nodeBlock: string;
subtree: string;
}
export declare const treeTheme: TreeTheme;
export declare const legacyTreeTheme: TreeTheme;