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