mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
23 lines
668 B
JavaScript
23 lines
668 B
JavaScript
|
import React from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
import { useTranslation } from 'react-i18next'
|
||
|
import Icon from '../../../shared/components/icon'
|
||
|
|
||
|
function ShareProjectButton({ onClick }) {
|
||
|
const { t } = useTranslation()
|
||
|
|
||
|
return (
|
||
|
// eslint-disable-next-line jsx-a11y/anchor-is-valid,jsx-a11y/click-events-have-key-events,jsx-a11y/interactive-supports-focus
|
||
|
<a role="button" className="btn btn-full-height" onClick={onClick}>
|
||
|
<Icon type="fw" modifier="group" />
|
||
|
<p className="toolbar-label">{t('share')}</p>
|
||
|
</a>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
ShareProjectButton.propTypes = {
|
||
|
onClick: PropTypes.func.isRequired
|
||
|
}
|
||
|
|
||
|
export default ShareProjectButton
|