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

23 lines
No EOL
830 B
TypeScript

export interface ClockClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the clock element. */
clock: string;
/** Styles applied to the wrapper element. */
wrapper: string;
/** Styles applied to the square mask element. */
squareMask: string;
/** Styles applied to the pin element. */
pin: string;
/** Styles applied to the am button element. */
amButton: string;
/** Styles applied to the pm button element. */
pmButton: string;
/** Styles applied to the meridiem typography element. */
meridiemText: string;
/** Styles applied to the selected meridiem button element */
selected: string;
}
export type ClockClassKey = keyof ClockClasses;
export declare function getClockUtilityClass(slot: string): string;
export declare const clockClasses: ClockClasses;