Current section

Files

Jump to
thesis web static js components settings_button.js
Raw

web/static/js/components/settings_button.js

import React from 'react'
class SettingsButton extends React.Component {
render () {
return (
<div onClick={this.props.onPress} className="thesis-button settings">
<div className="tooltip">
Page Settings
</div><i className="fa fa-wrench fa-2x"></i>
</div>
)
}
}
export default SettingsButton