'use client';
import { GripVerticalIcon } from 'lucide-react';
import * as ResizablePrimitive from 'react-resizable-panels';
import { cn } from '../../src/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 };