@mui/x-charts
Version:
The community edition of MUI X Charts components.
18 lines • 776 B
text/typescript
import type { ChartsLabelMarkProps } from "./ChartsLabelMark.mjs";
export interface ChartsLabelMarkClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the mark type "line". */
line: string;
/** Styles applied to the mark type "line+mark". */
lineAndMark: string;
/** Styles applied to the mark type "square". */
square: string;
/** Styles applied to the mark type "circle". */
circle: string;
/** Styles applied to the element with fill={color} attribute. */
fill: string;
}
export declare function getLabelMarkUtilityClass(slot: string): string;
export declare const labelMarkClasses: ChartsLabelMarkClasses;
export declare const useUtilityClasses: (props: ChartsLabelMarkProps) => Record<"root" | "fill", string>;