Select
A dropdown select for choosing from a list of options.
Preview
Props
| Prop | Type | Default | Description |
|---|---|---|---|
options | array | [] | { value, label } objects |
placeholder | string | 'Select...' | Placeholder |
value | string | — | Selected value |
onChange | function | — | Change handler |
disabled | boolean | false | Disables select |
Usage
const { Select } = window.ColorSnap;
ReactDOM.createRoot(document.getElementById('root')).render(
React.createElement(Select, { placeholder: 'Choose...', options: [{ value: 'a', label: 'Option A' }] })
);