import * as React from "react" import { GripVerticalIcon } from "lucide-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 bg-[#434345] hover:bg-[#2a2a2c] active:bg-[#1a1a1c] transition-colors duration-150", className )} {...props} > {withHandle && (
)}
) } export { ResizablePanelGroup, ResizablePanel, ResizableHandle }