({
className,
...props
}: React.ComponentProps<typeof AutocompleteGroup>)
| 172 | } |
| 173 | |
| 174 | function CommandGroup({ |
| 175 | className, |
| 176 | ...props |
| 177 | }: React.ComponentProps<typeof AutocompleteGroup>) { |
| 178 | return ( |
| 179 | <AutocompleteGroup |
| 180 | className={className} |
| 181 | data-slot="command-group" |
| 182 | {...props} |
| 183 | /> |
| 184 | ); |
| 185 | } |
| 186 | |
| 187 | function CommandGroupLabel({ |
| 188 | className, |
nothing calls this directly
no outgoing calls
no test coverage detected