@acrool/react-picker
Version:
This is a react method to quickly combine buttons with Picker
13 lines (12 loc) • 456 B
TypeScript
import { default as 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;