overleaf/services/web/frontend/js/shared/components/upgrade-benefits.jsx

56 lines
1.1 KiB
React
Raw Normal View History

import Icon from './icon'
import MaterialIcon from '@/shared/components/material-icon'
import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher'
import { useTranslation } from 'react-i18next'
import { memo } from 'react'
function Check() {
return (
<BootstrapVersionSwitcher
bs3={<Icon type="check" />}
bs5={<MaterialIcon type="check" />}
/>
)
}
function UpgradeBenefits() {
const { t } = useTranslation()
return (
<ul className="list-unstyled upgrade-benefits">
<li>
<Check />
&nbsp;
{t('unlimited_projects')}
</li>
<li>
<Check />
&nbsp;
{t('collabs_per_proj', { collabcount: 'Multiple' })}
</li>
<li>
<Check />
&nbsp;
{t('full_doc_history')}
</li>
<li>
<Check />
&nbsp;
{t('sync_to_dropbox')}
</li>
<li>
<Check />
&nbsp;
{t('sync_to_github')}
</li>
<li>
<Check />
&nbsp;
{t('compile_larger_projects')}
</li>
</ul>
)
}
export default memo(UpgradeBenefits)