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