UNPKG

react-select-items

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