GLMPilot / packages /client /src /components /ui /scroll-area.tsx
E5K7's picture
Initial commit: Rebranded to GLMPilot and migrated to GLM-5 API
c2c8c8d
import * as React from 'react';
import { cn } from '@/lib/utils';
const ScrollArea = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>(
({ className, children, ...props }, ref) => (
<div ref={ref} className={cn('relative overflow-auto', className)} {...props}>
{children}
</div>
)
);
ScrollArea.displayName = 'ScrollArea';
export { ScrollArea };