overleaf/services/web/frontend/js/features/editor-navigation-toolbar/components/share-project-button.js
Timothée Alby 8ca159b4b9 Merge pull request #5797 from overleaf/ta-pdf-detach
PDF Detach

GitOrigin-RevId: f69d8a87d1ba2115ad496a719106dfc7707a6ed5
2021-11-16 09:02:57 +00:00

22 lines
562 B
JavaScript

import PropTypes from 'prop-types'
import { useTranslation } from 'react-i18next'
import Icon from '../../../shared/components/icon'
function ShareProjectButton({ onClick }) {
const { t } = useTranslation()
return (
<div className="toolbar-item">
<button className="btn btn-full-height" onClick={onClick}>
<Icon type="fw" modifier="group" />
<p className="toolbar-label">{t('share')}</p>
</button>
</div>
)
}
ShareProjectButton.propTypes = {
onClick: PropTypes.func.isRequired,
}
export default ShareProjectButton