@acrool/react-picker
Version:
This is a react method to quickly combine buttons with Picker
11 lines (10 loc) • 389 B
TypeScript
import { default as React, ReactNode, RefObject } from 'react';
interface IProps {
children: ReactNode;
isDebug?: boolean;
anchorRef: RefObject<HTMLDivElement | null>;
onKeyDown?: (e: React.KeyboardEvent) => void;
isVisibleMask?: boolean;
}
declare const _default: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLDivElement>>;
export default _default;