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

13 lines (9 loc) 254 B
import { ComponentClass } from 'react'; export interface ClockNumberProps { index: number; label: string; selected: boolean; isInner?: boolean; } declare const ClockNumber: ComponentClass<ClockNumberProps>; export default ClockNumber;