icon-checked.jsx 232 B

12345678910
  1. import { useTranslation } from 'react-i18next'
  2. import Icon from './icon'
  3. function IconChecked() {
  4. const { t } = useTranslation()
  5. return <Icon type="check" fw accessibilityLabel={t('selected')} />
  6. }
  7. export default IconChecked