// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import classNames from 'classnames'; import { Tooltip } from './Tooltip'; import type { LocalizerType } from '../types/Util'; export type PropsType = { className?: string; tooltipContainerRef?: React.RefObject; i18n: LocalizerType; }; export function InContactsIcon(props: PropsType): JSX.Element { const { className, i18n, tooltipContainerRef } = props; /* eslint-disable jsx-a11y/no-noninteractive-tabindex */ return ( ); /* eslint-enable jsx-a11y/no-noninteractive-tabindex */ }