UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

9 lines (8 loc) 656 B
/// <reference types="react" /> import type { IAsyncSelect } from './IAsyncSelect'; /** * Molecule: AsyncSelect * Async select lets merchants choose one option from an options menu. Consider select when you have 4 or more options, to avoid cluttering the interface. Data from network */ declare function AsyncSelect({ placeholder, id, name, error, helpText, hasLabelPlaceholder, isDisabled, isClearable, defaultValue, onChange, isLoading, loadOptions, isError, showErrorText, onBlur, value, menuIsOpen, instanceId, loadingMessage, noOptionsMessage, logo, iconTooltip, isActiveDropdownIndicator }: IAsyncSelect): JSX.Element; export default AsyncSelect;