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