Function
CommandList
({
className,
...props
}: React.ComponentProps<typeof AutocompleteList>)
Source from the content-addressed store, hash-verified
| 134 | } |
| 135 | |
| 136 | export function CommandList({ |
| 137 | className, |
| 138 | ...props |
| 139 | }: React.ComponentProps<typeof AutocompleteList>): React.ReactElement { |
| 140 | return ( |
| 141 | <AutocompleteList |
| 142 | className={cn("not-empty:scroll-py-2 not-empty:p-2", className)} |
| 143 | data-slot="command-list" |
| 144 | {...props} |
| 145 | /> |
| 146 | ); |
| 147 | } |
| 148 | |
| 149 | export function CommandEmpty({ |
| 150 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected