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