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

19 lines
No EOL
901 B
TypeScript

export interface PickersArrowSwitcherClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the spacer element. */
spacer: string;
/** Styles applied to the button element. */
button: string;
/** Styles applied to the previous icon button element. */
previousIconButton: string;
/** Styles applied to the next icon button element. */
nextIconButton: string;
/** Styles applied to the left icon element. */
leftArrowIcon: string;
/** Styles applied to the right icon element. */
rightArrowIcon: string;
}
export type PickersArrowSwitcherClassKey = keyof PickersArrowSwitcherClasses;
export declare function getPickersArrowSwitcherUtilityClass(slot: string): string;
export declare const pickersArrowSwitcherClasses: Record<"root" | "button" | "spacer" | "previousIconButton" | "nextIconButton" | "leftArrowIcon" | "rightArrowIcon", string>;