import { RcIcon } from '@ringcentral/juno'; import { Blocked } from '@ringcentral/juno-icon'; import React from 'react'; import { Tooltip } from '../Rcui/Tooltip'; import i18n from './i18n'; import { DoNotCallWrapper } from './styles/DoNotCallIndicator'; type DoNotCallIndicatorProps = { currentLocale: string; }; export const DoNotCallIndicator: React.FC = ({ currentLocale, }) => { return ( ); };