({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>)
| 132 | } |
| 133 | |
| 134 | function SelectScrollUpButton({ |
| 135 | className, |
| 136 | ...props |
| 137 | }: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>) { |
| 138 | return ( |
| 139 | <SelectPrimitive.ScrollUpButton |
| 140 | data-slot="select-scroll-up-button" |
| 141 | className={cn( |
| 142 | "flex cursor-default items-center justify-center py-1", |
| 143 | className, |
| 144 | )} |
| 145 | {...props} |
| 146 | > |
| 147 | <ChevronUpIcon className="size-4" /> |
| 148 | </SelectPrimitive.ScrollUpButton> |
| 149 | ); |
| 150 | } |
| 151 | |
| 152 | function SelectScrollDownButton({ |
| 153 | className, |