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