"use client" import { cn } from "@lib/utils" import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area" import type * as React from "react" function ScrollArea({ className, children, ...props }: React.ComponentProps) { return ( {children} ) } function ScrollBar({ className, orientation = "vertical", ...props }: React.ComponentProps) { return ( ) } export { ScrollArea, ScrollBar }