mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
3ad686c30b
New project layout dropdown GitOrigin-RevId: 8d7f4ff6649fe249b762642e70522597e5e78dd4
10 lines
243 B
JavaScript
10 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
|