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

{t('share')}

) } ShareProjectButton.propTypes = { onClick: PropTypes.func.isRequired } export default ShareProjectButton