1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/MonthCalendar/monthCalendarClasses.d.ts
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

13 lines
No EOL
572 B
TypeScript

export declare function getMonthCalendarUtilityClass(slot: string): string;
export interface MonthCalendarClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the button element that represents a single month */
button: string;
/** Styles applied to a disabled button element. */
disabled: string;
/** Styles applied to a selected button element. */
selected: string;
}
export type MonthCalendarClassKey = keyof MonthCalendarClasses;
export declare const monthCalendarClasses: Record<keyof MonthCalendarClasses, string>;