From 86971438e5c67c3c476853938f76756a13373a93 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:17 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/scroll-area.tsx | 44 ------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 src/components/ui/scroll-area.tsx diff --git a/src/components/ui/scroll-area.tsx b/src/components/ui/scroll-area.tsx deleted file mode 100644 index 69febe5..0000000 --- a/src/components/ui/scroll-area.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import * as React from "react"; -import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area"; - -import { cn } from "@/lib/utils"; - -const ScrollArea = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, children, ...props }, ref) => ( - - - {children} - - - - -)); -ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName; - -const ScrollBar = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, orientation = "vertical", ...props }, ref) => ( - - - -)); -ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName; - -export { ScrollArea, ScrollBar };