summaryrefslogtreecommitdiffstats
path: root/webapp/components/sidebar_header_dropdown_button.jsx
blob: f922af448f4e622bc3e10803789f4ed0a8721f67 (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
// 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: React.PropTypes.oneOf(['toggle']).isRequired, // eslint-disable-line react/no-unused-prop-types
        onClick: React.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>
        );
    }
}