import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area" import * as React from "react" import { rootStyle, rootViewPortStyle, scrollAreaThumbStyle, scrollBarHorizontalStyle, scrollBarVerticalStyle } from "./variants" const RootScrollArea = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function RootScrollAreaEloquent({ className, children, ...props }, ref) { return ( {children} ) }) const ScrollBar = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function ScrollBarEloquent({ className, orientation = "vertical", ...props }, ref) { return ( ) }) export const ScrollArea = { Root: RootScrollArea, ScrollBar }