@material-ui/lab
Version:
Material-UI Lab - Incubator for Material-UI React components.
19 lines (18 loc) • 624 B
TypeScript
import * as React from 'react';
import { PickersDayProps } from '../PickersDay/PickersDay';
export interface DateRangePickerDayProps<TDate> extends PickersDayProps<TDate> {
isHighlighting: boolean;
isEndOfHighlighting: boolean;
isStartOfHighlighting: boolean;
isPreviewing: boolean;
isEndOfPreviewing: boolean;
isStartOfPreviewing: boolean;
}
declare const _default: <TDate>(props: DateRangePickerDayProps<TDate> & React.RefAttributes<HTMLButtonElement>) => JSX.Element;
/**
*
* API:
*
* - [DateRangePickerDay API](https://material-ui.com/api/date-range-picker-day/)
*/
export default _default;