// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { Avatar } from './Avatar'; import { CallBackgroundBlur } from './CallBackgroundBlur'; import { DirectCallRemoteParticipant } from './DirectCallRemoteParticipant'; import { GroupCallRemoteParticipant } from './GroupCallRemoteParticipant'; import { LocalizerType } from '../types/Util'; import { CallMode, VideoFrameSource } from '../types/Calling'; import { ActiveCallType, SetRendererCanvasType } from '../state/ducks/calling'; const NoVideo = ({ activeCall, i18n, }: { activeCall: ActiveCallType; i18n: LocalizerType; }): JSX.Element => { const { avatarPath, color, name, phoneNumber, profileName, title, } = activeCall.conversation; return (