mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
f065a7a909
GitOrigin-RevId: fbb23b32c47edbe5a22badc627318accbd09e82a
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
import { useTranslation } from 'react-i18next'
|
|
|
|
import Icon from './icon'
|
|
|
|
function IconChecked() {
|
|
const { t } = useTranslation()
|
|
return <Icon type="check" fw accessibilityLabel={t('selected')} />
|
|
}
|
|
|
|
export default IconChecked
|