({
...props
}: AutocompletePrimitive.Collection.Props)
| 284 | } |
| 285 | |
| 286 | export function AutocompleteCollection({ |
| 287 | ...props |
| 288 | }: AutocompletePrimitive.Collection.Props): React.ReactElement { |
| 289 | return ( |
| 290 | <AutocompletePrimitive.Collection |
| 291 | data-slot="autocomplete-collection" |
| 292 | {...props} |
| 293 | /> |
| 294 | ); |
| 295 | } |
| 296 | |
| 297 | export function AutocompleteTrigger({ |
| 298 | className, |
nothing calls this directly
no outgoing calls
no test coverage detected