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