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