@igloo-ui/select
v2.0.2
Published
Select inputs let users choose one option from an options menu.
Downloads
95
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/selectIf you prefer Yarn, use the following command instead:
yarn add @igloo-ui/selectUsage
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>;