Function
SelectSeparator
({
className,
...props
}: SelectPrimitive.Separator.Props)
Source from the content-addressed store, hash-verified
| 153 | } |
| 154 | |
| 155 | function SelectSeparator({ |
| 156 | className, |
| 157 | ...props |
| 158 | }: SelectPrimitive.Separator.Props) { |
| 159 | return ( |
| 160 | <SelectPrimitive.Separator |
| 161 | data-slot="select-separator" |
| 162 | className={cn("bg-border -mx-1 h-px pointer-events-none", className)} |
| 163 | {...props} |
| 164 | /> |
| 165 | ); |
| 166 | } |
| 167 | |
| 168 | function SelectScrollUpButton({ |
| 169 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected