# ComboBox **Category**: react **URL**: https://www.blakeui.com/en/docs/react/components/combo-box **Source**: https://raw.githubusercontent.com/myblakebox/BlakeUI/refs/heads/main/apps/docs/content/docs/en/react/components/(pickers)/combo-box.mdx > A combo box combines a text input with a listbox, allowing users to filter a list of options to items matching a query *** ## Import ```tsx import { ComboBox } from '@blakeui/react'; ``` ### Usage ```tsx "use client"; import {ComboBox, Input, Label, ListBox} from "@blakeui/react"; export function Default() { return ( Aardvark Cat Dog Kangaroo Panda Snake ); } ``` ### Anatomy Import the ComboBox component and access all parts using dot notation. ```tsx import { ComboBox, Input, Label, Description, Header, ListBox, Separator } from '@blakeui/react'; export default () => (