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