import { forwardRef } from 'react'; import * as SelectPrimitive from '@radix-ui/react-select'; import { ChevronUpIcon } from 'lucide-react'; import { cn } from '#utils'; export const SelectScrollUpButton = forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function SelectScrollUpButton({ className, ...props }, ref) { return ( ); });