Function
AutocompleteGroupLabel
({
className,
...props
}: AutocompletePrimitive.GroupLabel.Props)
Source from the content-addressed store, hash-verified
| 153 | } |
| 154 | |
| 155 | function AutocompleteGroupLabel({ |
| 156 | className, |
| 157 | ...props |
| 158 | }: AutocompletePrimitive.GroupLabel.Props) { |
| 159 | return ( |
| 160 | <AutocompletePrimitive.GroupLabel |
| 161 | className={cn( |
| 162 | "px-2 py-1.5 font-medium text-muted-foreground text-xs", |
| 163 | className, |
| 164 | )} |
| 165 | data-slot="autocomplete-group-label" |
| 166 | {...props} |
| 167 | /> |
| 168 | ); |
| 169 | } |
| 170 | |
| 171 | function AutocompleteEmpty({ |
| 172 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected