import React from 'react'; // eslint-disable-line no-unused-vars import PropTypes from 'prop-types'; //see src/resizer for the actual resizing code, this is just the DOM for the resize handle const ResizeHandle = (props) => { const classNames = ['mx_ResizeHandle']; if (props.vertical) { classNames.push('mx_ResizeHandle_vertical'); } else { classNames.push('mx_ResizeHandle_horizontal'); } if (props.reverse) { classNames.push('mx_ResizeHandle_reverse'); } return (