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