agora-appbuilder-core 4.0.13 → 4.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/package.json +1 -1
  2. package/template/_package-lock.json +1364 -1576
  3. package/template/android/app/src/main/assets/fonts/icomoon.ttf +0 -0
  4. package/template/customization-api/sub-components.ts +6 -4
  5. package/template/customization-api/types.ts +0 -6
  6. package/template/defaultConfig.js +0 -3
  7. package/template/global.d.ts +0 -3
  8. package/template/ios/Podfile.lock +0 -10
  9. package/template/package-lock.json +1364 -1576
  10. package/template/package.json +0 -4
  11. package/template/src/SDKAppWrapper.tsx +8 -2
  12. package/template/src/app-state/useMessages.ts +9 -49
  13. package/template/src/assets/font-styles.css +125 -289
  14. package/template/src/assets/fonts/icomoon.ttf +0 -0
  15. package/template/src/assets/selection.json +1 -1
  16. package/template/src/atoms/ActionMenu.tsx +2 -5
  17. package/template/src/atoms/CustomIcon.tsx +1 -17
  18. package/template/src/atoms/ImageIcon.tsx +3 -19
  19. package/template/src/atoms/Popup.tsx +4 -13
  20. package/template/src/atoms/ToolbarPreset.tsx +57 -6
  21. package/template/src/auth/AuthProvider.tsx +0 -5
  22. package/template/src/auth/config.ts +3 -12
  23. package/template/src/components/Chat.tsx +1 -7
  24. package/template/src/components/ChatContext.ts +0 -12
  25. package/template/src/components/CommonStyles.ts +2 -2
  26. package/template/src/components/Controls.tsx +57 -29
  27. package/template/src/components/Leftbar.tsx +4 -4
  28. package/template/src/components/Navbar.tsx +54 -29
  29. package/template/src/components/NavbarMobile.tsx +23 -33
  30. package/template/src/components/PinnedVideo.tsx +1 -1
  31. package/template/src/components/RTMConfigure.tsx +0 -1
  32. package/template/src/components/SdkApiContext.tsx +4 -1
  33. package/template/src/components/chat-messages/useChatMessages.tsx +607 -411
  34. package/template/src/components/chat-ui/useChatUIControls.tsx +0 -53
  35. package/template/src/components/meeting-info-invite/MeetingInfoGridTile.tsx +1 -4
  36. package/template/src/components/participants/Participant.tsx +1 -0
  37. package/template/src/components/precall/joinWaitingRoomBtn.native.tsx +1 -6
  38. package/template/src/components/precall/joinWaitingRoomBtn.tsx +1 -6
  39. package/template/src/components/room-info/useRoomInfo.tsx +5 -5
  40. package/template/src/language/default-labels/videoCallScreenLabels.ts +6 -86
  41. package/template/src/pages/VideoCall.tsx +4 -3
  42. package/template/src/pages/video-call/ActionSheetContent.tsx +32 -3
  43. package/template/src/pages/video-call/VideoCallScreenWrapper.tsx +12 -22
  44. package/template/src/pages/video-call/VideoComponent.tsx +11 -5
  45. package/template/src/pages/video-call/index.ts +0 -8
  46. package/template/src/subComponents/ChatBubble.tsx +32 -252
  47. package/template/src/subComponents/ChatContainer.tsx +4 -14
  48. package/template/src/subComponents/ChatInput.ios.tsx +184 -0
  49. package/template/src/subComponents/ChatInput.tsx +100 -276
  50. package/template/src/subComponents/RemoteMutePopup.tsx +131 -12
  51. package/template/src/subComponents/caption/CaptionContainer.tsx +2 -6
  52. package/template/src/subComponents/recording/useRecording.tsx +1 -3
  53. package/template/src/utils/SdkMethodEvents.ts +1 -0
  54. package/template/src/utils/common.tsx +17 -0
  55. package/template/src/utils/index.tsx +0 -30
  56. package/template/src/utils/useEndCall.ts +0 -7
  57. package/template/src/utils/useJoinRoom.ts +7 -33
  58. package/template/android/link-assets-manifest.json +0 -13
  59. package/template/ios/link-assets-manifest.json +0 -13
  60. package/template/src/atoms/InlinePopup.tsx +0 -185
  61. package/template/src/components/chat/chatConfigure.native.tsx +0 -488
  62. package/template/src/components/chat/chatConfigure.tsx +0 -473
  63. package/template/src/subComponents/ChatInput.native.tsx +0 -269
  64. package/template/src/subComponents/chat/ChatActionMenu.tsx +0 -224
  65. package/template/src/subComponents/chat/ChatAttachment.native.tsx +0 -234
  66. package/template/src/subComponents/chat/ChatAttachment.tsx +0 -145
  67. package/template/src/subComponents/chat/ChatEmoji.native.tsx +0 -75
  68. package/template/src/subComponents/chat/ChatEmoji.tsx +0 -181
  69. package/template/src/subComponents/chat/ChatSendButton.tsx +0 -141
  70. package/template/src/subComponents/chat/ChatUploadStatus.tsx +0 -65
  71. package/template/src/subComponents/chat/ImagePopup.tsx +0 -400
