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
18 lines
594 B
TypeScript
18 lines
594 B
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
function ShareProjectButton({ onClick }: { onClick: () => void }) {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className="toolbar-item">
|
|
<button type="button" className="btn btn-full-height" onClick={onClick}>
|
|
<MaterialIcon type="group_add" className="align-middle" />
|
|
<p className="toolbar-label">{t('share')}</p>
|
|
</button>
|
|
<div id="toolbar-cio-share" className="toolbar-cio-tooltip" />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ShareProjectButton
|