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 };