import React from 'react'; import { PanelResizeHandle as PanelResizeHandleImpl, type PanelResizeHandleProps } from 'react-resizable-panels'; import { clsx } from 'clsx'; import styles from './PanelResizeDragHandle.module.css'; export function PanelResizeDragHandle({ className, ...props }: PanelResizeHandleProps) { return (
); }