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