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

20 lines
884 B
TypeScript

import type { ChartsLegendProps } from "./ChartsLegend.js";
import type { ChartsLegendSlotExtension } from "./chartsLegend.types.js";
export interface ChartsLegendClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the list item around each series in the legend. */
item: string;
/** Styles applied to a series element. */
series: string;
/** Styles applied to series mark element. */
mark: string;
/** Styles applied to the series label. */
label: string;
/** Styles applied to the legend in column layout. */
vertical: string;
/** Styles applied to the legend in row layout. */
horizontal: string;
}
export declare const useUtilityClasses: (props: ChartsLegendProps & ChartsLegendSlotExtension) => Record<"item" | "series" | "root" | "label" | "mark", string>;
export declare const legendClasses: ChartsLegendClasses;