From 61679a87367bc13fa5e12f5c3e2b28a10ef24270 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:16 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/resizable.tsx | 37 --------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/components/ui/resizable.tsx diff --git a/src/components/ui/resizable.tsx b/src/components/ui/resizable.tsx deleted file mode 100644 index 02e9460..0000000 --- a/src/components/ui/resizable.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { GripVertical } from "lucide-react"; -import { Group, Panel, Separator } from "react-resizable-panels"; - -import { cn } from "@/lib/utils"; - -const ResizablePanelGroup = ({ className, ...props }: React.ComponentProps) => ( - -); - -const ResizablePanel = Panel; - -const ResizableHandle = ({ - withHandle, - className, - ...props -}: React.ComponentProps & { - withHandle?: boolean; -}) => ( - div]:rotate-90", - className, - )} - {...props} - > - {withHandle && ( -
- -
- )} -
-); - -export { ResizablePanelGroup, ResizablePanel, ResizableHandle };