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 (
|
|
|
|
// eslint-disable-next-line jsx-a11y/anchor-is-valid
|
|
|
|
<a role="button" className="btn btn-full-height" href="#" onClick={onClick}>
|
|
|
|
<Icon type="fw" modifier="bars" classes={{ icon: 'editor-menu-icon' }} />
|
|
|
|
<p className="toolbar-label">{t('menu')}</p>
|
|
|
|
</a>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|