mui-rff
Version:
Set of modern wrapper components to facilitate using Material UI with React Final Form
9 lines (8 loc) • 450 B
TypeScript
/// <reference types="react" />
import { KeyboardDatePickerProps as MuiKeyboardDatePickerProps } from '@material-ui/pickers';
import { FieldProps } from 'react-final-form';
export interface KeyboardDatePickerProps extends Partial<Omit<MuiKeyboardDatePickerProps, 'onChange'>> {
dateFunsUtils?: any;
fieldProps?: Partial<FieldProps<any, any>>;
}
export declare function KeyboardDatePicker(props: KeyboardDatePickerProps): JSX.Element;