import * as React from 'react'; import { ScrollArea as ScrollAreaPrimitive } from 'radix-ui'; import { cn } from '@/lib/utils'; function ScrollArea({ className, children, viewportRef, ...props }: React.ComponentProps & { /** Ref to the scrollable viewport, e.g. for scroll anchoring or observers. */ viewportRef?: React.Ref; }) { return ( {children} ); } function ScrollBar({ className, orientation = 'vertical', ...props }: React.ComponentProps) { return ( ); } export { ScrollArea, ScrollBar };