Add call type icon

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-24 19:30:37 +02:00
parent 25d62983de
commit 064544369a
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D
2 changed files with 29 additions and 5 deletions

View file

@ -109,9 +109,10 @@ export default class IncomingCallToast extends React.Component<IProps, IState> {
<h1>
{ room ? room.name : _t("Unknown caller") }
</h1>
<p>
{ isVoice ? _t("Incoming voice call") : _t("Incoming video call") }
</p>
<div className="mx_CallEvent_type">
<div className="mx_CallEvent_type_icon" />
{ isVoice ? _t("Voice call") : _t("Video call") }
</div>
<AccessibleTooltipButton
className={silenceClass}
onClick={this.onSilenceClick}