mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8ca159b4b9
PDF Detach GitOrigin-RevId: f69d8a87d1ba2115ad496a719106dfc7707a6ed5
22 lines
562 B
JavaScript
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
|