Components
- Accordion
- Alert
- Alert Dialog
- Aspect Ratio
- Avatar
- Badge
- Breadcrumb
- Button
- Button Group
- Calendar
- Card
- Carousel
- Chart
- Checkbox
- Collapsible
- Combobox
- Command
- Context Menu
- Data Table
- Date Picker
- Dialog
- Drawer
- Dropdown Menu
- Hover Card
- Input
- Input OTP
- Kbd
- Label
- Menubar
- Native Select
- Navigation Menu
- Pagination
- Popover
- Progress
- Radio Group
- Resizable
- Scroll Area
- Select
- Separator
- Sheet
- Sidebar
- Skeleton
- Slider
- Sonner
- Spinner
- Switch
- Table
- Tabs
- Textarea
- Toggle
- Toggle Group
- Tooltip
"use client";
import { CheckIcon, ChevronsUpDownIcon } from "lucide-react";
import { useState } from "react";
import { Button } from "@/components/button/button";The Combobox is built by composing Popover and Command. There is no separate component to install — add the building blocks and compose them.
Installation
$ pnpm dlx shadcn@latest add https://shadcn-cssinjs.vercel.app/r/popover.json npx shadcn@latest add https://shadcn-cssinjs.vercel.app/r/command.json
RTL
To enable right-to-left support, see the RTL guide.
"use client";
import { CheckIcon, ChevronsUpDownIcon } from "lucide-react";
import { useState } from "react";
import { useTranslation } from "@/components/language-selector";API Reference
The Combobox is composed from the Popover and Command components. See their API references for the available props.