UNPKG

@material-ui/pickers

Version:

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

10 lines (9 loc) 489 B
import * as React from 'react'; import { PopoverProps as PopoverPropsType } from '@material-ui/core/Popover'; import { WrapperProps } from './Wrapper'; import { TextFieldProps } from '@material-ui/core/TextField'; 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>;