Combobox

Demos

Combobox

import { Combobox } from 'marketing-ui'

function Demo() {
  return (
    <Combobox
      id='fruits'
      name='fruits'
      label='Fruits'
      options={[
        { value: 'apple', label: 'Apple', count: 12 },
        { value: 'banana', label: 'Banana', count: 4 },
        { value: 'cherry', label: 'Cherry' },
        { value: 'mango', label: 'Mango', count: 99 },
        { value: 'peach', label: 'Peach' },
        { value: 'pear', label: 'Pear', count: 2 },
        { value: 'plum', label: 'Plum', disabled: true, count: 7 },
        { value: 'strawberry', label: 'Strawberry' },
      ]}
      selected={['apple', 'banana', 'cherry', 'mango']}
      placeholder='Select fruits'
    />
  )
}

export default Demo

Props