Function
ComboboxSeparator
({
className,
...props
}: ComboboxPrimitive.Separator.Props)
Source from the content-addressed store, hash-verified
| 220 | } |
| 221 | |
| 222 | function ComboboxSeparator({ |
| 223 | className, |
| 224 | ...props |
| 225 | }: ComboboxPrimitive.Separator.Props) { |
| 226 | return ( |
| 227 | <ComboboxPrimitive.Separator |
| 228 | data-slot="combobox-separator" |
| 229 | className={cn("bg-border -mx-1 h-px", className)} |
| 230 | {...props} |
| 231 | /> |
| 232 | ); |
| 233 | } |
| 234 | |
| 235 | function ComboboxChips({ |
| 236 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected