UNPKG

@tabula/ui-multi-selector

Version:

A MultiSelector allows users to select one or more items from a list of choices, or suggest own item.

11 lines (10 loc) 345 B
import { BatchAction, Option } from '../../types'; type Options = { addFound: BatchAction; allowsCustomValue?: boolean; options: Option[]; selectAll: BatchAction; selectFound: BatchAction; }; export declare function useHasIcons({ addFound, allowsCustomValue, options, selectAll, selectFound, }: Options): boolean; export {};