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