2021-01-27 05:30:55 -05:00
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import Icon from '../../../shared/components/icon'
|
|
|
|
|
|
|
|
function MenuButton({ onClick }) {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
return (
|
2021-12-08 04:07:11 -05:00
|
|
|
<div className="toolbar-item">
|
|
|
|
<button className="btn btn-full-height" onClick={onClick}>
|
2022-01-19 06:56:57 -05:00
|
|
|
<Icon type="bars" fw className="editor-menu-icon" />
|
2021-12-08 04:07:11 -05:00
|
|
|
<p className="toolbar-label">{t('menu')}</p>
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-01-27 05:30:55 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuButton.propTypes = {
|
2021-04-27 03:52:58 -04:00
|
|
|
onClick: PropTypes.func.isRequired,
|
2021-01-27 05:30:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default MenuButton
|