@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
9 lines (8 loc) • 695 B
TypeScript
/// <reference types="react" />
import type { ISelectButton } from './ISelectButton';
/**
* Molecule: SelectButton
* Select with button for first item 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 SelectButton({ options, placeholder, defaultValue, isDisabled, id, error, name, helpText, hasLabelPlaceholder, onChange, isSearchable, isClearable, alignButton, onClickFirstItem, isError, showErrorText, onBlur, menuIsOpen, instanceId, value, loadingMessage, noOptionsMessage, logo, iconTooltip, isActiveDropdownIndicator }: ISelectButton): JSX.Element;
export default SelectButton;