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

30 lines
No EOL
994 B
TypeScript

import * as React from 'react';
import { Theme } from '@mui/material/styles';
import { SxProps } from '@mui/system';
import { DayCalendarSkeletonClasses } from "./dayCalendarSkeletonClasses.js";
type HTMLDivProps = React.JSX.IntrinsicElements['div'];
export interface DayCalendarSkeletonProps extends HTMLDivProps {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<DayCalendarSkeletonClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
ref?: React.Ref<HTMLDivElement>;
}
/**
* Demos:
*
* - [DateCalendar](https://mui.com/x/react-date-pickers/date-calendar/)
*
* API:
*
* - [CalendarPickerSkeleton API](https://mui.com/x/api/date-pickers/calendar-picker-skeleton/)
*/
declare function DayCalendarSkeleton(inProps: DayCalendarSkeletonProps): React.JSX.Element;
declare namespace DayCalendarSkeleton {
var propTypes: any;
}
export { DayCalendarSkeleton };