@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
10 lines (9 loc) • 705 B
TypeScript
/// <reference types="react" />
import { ISelect } from '../Select/ISelect';
import { ISelectCountry } from './ISelectCountry';
/**
* Molecule: SelectCountry
* Select lets merchants choose one option from an options menu. Consider select when you have 4 or more options, to avoid cluttering the interface.
*/
declare function SelectCountry({ id, name, placeholder, isDisabled, error, isSearchable, helpText, onChange, isClearable, isError, showErrorText, onBlur, menuIsOpen, value, instanceId, loadingMessage, noOptionsMessage, logo, iconTooltip, continent, classnameSelect, defaultValueCountry }: Omit<ISelect, 'options' | 'defaultValue'> & ISelectCountry): JSX.Element;
export default SelectCountry;