"use client" import * as ResizablePrimitive from "react-resizable-panels" import { cn } from "@/lib/utils" function ResizablePanelGroup({ className, ...props }: ResizablePrimitive.GroupProps) { return ( ) } function ResizablePanel({ ...props }: ResizablePrimitive.PanelProps) { return } function ResizableHandle({ withHandle, className, ...props }: ResizablePrimitive.SeparatorProps & { withHandle?: boolean }) { return ( div]:rotate-90", className )} {...props} > {withHandle && (
)} ) } export { ResizableHandle, ResizablePanel, ResizablePanelGroup }