mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 19:33:41 -05:00
1b42fb7a89
Migrate symbol palette to Bootstrap 5 GitOrigin-RevId: c014199d1266092a3cdf7df6e98a9a4d5f318c15
55 lines
1.1 KiB
JavaScript
55 lines
1.1 KiB
JavaScript
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 />
|
|
|
|
{t('unlimited_projects')}
|
|
</li>
|
|
<li>
|
|
<Check />
|
|
|
|
{t('collabs_per_proj', { collabcount: 'Multiple' })}
|
|
</li>
|
|
<li>
|
|
<Check />
|
|
|
|
{t('full_doc_history')}
|
|
</li>
|
|
<li>
|
|
<Check />
|
|
|
|
{t('sync_to_dropbox')}
|
|
</li>
|
|
<li>
|
|
<Check />
|
|
|
|
{t('sync_to_github')}
|
|
</li>
|
|
<li>
|
|
<Check />
|
|
|
|
{t('compile_larger_projects')}
|
|
</li>
|
|
</ul>
|
|
)
|
|
}
|
|
|
|
export default memo(UpgradeBenefits)
|