mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-28 18:01:46 +02:00
27 lines
700 B
JavaScript
27 lines
700 B
JavaScript
|
|
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 (
|
|
<div className={classNames.join(' ')} />
|
|
);
|
|
};
|
|
|
|
ResizeHandle.propTypes = {
|
|
vertical: PropTypes.bool,
|
|
reverse: PropTypes.bool,
|
|
};
|
|
|
|
export default ResizeHandle;
|