import { cn } from '@affine/admin/utils'; import { GripVertical } from 'lucide-react'; import * as ResizablePrimitive from 'react-resizable-panels'; const ResizablePanelGroup = ({ className, ...props }: React.ComponentProps) => ( ); const ResizablePanel = ResizablePrimitive.Panel; const ResizableHandle = ({ withHandle, className, ...props }: React.ComponentProps & { withHandle?: boolean; }) => ( div]:rotate-90', className )} {...props} > {withHandle && (
)}
); export { ResizableHandle, ResizablePanel, ResizablePanelGroup };