"use client" import { GripVertical } from "lucide-react" import * as ResizablePrimitive from "react-resizable-panels" import * as React from "react" import { cn } from "@/lib/utils" const ResizablePanelGroup = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) ResizablePanelGroup.displayName = "ResizablePanelGroup" const ResizablePanel = ResizablePrimitive.Panel const ResizableHandle = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & { withHandle?: boolean } >(({ withHandle, className, ...props }, ref) => ( div]:rotate-90", className )} {...props} > {withHandle && (
)}
)) ResizableHandle.displayName = "ResizableHandle" export { ResizablePanelGroup, ResizablePanel, ResizableHandle }