Function
ComboboxLabel
({
className,
...props
}: ComboboxPrimitive.GroupLabel.Props)
Source from the content-addressed store, hash-verified
| 188 | } |
| 189 | |
| 190 | function ComboboxLabel({ |
| 191 | className, |
| 192 | ...props |
| 193 | }: ComboboxPrimitive.GroupLabel.Props) { |
| 194 | return ( |
| 195 | <ComboboxPrimitive.GroupLabel |
| 196 | data-slot="combobox-label" |
| 197 | className={cn("text-muted-foreground px-2 py-2 text-xs", className)} |
| 198 | {...props} |
| 199 | /> |
| 200 | ); |
| 201 | } |
| 202 | |
| 203 | function ComboboxCollection({ ...props }: ComboboxPrimitive.Collection.Props) { |
| 204 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected