overleaf/services/web/frontend/js/shared/components/icon-checked.js
Alf Eaton f065a7a909 Improve the Icon component (#6245)
GitOrigin-RevId: fbb23b32c47edbe5a22badc627318accbd09e82a
2022-01-20 09:03:58 +00:00

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