({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>)
| 159 | } |
| 160 | |
| 161 | function SelectScrollUpButton({ |
| 162 | className, |
| 163 | ...props |
| 164 | }: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>) { |
| 165 | return ( |
| 166 | <SelectPrimitive.ScrollUpButton |
| 167 | data-slot="select-scroll-up-button" |
| 168 | className={cn( |
| 169 | "flex cursor-default items-center justify-center py-1", |
| 170 | className |
| 171 | )} |
| 172 | {...props} |
| 173 | > |
| 174 | <ChevronUpIcon className="size-4" /> |
| 175 | </SelectPrimitive.ScrollUpButton> |
| 176 | ) |
| 177 | } |
| 178 | |
| 179 | function SelectScrollDownButton({ |
| 180 | className, |