@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
9 lines • 377 B
TypeScript
export interface PickerPopperClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the paper element. */
paper: string;
}
export type PickerPopperClassKey = keyof PickerPopperClasses;
export declare function getPickerPopperUtilityClass(slot: string): string;
export declare const pickerPopperClasses: Record<"root" | "paper", string>;