| 166 | } |
| 167 | |
| 168 | function SelectScrollUpButton({ |
| 169 | className, |
| 170 | ...props |
| 171 | }: React.ComponentProps<typeof SelectPrimitive.ScrollUpArrow>) { |
| 172 | return ( |
| 173 | <SelectPrimitive.ScrollUpArrow |
| 174 | data-slot="select-scroll-up-button" |
| 175 | className={cn( |
| 176 | "bg-popover z-10 flex cursor-default items-center justify-center py-1 [&_svg:not([class*='size-'])]:size-4 top-0 w-full", |
| 177 | className |
| 178 | )} |
| 179 | {...props} |
| 180 | > |
| 181 | <HugeiconsIcon icon={ArrowUp01Icon} strokeWidth={2} /> |
| 182 | </SelectPrimitive.ScrollUpArrow> |
| 183 | ); |
| 184 | } |
| 185 | |
| 186 | function SelectScrollDownButton({ |
| 187 | className, |