overleaf/services/web/frontend/js/shared/components/icon-checked.jsx

11 lines
232 B
React
Raw Normal View History

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