mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
f065a7a909
GitOrigin-RevId: fbb23b32c47edbe5a22badc627318accbd09e82a
17 lines
406 B
JavaScript
17 lines
406 B
JavaScript
import Icon from '../../../shared/components/icon'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
function BackToProjectsButton() {
|
|
const { t } = useTranslation()
|
|
return (
|
|
<a className="toolbar-header-back-projects" href="/project">
|
|
<Icon
|
|
type="level-up"
|
|
fw
|
|
accessibilityLabel={t('back_to_your_projects')}
|
|
/>
|
|
</a>
|
|
)
|
|
}
|
|
|
|
export default BackToProjectsButton
|