import * as React from "react" import { cn } from "@/lib/utils" export type ScrollBoxProps = React.ComponentProps<"div"> & { orientation?: "vertical" | "horizontal" | "both" viewportClassName?: string } function ScrollBox({ orientation = "vertical", className, viewportClassName, children, ...props }: ScrollBoxProps) { return (
{children}
) } export { ScrollBox }