Function
SelectSeparator
({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.Separator>)
Source from the content-addressed store, hash-verified
| 121 | } |
| 122 | |
| 123 | function SelectSeparator({ |
| 124 | className, |
| 125 | ...props |
| 126 | }: React.ComponentProps<typeof SelectPrimitive.Separator>) { |
| 127 | return ( |
| 128 | <SelectPrimitive.Separator |
| 129 | data-slot="select-separator" |
| 130 | className={cn("bg-border pointer-events-none -mx-1 my-1 h-px", className)} |
| 131 | {...props} |
| 132 | /> |
| 133 | ) |
| 134 | } |
| 135 | |
| 136 | function SelectScrollUpButton({ |
| 137 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected