@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
10 lines (9 loc) • 428 B
TypeScript
export interface PickersToolbarTextClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to a selected root element. */
selected: string;
}
export type PickersToolbarTextClassKey = keyof PickersToolbarTextClasses;
export declare function getPickersToolbarTextUtilityClass(slot: string): string;
export declare const pickersToolbarTextClasses: Record<"selected" | "root", string>;