2021-03-10 07:19:54 -05:00
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import Icon from '../../../shared/components/icon'
|
2024-09-04 03:52:08 -04:00
|
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher'
|
2021-03-10 07:19:54 -05:00
|
|
|
|
|
|
|
function ShareProjectButton({ onClick }) {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
return (
|
2021-11-15 11:33:57 -05:00
|
|
|
<div className="toolbar-item">
|
2024-09-04 03:52:08 -04:00
|
|
|
<button type="button" className="btn btn-full-height" onClick={onClick}>
|
|
|
|
<BootstrapVersionSwitcher
|
|
|
|
bs3={<Icon type="group" fw />}
|
2024-10-11 05:23:54 -04:00
|
|
|
bs5={<MaterialIcon type="group_add" className="align-middle" />}
|
2024-09-04 03:52:08 -04:00
|
|
|
/>
|
2021-11-15 11:33:57 -05:00
|
|
|
<p className="toolbar-label">{t('share')}</p>
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-03-10 07:19:54 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|