import * as S from '@radix-ui/react-scroll-area'; import classnames from 'classnames'; import type { ReactNode } from 'react'; interface Props { children: ReactNode; className?: string; } export function ScrollArea({ children, className }: Props) { return ( {children} ); } function ScrollBar({ orientation }: { orientation: 'vertical' | 'horizontal' }) { return ( ); }