mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-10 19:23:05 +00:00
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
|