2021-03-10 07:19:54 -05:00
|
|
|
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 = {
|
2021-04-27 03:52:58 -04:00
|
|
|
onClick: PropTypes.func.isRequired,
|
2021-03-10 07:19:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default ShareProjectButton
|