"use client"; 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, ...properties }: React.ComponentProps) { return ( ); } function ResizablePanel({ ...properties }: React.ComponentProps) { return ( ); } function ResizableHandle({ withHandle, className, ...properties }: React.ComponentProps & { withHandle?: boolean; }) { return ( div]:rotate-90", className, )} {...properties} > {withHandle && (
)}
); } export { ResizablePanelGroup, ResizablePanel, ResizableHandle };