"use client"; import * as React from "react"; import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area"; import { cn } from "@/lib/utils"; const ScrollArea = ({ ref, className, children, ...props }: React.ComponentPropsWithoutRef & { ref: React.RefObject>; }) => ( {children} ); ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName; const ScrollBar = ({ ref, className, orientation = "vertical", ...props }: React.ComponentPropsWithoutRef< typeof ScrollAreaPrimitive.ScrollAreaScrollbar > & { ref: React.RefObject< React.ElementRef >; }) => ( ); ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName; export { ScrollArea, ScrollBar };