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

9 lines (6 loc) 252 B
import { ComponentClass, InputHTMLAttributes } from 'react'; export interface MaskedInputProps extends InputHTMLAttributes<MaskedInputProps> { mask?: any; } declare const MaskedInput: ComponentClass<MaskedInputProps>; export default MaskedInput;