OddApp Design

Combobox

@oddapp/ui · Tier 1

Searchable dropdown combining a text input with a filtered options list.

Default

import { Combobox } from '@oddapp/ui'

const options = [
  { value: 'react', label: 'React' },
  { value: 'vue', label: 'Vue' },
  { value: 'svelte', label: 'Svelte' },
]

<Combobox options={options} placeholder="Select framework…" onChange={(v) => console.log(v)} />