UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

12 lines 440 B
export interface BrushOverlayClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the brush lines. */ rect: string; /** Styles applied when the brush is selecting the x axis. */ x: string; /** Styles applied when the brush is selecting the y axis. */ y: string; } export type BrushOverlayClassKey = keyof BrushOverlayClasses; export declare const brushOverlayClasses: BrushOverlayClasses;