MiHCM
primitives/@mihcm/ui·v0.21.0·stable

Combobox

Autocomplete search input combining a text field with a filterable dropdown list. Ideal for large option sets.

Live preview

Adjust the controls on the right; the preview and code update in real time.

example.tsxtsx
import { Combobox } from '@mihcm/ui/Combobox';

export function Example() {
  return (
    <Combobox
  placeholder="Select framework…"
    ></Combobox>
  );
}

Install

Both paths are valid. CLI ships the source into your repo (you own it). Install pins via npm.

npx @mihcm/cli add Combobox
Copies the source into components/ds/Combobox.tsx. You own the file. Use --out to override the directory or --force to overwrite.