Function
ComboboxChipsInput
({
className,
...props
}: ComboboxPrimitive.Input.Props)
Source from the content-addressed store, hash-verified
| 285 | } |
| 286 | |
| 287 | function ComboboxChipsInput({ |
| 288 | className, |
| 289 | ...props |
| 290 | }: ComboboxPrimitive.Input.Props) { |
| 291 | return ( |
| 292 | <ComboboxPrimitive.Input |
| 293 | data-slot="combobox-chip-input" |
| 294 | className={cn( |
| 295 | "min-w-16 flex-1 outline-none focus-visible:ring-1 focus-visible:ring-ring", |
| 296 | className |
| 297 | )} |
| 298 | {...props} |
| 299 | /> |
| 300 | ); |
| 301 | } |
Callers
nothing calls this directly
Tested by
no test coverage detected