Files
ETB/ETB-FrontEnd/node_modules/@mui/x-charts/ChartsLabel/labelGradientClasses.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

16 lines
757 B
TypeScript

import type { ChartsLabelGradientProps } from "./ChartsLabelGradient.js";
export interface ChartsLabelGradientClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the "mask" that gives shape to the gradient. */
mask: string;
/** Styles applied when direction is "column". */
vertical: string;
/** Styles applied when direction is "row". */
horizontal: string;
/** Styles applied to the element filled by the gradient */
fill: string;
}
export declare function getLabelGradientUtilityClass(slot: string): string;
export declare const labelGradientClasses: ChartsLabelGradientClasses;
export declare const useUtilityClasses: (props: ChartsLabelGradientProps) => Record<"root" | "mask" | "fill", string>;