`.
### Command.InputGroup
The search field container. Renders a React Aria `SearchField`.
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `autoFocus` | `boolean` | `true` | Whether the input is focused when the palette opens. |
Also supports all React Aria [SearchField](https://react-spectrum.adobe.com/react-aria/SearchField.html) props.
### Command.InputGroup.Prefix
Leading content inside the input group. Defaults to a search icon. Renders a plain `
`.
### Command.InputGroup.Input
The text input element for searching commands.
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `placeholder` | `string` | `'Search commands...'` | Placeholder text. |
Also supports all React Aria [Input](https://react-spectrum.adobe.com/react-aria/TextField.html) props.
### Command.InputGroup.Suffix
Trailing content inside the input group. Renders a plain `
`.
### Command.InputGroup.ClearButton
A button that clears the search input. Automatically hidden when the input is empty.
Also supports all [CloseButton](/react/components/close-button) props.
### Command.List
The scrollable list of command items. Backed by React Aria `Menu`.
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `renderEmptyState` | `() => ReactNode` | `No results found.` | Custom empty state content when no items match. |
| `onAction` | `(key: Key) => void` | — | Called when an item is activated. |
Also supports all React Aria [Menu](https://react-spectrum.adobe.com/react-aria/Menu.html) props.
### Command.Group
Groups related items under a heading.
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `heading` | `ReactNode` | — | Heading label for the group. |
Also supports all React Aria [MenuSection](https://react-spectrum.adobe.com/react-aria/Menu.html#sections) props.
### Command.Item
An individual command entry. Supports icons, labels, and trailing keyboard shortcuts.
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `textValue` | `string` | — | Text used for filtering and typeahead. |
| `isDisabled` | `boolean` | `false` | Whether the item is disabled. |
Also supports all React Aria [MenuItem](https://react-spectrum.adobe.com/react-aria/Menu.html#menuitem) props.
### Command.Separator
A horizontal divider between groups. Renders a React Aria `Separator`.
### Command.Footer
Content area below the list (e.g. keyboard shortcut hints). Renders a plain `
`.