UNPKG

material-ui-arabic-datepicker

Version:

React components, that implements material design date and time pickers for material-ui v1 including a customized Datepicker with arabic header, months and weekdays and English numbers, modfied implementation from materail-ui-pickers

14 lines (10 loc) 406 B
import { ComponentClass, ReactNode } from 'react'; import { DateTimePickerView } from '../constants/date-picker-view'; export interface DateTimePickerTabsProps { view: DateTimePickerView; onChange: (view: DateTimePickerView) => void; dateRangeIcon?: ReactNode; timeIcon?: ReactNode; } declare const DateTimePickerTabs: ComponentClass<DateTimePickerTabsProps>; export default DateTimePickerTabs;