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
15 lines (11 loc) • 426 B
TypeScript
import { ComponentClass } from 'react';
import { Utils } from '../typings/utils';
import { MaterialUiPickersDate } from '../typings/date'
export interface HourViewProps {
date: MaterialUiPickersDate;
onChange: (date: MaterialUiPickersDate, isFinished?: boolean) => void;
ampm?: boolean;
utils?: Utils<MaterialUiPickersDate>;
}
declare const HourView: ComponentClass<HourViewProps>;
export default HourView;