UNPKG

mui-rff

Version:

Set of modern wrapper components to facilitate using Material UI with React Final Form

10 lines (9 loc) 469 B
/// <reference types="react" /> import { KeyboardTimePickerProps as MuiKeyboardTimePickerProps } from '@material-ui/pickers'; import { FieldProps } from 'react-final-form'; export interface KeyboardTimePickerProps extends Partial<Omit<MuiKeyboardTimePickerProps, 'onChange'>> { name: string; dateFunsUtils?: any; fieldProps?: Partial<FieldProps<any, any>>; } export declare function KeyboardTimePicker(props: KeyboardTimePickerProps): JSX.Element;