UNPKG

material-ui-pickers-fork

Version:

React components, that implements material design pickers for material-ui v1

14 lines (10 loc) 299 B
import { ComponentClass } from 'react'; import { ClockType } from '../constants/clock-types'; export interface ClockProps { type: ClockType; value: number; onChange: (value: number) => void; ampm?: boolean; } declare const Clock: ComponentClass<ClockProps>; export default Clock;