"use client"; import { ScrollArea as ScrollAreaPrimitive } from "@base-ui/react/scroll-area"; import type React from "react"; import { cn } from "@/lib/utils"; export function ScrollArea({ className, children, scrollFade = false, scrollbarGutter = false, fill = false, clampContentMinWidth = true, ...props }: ScrollAreaPrimitive.Root.Props & { scrollFade?: boolean; scrollbarGutter?: boolean; fill?: boolean; clampContentMinWidth?: boolean; }): React.ReactElement { return ( {children} ); } export function ScrollBar({ className, orientation = "vertical", ...props }: ScrollAreaPrimitive.Scrollbar.Props): React.ReactElement { return ( ); } export { ScrollAreaPrimitive };