@igloo-ui/combobox
v2.6.0
Published
A combobox has all the features a select does as well as filtering and clearing results.
Downloads
23
Readme
Combobox
A combobox has all the features a select does as well as filtering and clearing results.
Installation
To install @igloo-ui/combobox
in your project, you will need to run the following command using npm:
npm install @igloo-ui/combobox
If you prefer Yarn, use the following command instead:
yarn add @igloo-ui/combobox
Usage
Then to use the component in your code just import it!
import Combobox from '@igloo-ui/combobox';
const optionList = [
{
label: 'Text 1',
value: '1',
},
{
label: 'Text 2 (disabled)',
value: '2',
disabled: true,
},
{
label:
'Text 3. I will put a lot of text here to see how it behaves. Hopefully it looks good!',
value: '3',
color: '#74DCC9',
},
];
<Combobox options={optionList} search clear clearTooltipText="Remove Mapping">
Place holder text
</Combobox>;