Select

A dropdown select for choosing from a list of options.

Preview

Props

PropTypeDefaultDescription
optionsarray[]{ value, label } objects
placeholderstring'Select...'Placeholder
valuestringSelected value
onChangefunctionChange handler
disabledbooleanfalseDisables select

Usage

const { Select } = window.ColorSnap;
ReactDOM.createRoot(document.getElementById('root')).render(
  React.createElement(Select, { placeholder: 'Choose...', options: [{ value: 'a', label: 'Option A' }] })
);