N
Nyxis
Components

Combobox

Searchable select using cmdk.

Preview

Installation

pnpm add nyxis-ui

Usage

import { Combobox } from 'nyxis-ui';
// or, for stricter tree-shaking:
// import { Combobox } from 'nyxis-ui/combobox';

<Combobox
  options={[
    { value: 'datev', label: 'DATEV' },
    { value: 'netsuite', label: 'NetSuite' },
  ]}
/>;