mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
|
import { useTranslation } from 'react-i18next'
|
||
|
|
||
|
import Icon from './icon'
|
||
|
|
||
|
function IconChecked() {
|
||
|
const { t } = useTranslation()
|
||
|
return <Icon type="check" modifier="fw" accessibilityLabel={t('selected')} />
|
||
|
}
|
||
|
|
||
|
export default IconChecked
|