UNPKG

@acrool/react-picker

Version:

This is a react method to quickly combine buttons with Picker

13 lines (12 loc) 445 B
import React, { ReactNode } from 'react'; import { IMotionOptions, IPickerOption } from '../types'; interface IProps { pickerOptions?: IPickerOption; children: ReactNode; isDebug?: boolean; onKeyDown?: (e: React.KeyboardEvent) => void; isVisibleMask?: boolean; motionProps?: IMotionOptions; } declare const _default: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLDivElement>>; export default _default;