({
autoHighlight = "always",
keepHighlight = true,
open = true,
...props
}: React.ComponentProps<typeof Autocomplete>)
| 97 | } |
| 98 | |
| 99 | function Command({ |
| 100 | autoHighlight = "always", |
| 101 | keepHighlight = true, |
| 102 | open = true, |
| 103 | ...props |
| 104 | }: React.ComponentProps<typeof Autocomplete>) { |
| 105 | return ( |
| 106 | <Autocomplete |
| 107 | autoHighlight={autoHighlight} |
| 108 | keepHighlight={keepHighlight} |
| 109 | open={open} |
| 110 | {...props} |
| 111 | /> |
| 112 | ); |
| 113 | } |
| 114 | |
| 115 | function CommandInput({ |
| 116 | className, |
nothing calls this directly
no outgoing calls
no test coverage detected