Function
CommandItem
({
className,
...props
}: React.ComponentProps<typeof AutocompleteItem>)
Source from the content-addressed store, hash-verified
| 207 | } |
| 208 | |
| 209 | export function CommandItem({ |
| 210 | className, |
| 211 | ...props |
| 212 | }: React.ComponentProps<typeof AutocompleteItem>): React.ReactElement { |
| 213 | return ( |
| 214 | <AutocompleteItem |
| 215 | className={cn("py-1.5", className)} |
| 216 | data-slot="command-item" |
| 217 | {...props} |
| 218 | /> |
| 219 | ); |
| 220 | } |
| 221 | |
| 222 | export function CommandSeparator({ |
| 223 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected