mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-02 00:11:12 -05:00
4f838ccacf
[web] BS5 share modal GitOrigin-RevId: 40a33e06eab720b568d31aefa021682535b6934e
29 lines
999 B
JavaScript
29 lines
999 B
JavaScript
import { useProjectContext } from '@/shared/context/project-context'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Icon from '@/shared/components/icon'
|
|
import OLRow from '@/features/ui/components/ol/ol-row'
|
|
import OLCol from '@/features/ui/components/ol/ol-col'
|
|
import BootstrapVersionSwitcher from '@/features/ui/components/bootstrap-5/bootstrap-version-switcher'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
export default function OwnerInfo() {
|
|
const { t } = useTranslation()
|
|
const { owner } = useProjectContext()
|
|
|
|
return (
|
|
<OLRow className="project-member">
|
|
<OLCol xs={8}>
|
|
<div className="project-member-email-icon">
|
|
<BootstrapVersionSwitcher
|
|
bs3={<Icon type="user" fw />}
|
|
bs5={<MaterialIcon type="person" />}
|
|
/>
|
|
<div className="email-warning">{owner?.email}</div>
|
|
</div>
|
|
</OLCol>
|
|
<OLCol xs={4} className="text-end">
|
|
{t('owner')}
|
|
</OLCol>
|
|
</OLRow>
|
|
)
|
|
}
|