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