UNPKG

react-select-items

Version:
12 lines (11 loc) 465 B
import { SelectionOptions } from './types'; type SelectAreaProps = { onSelect?: (index: number) => void; onUnselect?: (index: number) => void; onFocus?: (index: number) => void; options?: SelectionOptions; dragBoxClassName?: string; children: React.ReactNode; }; export default function SelectArea({ onSelect, onUnselect, onFocus, options, dragBoxClassName, children, }: SelectAreaProps): import("react/jsx-runtime").JSX.Element; export {};