import type { PointerEvent as ReactPointerEvent } from 'react'; import { cn } from '../utils.js'; type ResizeHandleProps = { className?: string; isDragging: boolean; isHidden?: boolean; orientation: 'horizontal' | 'vertical'; label: string; onPointerDown: (event: ReactPointerEvent) => void; }; export const ResizeHandle = ({ className, isDragging, isHidden = false, orientation, label, onPointerDown, }: ResizeHandleProps) => { return (
); };