Files
ETB/ETB-FrontEnd/node_modules/@mui/x-date-pickers/internals/components/pickersToolbarClasses.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

14 lines
652 B
TypeScript

export interface PickersToolbarClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the content element. */
content: string;
/** Styles applied to the pen icon button element. */
penIconButton: string;
/** Styles applied to the pen icon button element in landscape mode. */
penIconButtonLandscape: string;
}
export declare type PickersToolbarClassKey = keyof PickersToolbarClasses;
export declare function getPickersToolbarUtilityClass(slot: string): string;
export declare const pickersToolbarClasses: Record<"root" | "content" | "penIconButton" | "penIconButtonLandscape", string>;