import React from 'react'; import Tooltip from 'react-tooltip-lite'; import { LocalizerType } from '../types/Util'; type PropsType = { i18n: LocalizerType; }; export const InContactsIcon = (props: PropsType): JSX.Element => { const { i18n } = props; return ( ); };