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