import * as React from "react"; import { cn } from "@/lib/utils"; export type ScrollAreaProps = React.HTMLAttributes; const ScrollArea = React.forwardRef( ({ className, children, ...props }, ref) => { return (
{children}
); }, ); ScrollArea.displayName = "ScrollArea"; export { ScrollArea };