mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 05:41:33 +02:00
3ad686c30b
New project layout dropdown GitOrigin-RevId: 8d7f4ff6649fe249b762642e70522597e5e78dd4
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
|