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