bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/common/control-header/left/component.jsx
2022-09-09 10:19:04 -03:00

31 lines
559 B
JavaScript

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import Styled from './styles';
class Left extends Component {
constructor(props) {
super(props);
}
render() {
return (
<Styled.HideButton
className="buttonWrapper"
icon="left_arrow"
tabIndex={0}
{...this.props}
/>
);
}
}
Left.propTypes = {
accessKey: PropTypes.any,
'aria-label': PropTypes.string,
'data-test': PropTypes.string,
label: PropTypes.string,
onClick: PropTypes.func,
};
export default Left;