'use client' import { GripVerticalIcon } from 'lucide-react' import type * as React from 'react' import * as ResizablePrimitive from 'react-resizable-panels' import { cn } from '@workspace/ui/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', className )} data-slot='resizable-handle' {...props} > {withHandle && (
)}
) } export { ResizablePanelGroup, ResizablePanel, ResizableHandle }