({
className,
...props
}: React.ComponentProps<typeof AutocompleteGroupLabel>)
| 188 | } |
| 189 | |
| 190 | export function CommandGroupLabel({ |
| 191 | className, |
| 192 | ...props |
| 193 | }: React.ComponentProps<typeof AutocompleteGroupLabel>): React.ReactElement { |
| 194 | return ( |
| 195 | <AutocompleteGroupLabel |
| 196 | className={className} |
| 197 | data-slot="command-group-label" |
| 198 | {...props} |
| 199 | /> |
| 200 | ); |
| 201 | } |
| 202 | |
| 203 | export function CommandCollection({ |
| 204 | ...props |
nothing calls this directly
no outgoing calls
no test coverage detected