import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area"; import type * as React from "react"; import { cn } from "../lib/utils"; export function ScrollArea({ className, children, ...props }: React.ComponentPropsWithoutRef) { return ( {children} ); } function ScrollBar({ className, orientation = "vertical", ...props }: React.ComponentPropsWithoutRef) { return ( ); }