Function
ComboboxList
({ className, ...props }: ComboboxPrimitive.List.Props)
Source from the content-addressed store, hash-verified
| 135 | } |
| 136 | |
| 137 | function ComboboxList({ className, ...props }: ComboboxPrimitive.List.Props) { |
| 138 | return ( |
| 139 | <ComboboxPrimitive.List |
| 140 | data-slot="combobox-list" |
| 141 | className={cn( |
| 142 | "no-scrollbar max-h-[min(calc(--spacing(72)---spacing(9)),calc(var(--available-height)---spacing(9)))] scroll-py-1 overflow-y-auto data-empty:p-0 overflow-y-auto overscroll-contain", |
| 143 | className |
| 144 | )} |
| 145 | {...props} |
| 146 | /> |
| 147 | ); |
| 148 | } |
| 149 | |
| 150 | function ComboboxItem({ |
| 151 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected