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

18 lines (14 loc) 545 B
import { ComponentClass, ReactNode } from 'react'; import { Utils } from '../typings/utils'; import { MaterialUiPickersDate } from '../typings/date'; export interface CalendarHeaderProps { currentMonth: object; onMonthChange: (date: MaterialUiPickersDate) => void; leftArrowIcon?: ReactNode; rightArrowIcon?: ReactNode; disablePrevMonth?: boolean; disableNextMonth?: boolean; utils?: Utils<MaterialUiPickersDate>; } declare const CalendarHeader: ComponentClass<CalendarHeaderProps>; export default CalendarHeader;