@mui/x-date-pickers-pro
Version:
The Pro plan edition of the MUI X Date and Time Picker components.
25 lines • 1.02 kB
TypeScript
import * as React from 'react';
import type { ExportedBaseTabsProps } from '@mui/x-date-pickers/internals';
import type { TimeRangePickerTabsClasses } from "./timeRangePickerTabsClasses.js";
export interface ExportedTimeRangePickerTabsProps extends ExportedBaseTabsProps {
/**
* Toggles visibility of the tabs allowing view switching.
* @default `window.innerHeight < 667` for `DesktopTimeRangePicker` and `MobileTimeRangePicker`, `displayStaticWrapperAs === 'desktop'` for `StaticTimeRangePicker`
*/
hidden?: boolean;
/**
* Time tab icon.
* @default Time
*/
timeIcon?: React.ReactElement<any>;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<TimeRangePickerTabsClasses>;
}
export interface TimeRangePickerTabsProps extends ExportedTimeRangePickerTabsProps {}
declare function TimeRangePickerTabs(inProps: TimeRangePickerTabsProps): React.JSX.Element | null;
declare namespace TimeRangePickerTabs {
var propTypes: any;
}
export { TimeRangePickerTabs };