@tabula/ui-multi-selector
Version:
A MultiSelector allows users to select one or more items from a list of choices, or suggest own item.
10 lines (9 loc) • 317 B
TypeScript
import { Option, SelectAll, SelectFound } from '../../types';
type Options = {
options: Option[];
selectAll: SelectAll;
selectFound: SelectFound;
allowsCustomValue?: boolean;
};
export declare function useHasIcons({ allowsCustomValue, options, selectAll, selectFound, }: Options): boolean;
export {};