diff --git a/src/components/ui/resizable.tsx b/src/components/ui/resizable.tsx deleted file mode 100644 index 63b6d02..0000000 --- a/src/components/ui/resizable.tsx +++ /dev/null @@ -1,53 +0,0 @@ -"use client" - -import * as React from "react" -import * as ResizablePrimitive from "react-resizable-panels" - -import { cn } from "@/lib/utils" - -function ResizablePanelGroup({ - className, - ...props -}: React.ComponentProps) { - return ( - - ) -} - -function ResizablePanel({ - ...props -}: React.ComponentProps) { - return -} - -function ResizableHandle({ - withHandle, - className, - ...props -}: React.ComponentProps & { - withHandle?: boolean -}) { - return ( - div]:rotate-90", - className - )} - {...props} - > - {withHandle && ( -
- )} - - ) -} - -export { ResizablePanelGroup, ResizablePanel, ResizableHandle }