import { GripVerticalIcon } from 'lucide-react'; import * as React from 'react'; import * as ResizablePrimitive from 'react-resizable-panels'; import { cn } from '@/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, )} {...props} > {withHandle && (
)}
); } export { ResizableHandle, ResizablePanel, ResizablePanelGroup };