'use client' import { forwardRef, ElementRef, ComponentPropsWithoutRef } from 'react' import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area' import { twMerge } from 'tailwind-merge' const ScrollArea = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, children, ...props }, ref) => ( {children} )) ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName const ScrollBar = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, orientation = 'vertical', ...props }, ref) => ( )) ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName export { ScrollArea, ScrollBar }