@@ -8,7 +8,8 @@
8
8
  font-display: block;
9
9
  }
10
10
 
11
- [class^="icon-"], [class*=" icon-"] {
11
+ [class^='icon-'],
12
+ [class*=' icon-'] {
12
13
  /* use !important to prevent issues with browser extensions that change fonts */
13
14
  font-family: 'icomoon' !important;
14
15
  speak: never;
@@ -23,643 +24,478 @@
23
24
  -moz-osx-font-smoothing: grayscale;
24
25
  }
25
26
 
26
-
27
27
  .icon-play-circle:before {
28
- content: "\e99d";
29
- color: #fff;
30
- }
31
- .icon-reply:before {
32
- content: "\e999";
33
- color: #fff;
34
- }
35
- .icon-reply_all:before {
36
- content: "\e99a";
37
- color: #fff;
38
- }
39
- .icon-delete:before {
40
- content: "\e99b";
41
- color: #ff414d;
42
- }
43
- .icon-block_user:before {
44
- content: "\e99c";
45
- color: #ff414d;
46
- }
47
- .icon-chat_send:before {
48
- content: "\e978";
49
- color: #fff;
50
- }
51
- .icon-chat_send_fill:before {
52
- content: "\e97b";
53
- color: #fff;
54
- }
55
- .icon-chat_emoji:before {
56
- content: "\e97c";
28
+ content: '\e978';
57
29
  color: #fff;
58
30
  }
59
- .icon-chat_attachment_doc .path1:before {
60
- content: "\e97d";
61
- color: rgb(223, 227, 229);
62
- }
63
- .icon-chat_attachment_doc .path2:before {
64
- content: "\e97e";
65
- margin-left: -1em;
66
- color: rgb(0, 0, 0);
67
- opacity: 0.15;
68
- }
69
- .icon-chat_attachment_doc .path3:before {
70
- content: "\e97f";
71
- margin-left: -1em;
72
- color: rgb(18, 127, 255);
73
- }
74
- .icon-chat_attachment_doc .path4:before {
75
- content: "\e980";
76
- margin-left: -1em;
77
- color: rgb(255, 255, 255);
78
- }
79
- .icon-chat_attachment_doc .path5:before {
80
- content: "\e981";
81
- margin-left: -1em;
82
- color: rgb(255, 255, 255);
83
- }
84
- .icon-chat_attachment_doc .path6:before {
85
- content: "\e982";
86
- margin-left: -1em;
87
- color: rgb(255, 255, 255);
88
- }
89
- .icon-chat_attachment_image .path1:before {
90
- content: "\e983";
91
- color: rgb(223, 227, 229);
92
- }
93
- .icon-chat_attachment_image .path2:before {
94
- content: "\e984";
95
- margin-left: -1em;
96
- color: rgb(0, 0, 0);
97
- opacity: 0.15;
98
- }
99
- .icon-chat_attachment_image .path3:before {
100
- content: "\e985";
101
- margin-left: -1em;
102
- color: rgb(114, 205, 255);
103
- }
104
- .icon-chat_attachment_image .path4:before {
105
- content: "\e986";
106
- margin-left: -1em;
107
- color: rgb(128, 183, 74);
108
- }
109
- .icon-chat_attachment_image .path5:before {
110
- content: "\e987";
111
- margin-left: -1em;
112
- color: rgb(78, 147, 27);
113
- }
114
- .icon-chat_attachment_image .path6:before {
115
- content: "\e988";
116
- margin-left: -1em;
117
- color: rgb(245, 215, 69);
118
- }
119
- .icon-chat_attachment_pdf .path1:before {
120
- content: "\e989";
121
- color: rgb(223, 227, 229);
122
- }
123
- .icon-chat_attachment_pdf .path2:before {
124
- content: "\e98a";
125
- margin-left: -1em;
126
- color: rgb(0, 0, 0);
127
- opacity: 0.15;
128
- }
129
- .icon-chat_attachment_pdf .path3:before {
130
- content: "\e98b";
131
- margin-left: -1em;
132
- color: rgb(255, 94, 72);
133
- }
134
- .icon-chat_attachment_pdf .path4:before {
135
- content: "\e98c";
136
- margin-left: -1em;
137
- color: rgb(255, 255, 255);
138
- }
139
- .icon-chat_attachment_pdf .path5:before {
140
- content: "\e98d";
141
- margin-left: -1em;
142
- color: rgb(255, 255, 255);
143
- }
144
- .icon-chat_attachment_pdf .path6:before {
145
- content: "\e98e";
146
- margin-left: -1em;
147
- color: rgb(255, 255, 255);
148
- }
149
- .icon-chat_attachment_unknown .path1:before {
150
- content: "\e98f";
151
- color: rgb(223, 227, 229);
152
- }
153
- .icon-chat_attachment_unknown .path2:before {
154
- content: "\e990";
155
- margin-left: -1em;
156
- color: rgb(168, 174, 178);
157
- }
158
- .icon-chat_attachment_unknown .path3:before {
159
- content: "\e991";
160
- margin-left: -1em;
161
- color: rgb(0, 0, 0);
162
- opacity: 0.15;
163
- }
164
- .icon-chat_attachment:before {
165
- content: "\e992";
166
- color: #fff;
167
- }
168
- .icon-chat_gif:before {
169
- content: "\e993";
170
- color: #fff;
171
- }
172
- .icon-chat_gif_fill:before {
173
- content: "\e994";
174
- color: #fff;
175
- }
176
- .icon-chat_emoji_fill .path1:before {
177
- content: "\e995";
178
- color: rgb(255, 171, 0);
179
- }
180
- .icon-chat_emoji_fill .path2:before {
181
- content: "\e996";
182
- margin-left: -1em;
183
- color: rgb(17, 17, 17);
184
- }
185
- .icon-chat_emoji_fill .path3:before {
186
- content: "\e997";
187
- margin-left: -1em;
188
- color: rgb(0, 0, 0);
189
- }
190
- .icon-chat_emoji_fill .path4:before {
191
- content: "\e998";
192
- margin-left: -1em;
193
- color: rgb(0, 0, 0);
194
- }
195
31
  .icon-clear-all:before {
196
- content: "\e96f";
32
+ content: '\e96f';
197
33
  color: #fff;
198
34
  }
199
35
  .icon-erasor:before {
200
- content: "\e970";
36
+ content: '\e970';
201
37
  color: #fff;
202
38
  }
203
39
  .icon-color-picker:before {
204
- content: "\e973";
40
+ content: '\e973';
205
41
  color: #fff;
206
42
  }
207
43
  .icon-shapes:before {
208
- content: "\e974";
44
+ content: '\e974';
209
45
  color: #fff;
210
46
  }
211
47
  .icon-pen:before {
212
- content: "\e975";
48
+ content: '\e975';
213
49
  color: #fff;
214
50
  }
215
51
  .icon-selector:before {
216
- content: "\e977";
52
+ content: '\e977';
217
53
  color: #fff;
218
54
  }
219
55
  .icon-view-only:before {
220
- content: "\e97a";
56
+ content: '\e97a';
221
57
  color: #808080;
222
58
  }
223
59
  .icon-fit-to-screen:before {
224
- content: "\e979";
60
+ content: '\e979';
225
61
  color: #fff;
226
62
  }
227
63
  .icon-zoom-in:before {
228
- content: "\e963";
64
+ content: '\e963';
229
65
  color: #fff;
230
66
  }
231
67
  .icon-zoom-out:before {
232
- content: "\e964";
68
+ content: '\e964';
233
69
  color: #fff;
234
70
  }
235
71
  .icon-undo:before {
236
- content: "\e965";
72
+ content: '\e965';
237
73
  color: #fff;
238
74
  }
239
75
  .icon-redo:before {
240
- content: "\e966";
76
+ content: '\e966';
241
77
  color: #fff;
242
78
  }
243
79
  .icon-light:before {
244
- content: "\e967";
80
+ content: '\e967';
245
81
  color: #fff;
246
82
  }
247
83
  .icon-dark:before {
248
- content: "\e968";
84
+ content: '\e968';
249
85
  color: #fff;
250
86
  }
251
87
  .icon-line:before {
252
- content: "\e969";
88
+ content: '\e969';
253
89
  color: #fff;
254
90
  }
255
91
  .icon-square:before {
256
- content: "\e96a";
92
+ content: '\e96a';
257
93
  color: #fff;
258
94
  }
259
95
  .icon-circle:before {
260
- content: "\e96b";
96
+ content: '\e96b';
261
97
  color: #fff;
262
98
  }
263
99
  .icon-arrow:before {
264
- content: "\e96c";
100
+ content: '\e96c';
265
101
  color: #fff;
266
102
  }
267
103
  .icon-gradient:before {
268
- content: "\e96d";
104
+ content: '\e96d';
269
105
  color: #eac443;
270
106
  }
271
107
  .icon-area-selection:before {
272
- content: "\e96e";
108
+ content: '\e96e';
273
109
  color: #fff;
274
110
  }
275
111
  .icon-highlight:before {
276
- content: "\e971";
112
+ content: '\e971';
277
113
  color: #fff;
278
114
  }
279
115
  .icon-move:before {
280
- content: "\e972";
116
+ content: '\e972';
281
117
  color: #fff;
282
118
  }
283
119
  .icon-text:before {
284
- content: "\e976";
120
+ content: '\e976';
285
121
  color: #fff;
286
122
  }
287
123
  .icon-celebration:before {
288
- content: "\e962";
124
+ content: '\e962';
289
125
  color: #ff414d;
290
126
  }
291
127
  .icon-upload-new:before {
292
- content: "\e961";
128
+ content: '\e961';
293
129
  color: #fff;
294
130
  }
295
131
  .icon-add:before {
296
- content: "\e95d";
132
+ content: '\e95d';
297
133
  color: #fff;
298
134
  }
299
135
  .icon-blur:before {
300
- content: "\e95e";
136
+ content: '\e95e';
301
137
  color: #fff;
302
138
  }
303
139
  .icon-remove:before {
304
- content: "\e95f";
140
+ content: '\e95f';
305
141
  color: #fff;
306
142
  }
307
143
  .icon-vb:before {
308
- content: "\e960";
144
+ content: '\e960';
309
145
  color: #fff;
310
146
  }
311
147
  .icon-captions:before {
312
- content: "\e941";
148
+ content: '\e941';
313
149
  color: #fff;
314
150
  }
315
151
  .icon-captions-off:before {
316
- content: "\e958";
152
+ content: '\e958';
317
153
  color: #fff;
318
154
  }
319
155
  .icon-view-last:before {
320
- content: "\e95c";
156
+ content: '\e95c';
321
157
  color: #fff;
322
158
  }
323
159
  .icon-download:before {
324
- content: "\e959";
160
+ content: '\e959';
325
161
  color: #fff;
326
162
  }
327
163
  .icon-transcript-stop:before {
328
- content: "\e95a";
164
+ content: '\e95a';
329
165
  color: #fff;
330
166
  }
331
167
  .icon-transcript:before {
332
- content: "\e95b";
168
+ content: '\e95b';
333
169
  color: #fff;
334
170
  }
335
171
  .icon-search:before {
336
- content: "\e945";
172
+ content: '\e945';
337
173
  color: #808080;
338
174
  }
339
175
  .icon-lang-select:before {
340
- content: "\e942";
176
+ content: '\e942';
341
177
  color: #fff;
342
178
  }
343
179
  .icon-globe:before {
344
- content: "\e944";
180
+ content: '\e944';
345
181
  color: #808080;
346
182
  }
347
183
  .icon-down-arrow:before {
348
- content: "\e93f";
184
+ content: '\e93f';
349
185
  color: #fff;
350
186
  }
351
187
  .icon-caption-mode:before {
352
- content: "\e93c";
188
+ content: '\e93c';
353
189
  color: #fff;
354
190
  }
355
191
  .icon-stt:before {
356
- content: "\e93d";
192
+ content: '\e93d';
357
193
  color: #fff;
358
194
  }
359
195
  .icon-transcript-mode:before {
360
- content: "\e93e";
196
+ content: '\e93e';
361
197
  color: #fff;
362
198
  }
363
199
  .icon-demote-filled:before {
364
- content: "\e912";
200
+ content: '\e912';
365
201
  color: #fafafa;
366
202
  }
367
203
  .icon-demote-outlined:before {
368
- content: "\e922";
204
+ content: '\e922';
369
205
  color: #fafafa;
370
206
  }
371
207
  .icon-active-speaker:before {
372
- content: "\e903";
208
+ content: '\e903';
373
209
  color: #099dfd;
374
210
  }
375
211
  .icon-alert:before {
376
- content: "\e924";
212
+ content: '\e924';
377
213
  color: #ff414d;
378
214
  }
379
215
  .icon-arrow-down:before {
380
- content: "\e900";
216
+ content: '\e900';
381
217
  }
382
218
  .icon-arrow-up:before {
383
- content: "\e901";
219
+ content: '\e901';
384
220
  }
385
221
  .icon-back-btn:before {
386
- content: "\e902";
222
+ content: '\e902';
387
223
  }
388
224
  .icon-chat-filled:before {
389
- content: "\e904";
225
+ content: '\e904';
390
226
  color: #c5c5c5;
391
227
  }
392
228
  .icon-chat-nav:before {
393
- content: "\e907";
229
+ content: '\e907';
394
230
  }
395
231
  .icon-chat-outlined:before {
396
- content: "\e910";
232
+ content: '\e910';
397
233
  color: #c5c5c5;
398
234
  }
399
235
  .icon-check:before {
400
- content: "\e905";
236
+ content: '\e905';
401
237
  color: #29c157;
402
238
  }
403
239
  .icon-clipboard:before {
404
- content: "\e906";
240
+ content: '\e906';
405
241
  }
406
242
  .icon-close:before {
407
- content: "\e908";
243
+ content: '\e908';
408
244
  }
409
245
  .icon-collapse:before {
410
- content: "\e913";
246
+ content: '\e913';
411
247
  color: #fff;
412
248
  }
413
249
  .icon-connection-bad:before {
414
- content: "\e909";
250
+ content: '\e909';
415
251
  color: #ffab00;
416
252
  }
417
253
  .icon-connection-good:before {
418
- content: "\e90a";
254
+ content: '\e90a';
419
255
  color: #29c157;
420
256
  }
421
257
  .icon-connection-loading:before {
422
- content: "\e90b";
258
+ content: '\e90b';
423
259
  color: #b3b3b3;
424
260
  }
425
261
  .icon-connection-unpublished:before {
426
- content: "\e90c";
262
+ content: '\e90c';
427
263
  color: #b3b3b3;
428
264
  }
429
265
  .icon-connection-unsupported:before {
430
- content: "\e90d";
266
+ content: '\e90d';
431
267
  color: #b3b3b3;
432
268
  }
433
269
  .icon-connection-very-bad:before {
434
- content: "\e90e";
270
+ content: '\e90e';
435
271
  color: #ff414d;
436
272
  }
437
273
  .icon-downside-triangle:before {
438
- content: "\e936";
274
+ content: '\e936';
439
275
  color: #555;
440
276
  }
441
277
  .icon-end-call:before {
442
- content: "\e90f";
278
+ content: '\e90f';
443
279
  }
444
280
  .icon-expand:before {
445
- content: "\e923";
281
+ content: '\e923';
446
282
  color: #fff;
447
283
  }
448
284
  .icon-grid:before {
449
- content: "\e947";
285
+ content: '\e947';
450
286
  color: #fff;
451
287
  }
452
288
  .icon-info:before {
453
- content: "\e911";
289
+ content: '\e911';
454
290
  }
455
291
  .icon-link-share:before {
456
- content: "\e93b";
292
+ content: '\e93b';
457
293
  color: #099dfd;
458
294
  }
459
295
  .icon-list-view:before {
460
- content: "\e914";
296
+ content: '\e914';
461
297
  }
462
298
  .icon-lower-hand:before {
463
- content: "\e915";
299
+ content: '\e915';
464
300
  color: #099dfd;
465
301
  }
466
302
  .icon-mic-off:before {
467
- content: "\e916";
303
+ content: '\e916';
468
304
  }
469
305
  .icon-mic-off-filled:before {
470
- content: "\e948";
306
+ content: '\e948';
471
307
  color: #c5c5c5;
472
308
  }
473
309
  .icon-mic-off-outlined:before {
474
- content: "\e949";
310
+ content: '\e949';
475
311
  color: #c5c5c5;
476
312
  }
477
313
  .icon-mic-on:before {
478
- content: "\e917";
314
+ content: '\e917';
479
315
  }
480
316
  .icon-mic-on-filled:before {
481
- content: "\e94a";
317
+ content: '\e94a';
482
318
  color: #c5c5c5;
483
319
  }
484
320
  .icon-mic-on-outlined:before {
485
- content: "\e94b";
321
+ content: '\e94b';
486
322
  color: #c5c5c5;
487
323
  }
488
324
  .icon-more-menu:before {
489
- content: "\e918";
325
+ content: '\e918';
490
326
  }
491
327
  .icon-no-cam .path1:before {
492
- content: "\e919";
328
+ content: '\e919';
493
329
  color: rgb(143, 143, 143);
494
330
  }
495
331
  .icon-no-cam .path2:before {
496
- content: "\e91a";
332
+ content: '\e91a';
497
333
  margin-left: -1em;
498
334
  color: rgb(255, 171, 0);
499
335
  }
500
336
  .icon-no-cam .path3:before {
501
- content: "\e91b";
337
+ content: '\e91b';
502
338
  margin-left: -1em;
503
339
  color: rgb(255, 255, 255);
504
340
  }
505
341
  .icon-no-cam .path4:before {
506
- content: "\e91c";
342
+ content: '\e91c';
507
343
  margin-left: -1em;
508
344
  color: rgb(255, 255, 255);
509
345
  }
510
346
  .icon-no-mic .path1:before {
511
- content: "\e91d";
347
+ content: '\e91d';
512
348
  color: rgb(143, 143, 143);
513
349
  }
514
350
  .icon-no-mic .path2:before {
515
- content: "\e91e";
351
+ content: '\e91e';
516
352
  margin-left: -1em;
517
353
  color: rgb(255, 171, 0);
518
354
  }
519
355
  .icon-no-mic .path3:before {
520
- content: "\e91f";
356
+ content: '\e91f';
521
357
  margin-left: -1em;
522
358
  color: rgb(255, 255, 255);
523
359
  }
524
360
  .icon-no-mic .path4:before {
525
- content: "\e920";
361
+ content: '\e920';
526
362
  margin-left: -1em;
527
363
  color: rgb(255, 255, 255);
528
364
  }
529
365
  .icon-participants:before {
530
- content: "\e926";
366
+ content: '\e926';
531
367
  color: #fff;
532
368
  }
533
369
  .icon-pencil-filled:before {
534
- content: "\e940";
370
+ content: '\e940';
535
371
  }
536
372
  .icon-pencil-outlined:before {
537
- content: "\e957";
373
+ content: '\e957';
538
374
  }
539
375
  .icon-people:before {
540
- content: "\e946";
376
+ content: '\e946';
541
377
  color: #777;
542
378
  }
543
379
  .icon-person:before {
544
- content: "\e921";
380
+ content: '\e921';
545
381
  color: #808080;
546
382
  }
547
383
  .icon-pin-filled:before {
548
- content: "\e94c";
384
+ content: '\e94c';
549
385
  color: #c5c5c5;
550
386
  }
551
387
  .icon-pin-outlined:before {
552
- content: "\e94d";
388
+ content: '\e94d';
553
389
  color: #c5c5c5;
554
390
  }
555
391
  .icon-pinned:before {
556
- content: "\e94e";
392
+ content: '\e94e';
557
393
  color: #fff;
558
394
  }
559
395
  .icon-profile .path1:before {
560
- content: "\e937";
396
+ content: '\e937';
561
397
  color: rgb(0, 0, 0);
562
398
  }
563
399
  .icon-profile .path2:before {
564
- content: "\e938";
400
+ content: '\e938';
565
401
  margin-left: -1em;
566
402
  color: rgb(9, 157, 253);
567
403
  }
568
404
  .icon-profile .path3:before {
569
- content: "\e939";
405
+ content: '\e939';
570
406
  margin-left: -1em;
571
407
  color: rgb(255, 255, 255);
572
408
  }
573
409
  .icon-profile .path4:before {
574
- content: "\e93a";
410
+ content: '\e93a';
575
411
  margin-left: -1em;
576
412
  color: rgb(255, 255, 255);
577
413
  }
578
414
  .icon-promote-filled:before {
579
- content: "\e94f";
415
+ content: '\e94f';
580
416
  color: #fafafa;
581
417
  }
582
418
  .icon-promote-outlined:before {
583
- content: "\e950";
419
+ content: '\e950';
584
420
  color: #fafafa;
585
421
  }
586
422
  .icon-raise-hand:before {
587
- content: "\e927";
423
+ content: '\e927';
588
424
  color: #099dfd;
589
425
  }
590
426
  .icon-recording:before {
591
- content: "\e928";
427
+ content: '\e928';
592
428
  }
593
429
  .icon-remove1:before {
594
- content: "\e929";
430
+ content: '\e929';
595
431
  }
596
432
  .icon-remove-meeting:before {
597
- content: "\e943";
433
+ content: '\e943';
598
434
  color: #e7414c;
599
435
  }
600
436
  .icon-screen-share:before {
601
- content: "\e92a";
437
+ content: '\e92a';
602
438
  }
603
439
  .icon-send:before {
604
- content: "\e92b";
440
+ content: '\e92b';
605
441
  }
606
442
  .icon-settings:before {
607
- content: "\e92c";
443
+ content: '\e92c';
608
444
  }
609
445
  .icon-share:before {
610
- content: "\e92d";
446
+ content: '\e92d';
611
447
  }
612
448
  .icon-speaker:before {
613
- content: "\e925";
449
+ content: '\e925';
614
450
  color: #808080;
615
451
  }
616
452
  .icon-stop-recording:before {
617
- content: "\e92e";
453
+ content: '\e92e';
618
454
  color: #ff414d;
619
455
  }
620
456
  .icon-stop-screen-share:before {
621
- content: "\e92f";
457
+ content: '\e92f';
622
458
  }
623
459
  .icon-switch-camera:before {
624
- content: "\e930";
460
+ content: '\e930';
625
461
  }
626
462
  .icon-tick:before {
627
- content: "\e932";
463
+ content: '\e932';
628
464
  }
629
465
  .icon-tick-fill:before {
630
- content: "\e931";
466
+ content: '\e931';
631
467
  color: #36b37e;
632
468
  }
633
469
  .icon-unpin-filled:before {
634
- content: "\e951";
470
+ content: '\e951';
635
471
  color: #d9d9d9;
636
472
  }
637
473
  .icon-unpin-outlined:before {
638
- content: "\e952";
474
+ content: '\e952';
639
475
  color: #d9d9d9;
640
476
  }
641
477
  .icon-video-off:before {
642
- content: "\e933";
478
+ content: '\e933';
643
479
  }
644
480
  .icon-video-off-filled:before {
645
- content: "\e953";
481
+ content: '\e953';
646
482
  color: #c5c5c5;
647
483
  }
648
484
  .icon-video-off-outlined:before {
649
- content: "\e954";
485
+ content: '\e954';
650
486
  color: #c5c5c5;
651
487
  }
652
488
  .icon-video-on:before {
653
- content: "\e934";
489
+ content: '\e934';
654
490
  }
655
491
  .icon-video-on-filled:before {
656
- content: "\e955";
492
+ content: '\e955';
657
493
  color: #c5c5c5;
658
494
  }
659
495
  .icon-video-on-outlined:before {
660
- content: "\e956";
496
+ content: '\e956';
661
497
  color: #c5c5c5;
662
498
  }
663
499
  .icon-video-plus:before {
664
- content: "\e935";
500
+ content: '\e935';
665
501
  }