import * as React from "react"; import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area"; import { cn } from "@/lib//utils"; const ScrollArea = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, children, onScroll, ...props }, ref) => ( {children} )); function ScrollBar({ className, orientation = "vertical", ...props }: React.ComponentProps) { return ( ); } export { ScrollArea, ScrollBar };