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