@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
9 lines (8 loc) • 778 B
TypeScript
/// <reference types="react" />
import type { IAsyncCreatableSelect } from './IAsyncCreatableSelect';
/**
* Molecule: AsyncCreatableSelect
* 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. To allow new values
*/
declare function AsyncCreatableSelect({ placeholder, id, name, error, helpText, hasLabelPlaceholder, isDisabled, isClearable, defaultValue, onChange, isLoading, loadOptions, isError, showErrorText, onBlur, value, menuIsOpen, allowCreateWhileLoading, createOptionPosition, logo, instanceId, loadingMessage, noOptionsMessage, iconTooltip, isActiveDropdownIndicator }: IAsyncCreatableSelect): JSX.Element;
export default AsyncCreatableSelect;