'use client'; import { GripVerticalIcon } from 'lucide-react'; import * as ResizablePrimitive from 'react-resizable-panels'; import { cn } from '@gib/ui'; const ResizablePanelGroup = ({ className, ...props }: ResizablePrimitive.GroupProps) => ( ); const ResizablePanel = ({ ...props }: ResizablePrimitive.PanelProps) => ( ); const ResizableHandle = ({ withHandle, className, ...props }: ResizablePrimitive.SeparatorProps & { withHandle?: boolean; }) => ( div]:rotate-90', className, )} {...props} > {withHandle && (
)}
); export { ResizableHandle, ResizablePanel, ResizablePanelGroup };