mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00

Remove proptypes from editor-navigation-toolbar components GitOrigin-RevId: 77a1c4e13e3da6c06bb515b0137da2f70bfdf4a8
17 lines
520 B
TypeScript
17 lines
520 B
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
function MenuButton({ onClick }: { onClick: () => void }) {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className="toolbar-item">
|
|
<button type="button" className="btn btn-full-height" onClick={onClick}>
|
|
<MaterialIcon type="menu" className="editor-menu-icon align-middle" />
|
|
<p className="toolbar-label">{t('menu')}</p>
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default MenuButton
|