import * as React from 'react'; import { cn } from '@/lib/utils'; const ScrollArea = React.forwardRef>( ({ className, children, ...props }, ref) => (
{children}
) ); ScrollArea.displayName = 'ScrollArea'; export { ScrollArea };