blob: 45e40f655febc48d4a76916cd7b32f51e3d32ff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import PropTypes from 'prop-types';
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import Constants from 'utils/constants.jsx';
export default class SidebarHeaderDropdownButton extends React.PureComponent {
static propTypes = {
bsRole: PropTypes.oneOf(['toggle']).isRequired, // eslint-disable-line react/no-unused-prop-types
onClick: PropTypes.func.isRequired
};
render() {
return (
<a
href='#'
id='sidebarHeaderDropdownButton'
className='sidebar-header-dropdown__toggle'
onClick={this.props.onClick}
>
<span
className='sidebar-header-dropdown__icon'
dangerouslySetInnerHTML={{__html: Constants.MENU_ICON}}
/>
</a>
);
}
}
|