UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

13 lines 501 B
export interface GaugeClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the arc displaying the value. */ valueArc: string; /** Styles applied to the arc displaying the range of available values. */ referenceArc: string; /** Styles applied to the value text. */ valueText: string; } export type GaugeClassKey = keyof GaugeClasses; export declare function getGaugeUtilityClass(slot: string): string; export declare const gaugeClasses: GaugeClasses;