Function
ComboboxEmpty
({ className, ...props }: ComboboxPrimitive.Empty.Props)
Source from the content-addressed store, hash-verified
| 207 | } |
| 208 | |
| 209 | function ComboboxEmpty({ className, ...props }: ComboboxPrimitive.Empty.Props) { |
| 210 | return ( |
| 211 | <ComboboxPrimitive.Empty |
| 212 | data-slot="combobox-empty" |
| 213 | className={cn( |
| 214 | "text-muted-foreground hidden w-full justify-center py-2 text-center text-xs group-data-empty/combobox-content:flex", |
| 215 | className |
| 216 | )} |
| 217 | {...props} |
| 218 | /> |
| 219 | ); |
| 220 | } |
| 221 | |
| 222 | function ComboboxSeparator({ |
| 223 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected