UNPKG

material-ui-pickers-v4

Version:

React components, that implements material design pickers for material-ui v4 with updated material ui

9 lines (8 loc) 435 B
import * as React from 'react'; import { PopoverProps as PopoverPropsType, TextFieldProps } from '@material-ui/core'; import { WrapperProps } from './Wrapper'; export interface InlineWrapperProps<T = TextFieldProps> extends WrapperProps<T> { /** Popover props passed to material-ui Popover (with variant="inline") */ PopoverProps?: Partial<PopoverPropsType>; } export declare const InlineWrapper: React.FC<InlineWrapperProps>;