2026-05-16 19:17:34 +07:00
|
|
|
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
|
|
|
|
|
import type * as React from "react";
|
2026-06-01 16:42:36 +07:00
|
|
|
import { cn } from "../lib/utils";
|
2026-05-16 19:17:34 +07:00
|
|
|
|
|
|
|
|
export function ScrollArea({ className, children, ...props }: React.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root>) {
|
|
|
|
|
return (
|
|
|
|
|
<ScrollAreaPrimitive.Root className={cn("relative overflow-hidden", className)} {...props}>
|
|
|
|
|
<ScrollAreaPrimitive.Viewport className="h-full w-full rounded-[inherit]">{children}</ScrollAreaPrimitive.Viewport>
|
|
|
|
|
<ScrollBar />
|
|
|
|
|
<ScrollAreaPrimitive.Corner />
|
|
|
|
|
</ScrollAreaPrimitive.Root>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-01 16:42:36 +07:00
|
|
|
function ScrollBar({
|
|
|
|
|
className,
|
|
|
|
|
orientation = "vertical",
|
|
|
|
|
...props
|
|
|
|
|
}: React.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>) {
|
2026-05-16 19:17:34 +07:00
|
|
|
return (
|
|
|
|
|
<ScrollAreaPrimitive.ScrollAreaScrollbar
|
|
|
|
|
orientation={orientation}
|
|
|
|
|
className={cn(
|
|
|
|
|
"flex touch-none select-none transition-colors",
|
|
|
|
|
orientation === "vertical" && "h-full w-2.5 border-l border-l-transparent p-[1px]",
|
|
|
|
|
orientation === "horizontal" && "h-2.5 flex-col border-t border-t-transparent p-[1px]",
|
|
|
|
|
className,
|
|
|
|
|
)}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<ScrollAreaPrimitive.ScrollAreaThumb className="relative flex-1 rounded-full bg-border" />
|
|
|
|
|
</ScrollAreaPrimitive.ScrollAreaScrollbar>
|
|
|
|
|
);
|
|
|
|
|
}
|