'use client'; import type * as React from 'react'; import { ScrollArea as ScrollAreaPrimitive } from 'radix-ui'; import { cn } from '@gib/ui'; const ScrollArea = ({ className, children, ...props }: React.ComponentProps) => ( {children} ); const ScrollBar = ({ className, orientation = 'vertical', ...props }: React.ComponentProps) => ( ); export { ScrollArea, ScrollBar };