import * as React from 'react' import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area' import { cn } from '@/lib/utils' interface ScrollAreaProps extends React.ComponentProps { orientation?: 'vertical' | 'horizontal' } function ScrollArea({ className, children, orientation = 'vertical', ...props }: ScrollAreaProps) { return ( {children} ) } function ScrollBar({ className, orientation = 'vertical', ...props }: React.ComponentProps) { return ( ) } export { ScrollArea, ScrollBar }