preskok/ui

List Box

Present and select from a list of options with labels, descriptions, and sections.

Installation

pnpm dlx @preskok-org/ui@latest add list-box

Usage

import { ListBox, ListBoxItem } from "@/registry/preskok/ui/preskok-ui/list-box"
 
export function Example() {
  return (
    <ListBox aria-label="Options">
      <ListBoxItem id="a">A</ListBoxItem>
      <ListBoxItem id="b">B</ListBoxItem>
    </ListBox>
  )
}