@digichanges/solid-multiselect
v0.0.10
Published
## Installation
Downloads
91
Readme
Solid MultiSelect
Installation
## in npm
npm install @digichanges/solid-multiselect
## or in yarn
yarn add @digichanges/solid-multiselect
Add as a module:
import { MultiSelect } from '@digichanges/solid-multiselect';
Demo
Search:
Example
import { MultiSelect } from '@digichanges/solid-components'
<h3>Limit 2 elements</h3>
<MultiSelect
style={{ chips: { color: "red", "background-color": "pink" } }}
options={["yellow", "blue", "pink", "white"]}
onSelect={console.log}
onRemove={console.log}
selectedValues={["yellow"]}
selectionLimit={2}
/>