Function
AutocompleteGroupLabel
({
className,
...props
}: AutocompletePrimitive.GroupLabel.Props)
Source from the content-addressed store, hash-verified
| 179 | } |
| 180 | |
| 181 | export function AutocompleteGroupLabel({ |
| 182 | className, |
| 183 | ...props |
| 184 | }: AutocompletePrimitive.GroupLabel.Props): React.ReactElement { |
| 185 | return ( |
| 186 | <AutocompletePrimitive.GroupLabel |
| 187 | className={cn( |
| 188 | "px-2 py-1.5 font-medium text-muted-foreground text-xs", |
| 189 | className, |
| 190 | )} |
| 191 | data-slot="autocomplete-group-label" |
| 192 | {...props} |
| 193 | /> |
| 194 | ); |
| 195 | } |
| 196 | |
| 197 | export function AutocompleteEmpty({ |
| 198 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected