mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00
49 lines
1,020 B
TypeScript
49 lines
1,020 B
TypeScript
import MaterialIcon from '@/shared/components/material-icon'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { memo } from 'react'
|
|
import classNames from 'classnames'
|
|
|
|
function Check() {
|
|
return <MaterialIcon type="check" />
|
|
}
|
|
|
|
function UpgradeBenefits({ className }: { className?: string }) {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<ul className={classNames('list-unstyled upgrade-benefits', className)}>
|
|
<li>
|
|
<Check />
|
|
|
|
{t('unlimited_projects')}
|
|
</li>
|
|
<li>
|
|
<Check />
|
|
|
|
{t('collabs_per_proj_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)
|