@igloo-ui/select
v1.8.0
Published
Select inputs let users choose one option from an options menu.
Downloads
165
Readme
Select
Select inputs let users choose one option from an options menu.
Installation
To install @igloo-ui/select
in your project, you will need to run the following command using npm:
npm install @igloo-ui/select
If you prefer Yarn, use the following command instead:
yarn add @igloo-ui/select
Usage
Then to use the component in your code just import it!
import Select from '@igloo-ui/select';
<Select
options={[
{ label: 'Option 1', value: '1' },
{ label: 'Option 2', value: '2' },
]}
>
Place holder
</Select>;