import React from "react"; type Props = { active?: boolean; bind: { onPointerDown: (e: React.PointerEvent) => void; onPointerMove: (e: React.PointerEvent) => void; onPointerUp: (e: React.PointerEvent) => void; }; }; /** Bottom-right resize grip for floating panels. */ export function PanelResizeHandle({ active, bind }: Props) { return (
e.stopPropagation()} >
); }