mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 13:49:00 +02:00
f065a7a909
GitOrigin-RevId: fbb23b32c47edbe5a22badc627318accbd09e82a
11 lines
232 B
JavaScript
11 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
|