mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
92eade7502
[web] BS5 pdf toolbar GitOrigin-RevId: a04091c9e936e52f47c3977b3149ffe613d43bb9
32 lines
906 B
JavaScript
32 lines
906 B
JavaScript
import { useTranslation } from 'react-i18next'
|
|
import * as eventTracking from '../../../infrastructure/event-tracking'
|
|
import OLButton from '@/features/ui/components/ol/ol-button'
|
|
import { bsVersion } from '@/features/utils/bootstrap-5'
|
|
import classnames from 'classnames'
|
|
|
|
function UpgradePrompt() {
|
|
const { t } = useTranslation()
|
|
|
|
function handleClick(e) {
|
|
eventTracking.send('subscription-funnel', 'code-editor', 'upgrade')
|
|
eventTracking.sendMB('upgrade-button-click', { source: 'code-editor' })
|
|
}
|
|
|
|
return (
|
|
<OLButton
|
|
variant="primary"
|
|
size="sm"
|
|
className={classnames(
|
|
'toolbar-header-upgrade-prompt',
|
|
bsVersion({ bs3: 'btn-xs' })
|
|
)}
|
|
href="/user/subscription/plans?itm_referrer=editor-header-upgrade-prompt"
|
|
target="_blank"
|
|
onClick={handleClick}
|
|
>
|
|
{t('upgrade')}
|
|
</OLButton>
|
|
)
|
|
}
|
|
|
|
export default UpgradePrompt
|