demio-ui 1.0.25 → 1.0.26

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.
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ children: React.ReactNode;
4
+ };
5
+ declare const ScrollArea: ({ children }: Props) => React.JSX.Element;
6
+ export default ScrollArea;
@@ -0,0 +1 @@
1
+ export { default } from "./ScrollArea";
@@ -1,4 +1,5 @@
1
1
  import AddIcon from './add.svg';
2
+ import ArrowDownIcon from './keyboard_arrow_down.svg';
2
3
  import BlockIcon from './block.svg';
3
4
  import BlurOnIcon from './blur_on.svg';
4
5
  import CachedIcon from './cached.svg';
@@ -7,19 +8,19 @@ import CloseIcon from './close.svg';
7
8
  import DeleteIcon from './delete.svg';
8
9
  import InfoIcon from './info.svg';
9
10
  import InfoSolidIcon from './info-1.svg';
10
- import ArrowDownIcon from './keyboard_arrow_down.svg';
11
- import MicOnSolidIcon from './mic-1.svg';
12
- import MicOnfIcon from './mic.svg';
13
11
  import MicOffIcon from './mic_off-1.svg';
14
12
  import MicOffSolidIcon from './mic_off.svg';
15
- import VideoCamOnSolidIcon from './videocam-1.svg';
16
- import VideoCamOnIcon from './videocam.svg';
17
- import VideoCamOffSolidIcon from './videocam_off-1.svg';
13
+ import MicOnfIcon from './mic.svg';
14
+ import MicOnSolidIcon from './mic-1.svg';
15
+ import PlayIcon from './play.svg';
18
16
  import VideoCamOffIcon from './videocam_off.svg';
17
+ import VideoCamOffSolidIcon from './videocam_off-1.svg';
18
+ import VideoCamOnIcon from './videocam.svg';
19
+ import VideoCamOnSolidIcon from './videocam-1.svg';
19
20
  import VolumeOffIcon from './volume_off-1.svg';
20
21
  import VolumeOffSolidIcon from './volume_off.svg';
21
22
  import VolumeUpIcon from './volume_up-1.svg';
22
23
  import VolumeUpSolidIcon from './volume_up.svg';
23
- import WarningSolidIcon from './warning.svg';
24
24
  import WarningIcon from './warning-1.svg';
25
- export { AddIcon, ArrowDownIcon, BlockIcon, BlurOnIcon, CachedIcon, CheckCircleIcon, CloseIcon, DeleteIcon, InfoIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, InfoSolidIcon, WarningSolidIcon, WarningIcon, };
25
+ import WarningSolidIcon from './warning.svg';
26
+ export { AddIcon, ArrowDownIcon, BlockIcon, BlurOnIcon, CachedIcon, CheckCircleIcon, CloseIcon, DeleteIcon, InfoIcon, InfoSolidIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PlayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
package/dist/types.d.ts CHANGED
@@ -158,10 +158,10 @@ type Props = {
158
158
  };
159
159
  declare function Alert({ onOpenChange, open, actionText, onActionClick, cancelText, onCancelClick, title, description, }: Props): React__default.JSX.Element;
160
160
 
161
- var _path$n, _g$n;
162
- function _extends$n() { _extends$n = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$n.apply(this, arguments); }
161
+ var _path$o, _g$n;
162
+ function _extends$o() { _extends$o = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$o.apply(this, arguments); }
163
163
  var SvgAdd = function SvgAdd(props) {
164
- return /*#__PURE__*/React.createElement("svg", _extends$n({
164
+ return /*#__PURE__*/React.createElement("svg", _extends$o({
165
165
  xmlns: "http://www.w3.org/2000/svg",
166
166
  width: 24,
167
167
  height: 24,
@@ -176,7 +176,7 @@ var SvgAdd = function SvgAdd(props) {
176
176
  style: {
177
177
  maskType: "alpha"
178
178
  }
179
- }, _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
179
+ }, _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
180
180
  fill: "#D9D9D9",
181
181
  d: "M0 0h24v24H0z"
182
182
  }))), _g$n || (_g$n = /*#__PURE__*/React.createElement("g", {
@@ -187,7 +187,35 @@ var SvgAdd = function SvgAdd(props) {
187
187
  }))));
188
188
  };
189
189
 
190
- var _path$m, _g$m;
190
+ var _path$n, _g$m;
191
+ function _extends$n() { _extends$n = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$n.apply(this, arguments); }
192
+ var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
193
+ return /*#__PURE__*/React.createElement("svg", _extends$n({
194
+ xmlns: "http://www.w3.org/2000/svg",
195
+ fill: "none",
196
+ viewBox: "0 0 24 24"
197
+ }, props), /*#__PURE__*/React.createElement("mask", {
198
+ id: "keyboard_arrow_down_svg__a",
199
+ width: 24,
200
+ height: 24,
201
+ x: 0,
202
+ y: 0,
203
+ maskUnits: "userSpaceOnUse",
204
+ style: {
205
+ maskType: "alpha"
206
+ }
207
+ }, _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
208
+ fill: "#D9D9D9",
209
+ d: "M0 0h24v24H0z"
210
+ }))), _g$m || (_g$m = /*#__PURE__*/React.createElement("g", {
211
+ mask: "url(#keyboard_arrow_down_svg__a)"
212
+ }, /*#__PURE__*/React.createElement("path", {
213
+ fill: "#2C3336",
214
+ d: "M12 14.677a.93.93 0 0 1-.34-.066.84.84 0 0 1-.293-.19L6.873 9.927a.717.717 0 0 1-.217-.527c0-.206.072-.382.217-.527a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217L12 12.946l4.073-4.073a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217.145.145.217.32.217.527a.717.717 0 0 1-.217.527l-4.494 4.494a.83.83 0 0 1-.633.256Z"
215
+ }))));
216
+ };
217
+
218
+ var _path$m, _g$l;
191
219
  function _extends$m() { _extends$m = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$m.apply(this, arguments); }
192
220
  var SvgBlock = function SvgBlock(props) {
193
221
  return /*#__PURE__*/React.createElement("svg", _extends$m({
@@ -208,7 +236,7 @@ var SvgBlock = function SvgBlock(props) {
208
236
  }, _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
209
237
  fill: "#D9D9D9",
210
238
  d: "M0 0h24v24H0z"
211
- }))), _g$m || (_g$m = /*#__PURE__*/React.createElement("g", {
239
+ }))), _g$l || (_g$l = /*#__PURE__*/React.createElement("g", {
212
240
  mask: "url(#block_svg__a)"
213
241
  }, /*#__PURE__*/React.createElement("path", {
214
242
  fill: "#42454B",
@@ -216,7 +244,7 @@ var SvgBlock = function SvgBlock(props) {
216
244
  }))));
217
245
  };
218
246
 
219
- var _path$l, _g$l;
247
+ var _path$l, _g$k;
220
248
  function _extends$l() { _extends$l = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$l.apply(this, arguments); }
221
249
  var SvgBlurOn = function SvgBlurOn(props) {
222
250
  return /*#__PURE__*/React.createElement("svg", _extends$l({
@@ -237,7 +265,7 @@ var SvgBlurOn = function SvgBlurOn(props) {
237
265
  }, _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
238
266
  fill: "#D9D9D9",
239
267
  d: "M0 0h24v24H0z"
240
- }))), _g$l || (_g$l = /*#__PURE__*/React.createElement("g", {
268
+ }))), _g$k || (_g$k = /*#__PURE__*/React.createElement("g", {
241
269
  mask: "url(#blur_on_svg__a)"
242
270
  }, /*#__PURE__*/React.createElement("path", {
243
271
  fill: "#2C3336",
@@ -245,7 +273,7 @@ var SvgBlurOn = function SvgBlurOn(props) {
245
273
  }))));
246
274
  };
247
275
 
248
- var _path$k, _g$k;
276
+ var _path$k, _g$j;
249
277
  function _extends$k() { _extends$k = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$k.apply(this, arguments); }
250
278
  var SvgCached = function SvgCached(props) {
251
279
  return /*#__PURE__*/React.createElement("svg", _extends$k({
@@ -266,7 +294,7 @@ var SvgCached = function SvgCached(props) {
266
294
  }, _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
267
295
  fill: "#D9D9D9",
268
296
  d: "M0 0h24v24H0z"
269
- }))), _g$k || (_g$k = /*#__PURE__*/React.createElement("g", {
297
+ }))), _g$j || (_g$j = /*#__PURE__*/React.createElement("g", {
270
298
  mask: "url(#cached_svg__a)"
271
299
  }, /*#__PURE__*/React.createElement("path", {
272
300
  fill: "#2C3336",
@@ -274,7 +302,7 @@ var SvgCached = function SvgCached(props) {
274
302
  }))));
275
303
  };
276
304
 
277
- var _path$j, _g$j;
305
+ var _path$j, _g$i;
278
306
  function _extends$j() { _extends$j = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$j.apply(this, arguments); }
279
307
  var SvgCheckCircle = function SvgCheckCircle(props) {
280
308
  return /*#__PURE__*/React.createElement("svg", _extends$j({
@@ -294,7 +322,7 @@ var SvgCheckCircle = function SvgCheckCircle(props) {
294
322
  }, _path$j || (_path$j = /*#__PURE__*/React.createElement("path", {
295
323
  fill: "#D9D9D9",
296
324
  d: "M0 0h24v24H0z"
297
- }))), _g$j || (_g$j = /*#__PURE__*/React.createElement("g", {
325
+ }))), _g$i || (_g$i = /*#__PURE__*/React.createElement("g", {
298
326
  mask: "url(#check_circle_svg__a)"
299
327
  }, /*#__PURE__*/React.createElement("path", {
300
328
  fill: "#2C3336",
@@ -302,7 +330,7 @@ var SvgCheckCircle = function SvgCheckCircle(props) {
302
330
  }))));
303
331
  };
304
332
 
305
- var _path$i, _g$i;
333
+ var _path$i, _g$h;
306
334
  function _extends$i() { _extends$i = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$i.apply(this, arguments); }
307
335
  var SvgClose = function SvgClose(props) {
308
336
  return /*#__PURE__*/React.createElement("svg", _extends$i({
@@ -323,7 +351,7 @@ var SvgClose = function SvgClose(props) {
323
351
  }, _path$i || (_path$i = /*#__PURE__*/React.createElement("path", {
324
352
  fill: "#D9D9D9",
325
353
  d: "M0 0h24v24H0z"
326
- }))), _g$i || (_g$i = /*#__PURE__*/React.createElement("g", {
354
+ }))), _g$h || (_g$h = /*#__PURE__*/React.createElement("g", {
327
355
  mask: "url(#close_svg__a)"
328
356
  }, /*#__PURE__*/React.createElement("path", {
329
357
  fill: "#2C3336",
@@ -331,7 +359,7 @@ var SvgClose = function SvgClose(props) {
331
359
  }))));
332
360
  };
333
361
 
334
- var _path$h, _g$h;
362
+ var _path$h, _g$g;
335
363
  function _extends$h() { _extends$h = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$h.apply(this, arguments); }
336
364
  var SvgDelete = function SvgDelete(props) {
337
365
  return /*#__PURE__*/React.createElement("svg", _extends$h({
@@ -351,7 +379,7 @@ var SvgDelete = function SvgDelete(props) {
351
379
  }, _path$h || (_path$h = /*#__PURE__*/React.createElement("path", {
352
380
  fill: "#D9D9D9",
353
381
  d: "M0 0h24v24H0z"
354
- }))), _g$h || (_g$h = /*#__PURE__*/React.createElement("g", {
382
+ }))), _g$g || (_g$g = /*#__PURE__*/React.createElement("g", {
355
383
  mask: "url(#delete_svg__a)"
356
384
  }, /*#__PURE__*/React.createElement("path", {
357
385
  fill: "#2C3336",
@@ -359,7 +387,7 @@ var SvgDelete = function SvgDelete(props) {
359
387
  }))));
360
388
  };
361
389
 
362
- var _path$g, _g$g;
390
+ var _path$g, _g$f;
363
391
  function _extends$g() { _extends$g = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$g.apply(this, arguments); }
364
392
  var SvgInfo = function SvgInfo(props) {
365
393
  return /*#__PURE__*/React.createElement("svg", _extends$g({
@@ -379,7 +407,7 @@ var SvgInfo = function SvgInfo(props) {
379
407
  }, _path$g || (_path$g = /*#__PURE__*/React.createElement("path", {
380
408
  fill: "#D9D9D9",
381
409
  d: "M0 0h24v24H0z"
382
- }))), _g$g || (_g$g = /*#__PURE__*/React.createElement("g", {
410
+ }))), _g$f || (_g$f = /*#__PURE__*/React.createElement("g", {
383
411
  mask: "url(#info_svg__a)"
384
412
  }, /*#__PURE__*/React.createElement("path", {
385
413
  fill: "#2C3336",
@@ -387,7 +415,7 @@ var SvgInfo = function SvgInfo(props) {
387
415
  }))));
388
416
  };
389
417
 
390
- var _path$f, _g$f;
418
+ var _path$f, _g$e;
391
419
  function _extends$f() { _extends$f = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$f.apply(this, arguments); }
392
420
  var SvgInfo1 = function SvgInfo1(props) {
393
421
  return /*#__PURE__*/React.createElement("svg", _extends$f({
@@ -407,7 +435,7 @@ var SvgInfo1 = function SvgInfo1(props) {
407
435
  }, _path$f || (_path$f = /*#__PURE__*/React.createElement("path", {
408
436
  fill: "#D9D9D9",
409
437
  d: "M0 0h24v24H0z"
410
- }))), _g$f || (_g$f = /*#__PURE__*/React.createElement("g", {
438
+ }))), _g$e || (_g$e = /*#__PURE__*/React.createElement("g", {
411
439
  mask: "url(#info-1_svg__a)"
412
440
  }, /*#__PURE__*/React.createElement("path", {
413
441
  fill: "#2C3336",
@@ -415,15 +443,16 @@ var SvgInfo1 = function SvgInfo1(props) {
415
443
  }))));
416
444
  };
417
445
 
418
- var _path$e, _g$e;
446
+ var _path$e, _g$d;
419
447
  function _extends$e() { _extends$e = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$e.apply(this, arguments); }
420
- var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
448
+ var SvgMicOff1 = function SvgMicOff1(props) {
421
449
  return /*#__PURE__*/React.createElement("svg", _extends$e({
422
450
  xmlns: "http://www.w3.org/2000/svg",
423
- fill: "none",
424
- viewBox: "0 0 24 24"
451
+ width: 24,
452
+ height: 24,
453
+ fill: "none"
425
454
  }, props), /*#__PURE__*/React.createElement("mask", {
426
- id: "keyboard_arrow_down_svg__a",
455
+ id: "mic_off-1_svg__a",
427
456
  width: 24,
428
457
  height: 24,
429
458
  x: 0,
@@ -435,24 +464,24 @@ var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
435
464
  }, _path$e || (_path$e = /*#__PURE__*/React.createElement("path", {
436
465
  fill: "#D9D9D9",
437
466
  d: "M0 0h24v24H0z"
438
- }))), _g$e || (_g$e = /*#__PURE__*/React.createElement("g", {
439
- mask: "url(#keyboard_arrow_down_svg__a)"
467
+ }))), _g$d || (_g$d = /*#__PURE__*/React.createElement("g", {
468
+ mask: "url(#mic_off-1_svg__a)"
440
469
  }, /*#__PURE__*/React.createElement("path", {
441
470
  fill: "#2C3336",
442
- d: "M12 14.677a.93.93 0 0 1-.34-.066.84.84 0 0 1-.293-.19L6.873 9.927a.717.717 0 0 1-.217-.527c0-.206.072-.382.217-.527a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217L12 12.946l4.073-4.073a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217.145.145.217.32.217.527a.717.717 0 0 1-.217.527l-4.494 4.494a.83.83 0 0 1-.633.256Z"
471
+ d: "m17.24 14.18-1.103-1.122c.105-.193.199-.405.281-.636.083-.231.143-.476.18-.734a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558c-.058.457-.16.88-.31 1.272a6.47 6.47 0 0 1-.548 1.113Zm-3.219-3.25-1.377-1.376V5a.967.967 0 0 0-.287-.713.968.968 0 0 0-.713-.287.968.968 0 0 0-.712.287.967.967 0 0 0-.288.713v2.535l-1.5-1.5V5c0-.699.242-1.29.726-1.774a2.413 2.413 0 0 1 1.774-.726c.699 0 1.29.242 1.774.726s.726 1.075.726 1.774v5.346c0 .113-.013.216-.038.308a5.62 5.62 0 0 1-.085.277Zm5.32 10.258L2.205 4.054a.725.725 0 0 1-.213-.522A.707.707 0 0 1 2.206 3a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217l17.134 17.135c.139.138.21.312.213.522a.707.707 0 0 1-.213.531.717.717 0 0 1-.527.218.717.717 0 0 1-.527-.218ZM10.893 20v-2.546c-1.511-.178-2.796-.795-3.854-1.85a6.273 6.273 0 0 1-1.85-3.808.644.644 0 0 1 .177-.558.768.768 0 0 1 .589-.238c.175 0 .332.067.47.2a.898.898 0 0 1 .264.488c.166 1.218.716 2.242 1.652 3.07.936.828 2.037 1.242 3.302 1.242.644 0 1.249-.115 1.815-.344a4.86 4.86 0 0 0 1.502-.954l1.07 1.07a6.593 6.593 0 0 1-1.65 1.128 5.849 5.849 0 0 1-1.987.554V20a.726.726 0 0 1-.215.535.726.726 0 0 1-.535.215.726.726 0 0 1-.534-.215.726.726 0 0 1-.216-.535Z"
443
472
  }))));
444
473
  };
445
474
 
446
- var _path$d, _g$d;
475
+ var _path$d, _g$c;
447
476
  function _extends$d() { _extends$d = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$d.apply(this, arguments); }
448
- var SvgMic1 = function SvgMic1(props) {
477
+ var SvgMicOff = function SvgMicOff(props) {
449
478
  return /*#__PURE__*/React.createElement("svg", _extends$d({
450
479
  xmlns: "http://www.w3.org/2000/svg",
451
480
  width: 24,
452
481
  height: 24,
453
482
  fill: "none"
454
483
  }, props), /*#__PURE__*/React.createElement("mask", {
455
- id: "mic-1_svg__a",
484
+ id: "mic_off_svg__a",
456
485
  width: 24,
457
486
  height: 24,
458
487
  x: 0,
@@ -464,15 +493,15 @@ var SvgMic1 = function SvgMic1(props) {
464
493
  }, _path$d || (_path$d = /*#__PURE__*/React.createElement("path", {
465
494
  fill: "#D9D9D9",
466
495
  d: "M0 0h24v24H0z"
467
- }))), _g$d || (_g$d = /*#__PURE__*/React.createElement("g", {
468
- mask: "url(#mic-1_svg__a)"
496
+ }))), _g$c || (_g$c = /*#__PURE__*/React.createElement("g", {
497
+ mask: "url(#mic_off_svg__a)"
469
498
  }, /*#__PURE__*/React.createElement("path", {
470
499
  fill: "#2C3336",
471
- d: "M12 13.5c-.699 0-1.29-.242-1.774-.726A2.413 2.413 0 0 1 9.5 11V5c0-.699.242-1.29.726-1.774A2.413 2.413 0 0 1 12 2.5c.698 0 1.29.242 1.774.726S14.5 4.301 14.5 5v6c0 .699-.242 1.29-.726 1.774A2.413 2.413 0 0 1 12 13.5Zm0 7.25a.726.726 0 0 1-.535-.215.726.726 0 0 1-.215-.535v-2.542c-1.512-.175-2.796-.79-3.854-1.848a6.295 6.295 0 0 1-1.85-3.814.644.644 0 0 1 .177-.558A.768.768 0 0 1 6.31 11c.176 0 .333.067.471.2a.898.898 0 0 1 .264.488c.165 1.218.716 2.242 1.652 3.07C9.634 15.586 10.734 16 12 16c1.265 0 2.366-.414 3.302-1.242.936-.828 1.486-1.852 1.652-3.07a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558 6.295 6.295 0 0 1-1.85 3.814c-1.058 1.057-2.343 1.673-3.854 1.848V20a.726.726 0 0 1-.216.535.726.726 0 0 1-.534.215Z"
500
+ d: "m17.24 14.18-1.103-1.122c.105-.193.199-.405.281-.636.083-.231.143-.476.18-.734a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558c-.058.457-.16.88-.31 1.272a6.47 6.47 0 0 1-.548 1.113Zm-3.219-3.25L9.144 6.036V5c0-.699.242-1.29.726-1.774a2.413 2.413 0 0 1 1.774-.726c.699 0 1.29.242 1.774.726s.726 1.075.726 1.774v5.346c0 .113-.013.216-.038.308a5.62 5.62 0 0 1-.085.277Zm5.32 10.258L2.205 4.054a.725.725 0 0 1-.213-.522A.707.707 0 0 1 2.206 3a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217l17.134 17.135c.139.138.21.312.213.522a.707.707 0 0 1-.213.531.717.717 0 0 1-.527.218.717.717 0 0 1-.527-.218ZM10.893 20v-2.542c-1.511-.175-2.796-.79-3.854-1.848a6.295 6.295 0 0 1-1.85-3.814.644.644 0 0 1 .177-.558.768.768 0 0 1 .589-.238c.175 0 .332.067.47.2a.898.898 0 0 1 .264.488c.166 1.218.716 2.242 1.652 3.07.936.828 2.037 1.242 3.302 1.242.644 0 1.249-.115 1.815-.344a4.86 4.86 0 0 0 1.502-.954l1.07 1.07a6.432 6.432 0 0 1-1.65 1.12 6.3 6.3 0 0 1-1.987.566V20a.726.726 0 0 1-.215.535.726.726 0 0 1-.535.215.726.726 0 0 1-.534-.215.726.726 0 0 1-.216-.535Z"
472
501
  }))));
473
502
  };
474
503
 
475
- var _path$c, _g$c;
504
+ var _path$c, _g$b;
476
505
  function _extends$c() { _extends$c = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$c.apply(this, arguments); }
477
506
  var SvgMic = function SvgMic(props) {
478
507
  return /*#__PURE__*/React.createElement("svg", _extends$c({
@@ -493,7 +522,7 @@ var SvgMic = function SvgMic(props) {
493
522
  }, _path$c || (_path$c = /*#__PURE__*/React.createElement("path", {
494
523
  fill: "#D9D9D9",
495
524
  d: "M0 0h24v24H0z"
496
- }))), _g$c || (_g$c = /*#__PURE__*/React.createElement("g", {
525
+ }))), _g$b || (_g$b = /*#__PURE__*/React.createElement("g", {
497
526
  mask: "url(#mic_svg__a)"
498
527
  }, /*#__PURE__*/React.createElement("path", {
499
528
  fill: "#2C3336",
@@ -501,16 +530,16 @@ var SvgMic = function SvgMic(props) {
501
530
  }))));
502
531
  };
503
532
 
504
- var _path$b, _g$b;
533
+ var _path$b, _g$a;
505
534
  function _extends$b() { _extends$b = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$b.apply(this, arguments); }
506
- var SvgMicOff1 = function SvgMicOff1(props) {
535
+ var SvgMic1 = function SvgMic1(props) {
507
536
  return /*#__PURE__*/React.createElement("svg", _extends$b({
508
537
  xmlns: "http://www.w3.org/2000/svg",
509
538
  width: 24,
510
539
  height: 24,
511
540
  fill: "none"
512
541
  }, props), /*#__PURE__*/React.createElement("mask", {
513
- id: "mic_off-1_svg__a",
542
+ id: "mic-1_svg__a",
514
543
  width: 24,
515
544
  height: 24,
516
545
  x: 0,
@@ -522,53 +551,37 @@ var SvgMicOff1 = function SvgMicOff1(props) {
522
551
  }, _path$b || (_path$b = /*#__PURE__*/React.createElement("path", {
523
552
  fill: "#D9D9D9",
524
553
  d: "M0 0h24v24H0z"
525
- }))), _g$b || (_g$b = /*#__PURE__*/React.createElement("g", {
526
- mask: "url(#mic_off-1_svg__a)"
554
+ }))), _g$a || (_g$a = /*#__PURE__*/React.createElement("g", {
555
+ mask: "url(#mic-1_svg__a)"
527
556
  }, /*#__PURE__*/React.createElement("path", {
528
557
  fill: "#2C3336",
529
- d: "m17.24 14.18-1.103-1.122c.105-.193.199-.405.281-.636.083-.231.143-.476.18-.734a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558c-.058.457-.16.88-.31 1.272a6.47 6.47 0 0 1-.548 1.113Zm-3.219-3.25-1.377-1.376V5a.967.967 0 0 0-.287-.713.968.968 0 0 0-.713-.287.968.968 0 0 0-.712.287.967.967 0 0 0-.288.713v2.535l-1.5-1.5V5c0-.699.242-1.29.726-1.774a2.413 2.413 0 0 1 1.774-.726c.699 0 1.29.242 1.774.726s.726 1.075.726 1.774v5.346c0 .113-.013.216-.038.308a5.62 5.62 0 0 1-.085.277Zm5.32 10.258L2.205 4.054a.725.725 0 0 1-.213-.522A.707.707 0 0 1 2.206 3a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217l17.134 17.135c.139.138.21.312.213.522a.707.707 0 0 1-.213.531.717.717 0 0 1-.527.218.717.717 0 0 1-.527-.218ZM10.893 20v-2.546c-1.511-.178-2.796-.795-3.854-1.85a6.273 6.273 0 0 1-1.85-3.808.644.644 0 0 1 .177-.558.768.768 0 0 1 .589-.238c.175 0 .332.067.47.2a.898.898 0 0 1 .264.488c.166 1.218.716 2.242 1.652 3.07.936.828 2.037 1.242 3.302 1.242.644 0 1.249-.115 1.815-.344a4.86 4.86 0 0 0 1.502-.954l1.07 1.07a6.593 6.593 0 0 1-1.65 1.128 5.849 5.849 0 0 1-1.987.554V20a.726.726 0 0 1-.215.535.726.726 0 0 1-.535.215.726.726 0 0 1-.534-.215.726.726 0 0 1-.216-.535Z"
558
+ d: "M12 13.5c-.699 0-1.29-.242-1.774-.726A2.413 2.413 0 0 1 9.5 11V5c0-.699.242-1.29.726-1.774A2.413 2.413 0 0 1 12 2.5c.698 0 1.29.242 1.774.726S14.5 4.301 14.5 5v6c0 .699-.242 1.29-.726 1.774A2.413 2.413 0 0 1 12 13.5Zm0 7.25a.726.726 0 0 1-.535-.215.726.726 0 0 1-.215-.535v-2.542c-1.512-.175-2.796-.79-3.854-1.848a6.295 6.295 0 0 1-1.85-3.814.644.644 0 0 1 .177-.558A.768.768 0 0 1 6.31 11c.176 0 .333.067.471.2a.898.898 0 0 1 .264.488c.165 1.218.716 2.242 1.652 3.07C9.634 15.586 10.734 16 12 16c1.265 0 2.366-.414 3.302-1.242.936-.828 1.486-1.852 1.652-3.07a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558 6.295 6.295 0 0 1-1.85 3.814c-1.058 1.057-2.343 1.673-3.854 1.848V20a.726.726 0 0 1-.216.535.726.726 0 0 1-.534.215Z"
530
559
  }))));
531
560
  };
532
561
 
533
- var _path$a, _g$a;
562
+ var _path$a;
534
563
  function _extends$a() { _extends$a = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$a.apply(this, arguments); }
535
- var SvgMicOff = function SvgMicOff(props) {
564
+ var SvgPlay = function SvgPlay(props) {
536
565
  return /*#__PURE__*/React.createElement("svg", _extends$a({
537
566
  xmlns: "http://www.w3.org/2000/svg",
538
- width: 24,
539
- height: 24,
540
- fill: "none"
541
- }, props), /*#__PURE__*/React.createElement("mask", {
542
- id: "mic_off_svg__a",
543
- width: 24,
544
- height: 24,
545
- x: 0,
546
- y: 0,
547
- maskUnits: "userSpaceOnUse",
548
- style: {
549
- maskType: "alpha"
550
- }
551
- }, _path$a || (_path$a = /*#__PURE__*/React.createElement("path", {
552
- fill: "#D9D9D9",
553
- d: "M0 0h24v24H0z"
554
- }))), _g$a || (_g$a = /*#__PURE__*/React.createElement("g", {
555
- mask: "url(#mic_off_svg__a)"
556
- }, /*#__PURE__*/React.createElement("path", {
557
- fill: "#2C3336",
558
- d: "m17.24 14.18-1.103-1.122c.105-.193.199-.405.281-.636.083-.231.143-.476.18-.734a.89.89 0 0 1 .266-.488c.14-.133.302-.2.484-.2a.75.75 0 0 1 .573.238.644.644 0 0 1 .177.558c-.058.457-.16.88-.31 1.272a6.47 6.47 0 0 1-.548 1.113Zm-3.219-3.25L9.144 6.036V5c0-.699.242-1.29.726-1.774a2.413 2.413 0 0 1 1.774-.726c.699 0 1.29.242 1.774.726s.726 1.075.726 1.774v5.346c0 .113-.013.216-.038.308a5.62 5.62 0 0 1-.085.277Zm5.32 10.258L2.205 4.054a.725.725 0 0 1-.213-.522A.707.707 0 0 1 2.206 3a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217l17.134 17.135c.139.138.21.312.213.522a.707.707 0 0 1-.213.531.717.717 0 0 1-.527.218.717.717 0 0 1-.527-.218ZM10.893 20v-2.542c-1.511-.175-2.796-.79-3.854-1.848a6.295 6.295 0 0 1-1.85-3.814.644.644 0 0 1 .177-.558.768.768 0 0 1 .589-.238c.175 0 .332.067.47.2a.898.898 0 0 1 .264.488c.166 1.218.716 2.242 1.652 3.07.936.828 2.037 1.242 3.302 1.242.644 0 1.249-.115 1.815-.344a4.86 4.86 0 0 0 1.502-.954l1.07 1.07a6.432 6.432 0 0 1-1.65 1.12 6.3 6.3 0 0 1-1.987.566V20a.726.726 0 0 1-.215.535.726.726 0 0 1-.535.215.726.726 0 0 1-.534-.215.726.726 0 0 1-.216-.535Z"
559
- }))));
567
+ fill: "none",
568
+ viewBox: "0 0 16 16"
569
+ }, props), _path$a || (_path$a = /*#__PURE__*/React.createElement("path", {
570
+ fill: "#42454B",
571
+ d: "m15.262 6.708-11-6.503C3.37-.323 2 .19 2 1.495V14.5c0 1.172 1.272 1.878 2.263 1.29l11-6.5c.98-.578.984-2.002 0-2.58Z"
572
+ })));
560
573
  };
561
574
 
562
575
  var _path$9, _g$9;
563
576
  function _extends$9() { _extends$9 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$9.apply(this, arguments); }
564
- var SvgVideocam1 = function SvgVideocam1(props) {
577
+ var SvgVideocamOff = function SvgVideocamOff(props) {
565
578
  return /*#__PURE__*/React.createElement("svg", _extends$9({
566
579
  xmlns: "http://www.w3.org/2000/svg",
567
580
  width: 24,
568
581
  height: 24,
569
582
  fill: "none"
570
583
  }, props), /*#__PURE__*/React.createElement("mask", {
571
- id: "videocam-1_svg__a",
584
+ id: "videocam_off_svg__a",
572
585
  width: 24,
573
586
  height: 24,
574
587
  x: 0,
@@ -581,23 +594,23 @@ var SvgVideocam1 = function SvgVideocam1(props) {
581
594
  fill: "#D9D9D9",
582
595
  d: "M0 0h24v24H0z"
583
596
  }))), _g$9 || (_g$9 = /*#__PURE__*/React.createElement("g", {
584
- mask: "url(#videocam-1_svg__a)"
597
+ mask: "url(#videocam_off_svg__a)"
585
598
  }, /*#__PURE__*/React.createElement("path", {
586
599
  fill: "#2C3336",
587
- d: "M4.548 19.5c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.505.175-.933.525-1.283.35-.35.778-.525 1.283-.525h11.384c.506 0 .933.175 1.283.525.35.35.525.778.525 1.283v4.577l2.737-2.737a.43.43 0 0 1 .499-.103c.189.075.283.22.283.434v7.042c0 .214-.094.359-.283.434a.43.43 0 0 1-.5-.103l-2.736-2.737v4.577c0 .505-.175.933-.525 1.283-.35.35-.777.525-1.283.525H4.548Z"
600
+ d: "m20.506 15.852-2.737-2.737v1.896l-1.5-1.5V6.308a.3.3 0 0 0-.086-.221.3.3 0 0 0-.221-.087H8.758l-1.5-1.5h8.704c.505 0 .932.175 1.282.525.35.35.525.778.525 1.283v4.577l2.737-2.737c.154-.154.323-.19.507-.11s.276.227.276.44v7.043c0 .214-.092.361-.276.441-.184.08-.353.044-.507-.11Zm-1.06 5.779L2.036 4.22a.684.684 0 0 1-.207-.502c0-.196.078-.372.233-.527a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217l17.41 17.41a.684.684 0 0 1 .207.502.727.727 0 0 1-.233.527.724.724 0 0 1-.532.217.692.692 0 0 1-.522-.217ZM4.443 4.519 5.923 6H4.577a.3.3 0 0 0-.221.087.3.3 0 0 0-.087.22v11.385a.3.3 0 0 0 .087.221.3.3 0 0 0 .221.087h11.385a.3.3 0 0 0 .22-.087.3.3 0 0 0 .088-.22v-1.347l1.48 1.48a1.752 1.752 0 0 1-.558 1.187c-.34.325-.75.487-1.23.487H4.577c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.48.163-.89.487-1.23.324-.34.72-.527 1.187-.559Z"
588
601
  }))));
589
602
  };
590
603
 
591
604
  var _path$8, _g$8;
592
605
  function _extends$8() { _extends$8 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$8.apply(this, arguments); }
593
- var SvgVideocam = function SvgVideocam(props) {
606
+ var SvgVideocamOff1 = function SvgVideocamOff1(props) {
594
607
  return /*#__PURE__*/React.createElement("svg", _extends$8({
595
608
  xmlns: "http://www.w3.org/2000/svg",
596
609
  width: 24,
597
610
  height: 24,
598
611
  fill: "none"
599
612
  }, props), /*#__PURE__*/React.createElement("mask", {
600
- id: "videocam_svg__a",
613
+ id: "videocam_off-1_svg__a",
601
614
  width: 24,
602
615
  height: 24,
603
616
  x: 0,
@@ -610,23 +623,23 @@ var SvgVideocam = function SvgVideocam(props) {
610
623
  fill: "#D9D9D9",
611
624
  d: "M0 0h24v24H0z"
612
625
  }))), _g$8 || (_g$8 = /*#__PURE__*/React.createElement("g", {
613
- mask: "url(#videocam_svg__a)"
626
+ mask: "url(#videocam_off-1_svg__a)"
614
627
  }, /*#__PURE__*/React.createElement("path", {
615
628
  fill: "#2C3336",
616
- d: "M4.548 19.5c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.505.175-.933.525-1.283.35-.35.778-.525 1.283-.525h11.384c.506 0 .933.175 1.283.525.35.35.525.778.525 1.283v4.577l2.737-2.737c.154-.154.322-.19.506-.11s.276.227.276.44v7.043c0 .214-.092.361-.276.441-.184.08-.352.044-.506-.11l-2.737-2.737v4.577c0 .505-.175.933-.525 1.283-.35.35-.777.525-1.283.525H4.548Zm0-1.5h11.384a.3.3 0 0 0 .222-.087.3.3 0 0 0 .086-.22V6.307a.3.3 0 0 0-.086-.221.3.3 0 0 0-.222-.087H4.548a.3.3 0 0 0-.221.087.3.3 0 0 0-.087.22v11.385a.3.3 0 0 0 .087.221.3.3 0 0 0 .22.087Z"
629
+ d: "M19.471 21.63 2.061 4.222a.684.684 0 0 1-.207-.502c0-.196.078-.372.233-.527a.717.717 0 0 1 .527-.217c.206 0 .382.072.526.217l17.41 17.41a.684.684 0 0 1 .208.502.727.727 0 0 1-.233.527.702.702 0 0 1-.527.212.753.753 0 0 1-.527-.212Zm-1.677-6.618L7.283 4.5h8.704c.505 0 .932.175 1.282.525.35.35.525.778.525 1.283v4.577l2.737-2.737a.43.43 0 0 1 .499-.103c.189.075.284.22.284.434v7.042c0 .214-.095.359-.284.434a.43.43 0 0 1-.5-.103l-2.736-2.737v1.896ZM4.467 4.518l13.308 13.308c-.017.456-.209.85-.577 1.179-.368.33-.78.494-1.236.494H4.577c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.457.168-.869.502-1.237.335-.368.734-.552 1.196-.552Z"
617
630
  }))));
618
631
  };
619
632
 
620
633
  var _path$7, _g$7;
621
634
  function _extends$7() { _extends$7 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$7.apply(this, arguments); }
622
- var SvgVideocamOff1 = function SvgVideocamOff1(props) {
635
+ var SvgVideocam = function SvgVideocam(props) {
623
636
  return /*#__PURE__*/React.createElement("svg", _extends$7({
624
637
  xmlns: "http://www.w3.org/2000/svg",
625
638
  width: 24,
626
639
  height: 24,
627
640
  fill: "none"
628
641
  }, props), /*#__PURE__*/React.createElement("mask", {
629
- id: "videocam_off-1_svg__a",
642
+ id: "videocam_svg__a",
630
643
  width: 24,
631
644
  height: 24,
632
645
  x: 0,
@@ -639,23 +652,23 @@ var SvgVideocamOff1 = function SvgVideocamOff1(props) {
639
652
  fill: "#D9D9D9",
640
653
  d: "M0 0h24v24H0z"
641
654
  }))), _g$7 || (_g$7 = /*#__PURE__*/React.createElement("g", {
642
- mask: "url(#videocam_off-1_svg__a)"
655
+ mask: "url(#videocam_svg__a)"
643
656
  }, /*#__PURE__*/React.createElement("path", {
644
657
  fill: "#2C3336",
645
- d: "M19.471 21.63 2.061 4.222a.684.684 0 0 1-.207-.502c0-.196.078-.372.233-.527a.717.717 0 0 1 .527-.217c.206 0 .382.072.526.217l17.41 17.41a.684.684 0 0 1 .208.502.727.727 0 0 1-.233.527.702.702 0 0 1-.527.212.753.753 0 0 1-.527-.212Zm-1.677-6.618L7.283 4.5h8.704c.505 0 .932.175 1.282.525.35.35.525.778.525 1.283v4.577l2.737-2.737a.43.43 0 0 1 .499-.103c.189.075.284.22.284.434v7.042c0 .214-.095.359-.284.434a.43.43 0 0 1-.5-.103l-2.736-2.737v1.896ZM4.467 4.518l13.308 13.308c-.017.456-.209.85-.577 1.179-.368.33-.78.494-1.236.494H4.577c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.457.168-.869.502-1.237.335-.368.734-.552 1.196-.552Z"
658
+ d: "M4.548 19.5c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.505.175-.933.525-1.283.35-.35.778-.525 1.283-.525h11.384c.506 0 .933.175 1.283.525.35.35.525.778.525 1.283v4.577l2.737-2.737c.154-.154.322-.19.506-.11s.276.227.276.44v7.043c0 .214-.092.361-.276.441-.184.08-.352.044-.506-.11l-2.737-2.737v4.577c0 .505-.175.933-.525 1.283-.35.35-.777.525-1.283.525H4.548Zm0-1.5h11.384a.3.3 0 0 0 .222-.087.3.3 0 0 0 .086-.22V6.307a.3.3 0 0 0-.086-.221.3.3 0 0 0-.222-.087H4.548a.3.3 0 0 0-.221.087.3.3 0 0 0-.087.22v11.385a.3.3 0 0 0 .087.221.3.3 0 0 0 .22.087Z"
646
659
  }))));
647
660
  };
648
661
 
649
662
  var _path$6, _g$6;
650
663
  function _extends$6() { _extends$6 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$6.apply(this, arguments); }
651
- var SvgVideocamOff = function SvgVideocamOff(props) {
664
+ var SvgVideocam1 = function SvgVideocam1(props) {
652
665
  return /*#__PURE__*/React.createElement("svg", _extends$6({
653
666
  xmlns: "http://www.w3.org/2000/svg",
654
667
  width: 24,
655
668
  height: 24,
656
669
  fill: "none"
657
670
  }, props), /*#__PURE__*/React.createElement("mask", {
658
- id: "videocam_off_svg__a",
671
+ id: "videocam-1_svg__a",
659
672
  width: 24,
660
673
  height: 24,
661
674
  x: 0,
@@ -668,10 +681,10 @@ var SvgVideocamOff = function SvgVideocamOff(props) {
668
681
  fill: "#D9D9D9",
669
682
  d: "M0 0h24v24H0z"
670
683
  }))), _g$6 || (_g$6 = /*#__PURE__*/React.createElement("g", {
671
- mask: "url(#videocam_off_svg__a)"
684
+ mask: "url(#videocam-1_svg__a)"
672
685
  }, /*#__PURE__*/React.createElement("path", {
673
686
  fill: "#2C3336",
674
- d: "m20.506 15.852-2.737-2.737v1.896l-1.5-1.5V6.308a.3.3 0 0 0-.086-.221.3.3 0 0 0-.221-.087H8.758l-1.5-1.5h8.704c.505 0 .932.175 1.282.525.35.35.525.778.525 1.283v4.577l2.737-2.737c.154-.154.323-.19.507-.11s.276.227.276.44v7.043c0 .214-.092.361-.276.441-.184.08-.353.044-.507-.11Zm-1.06 5.779L2.036 4.22a.684.684 0 0 1-.207-.502c0-.196.078-.372.233-.527a.717.717 0 0 1 .527-.217c.206 0 .382.072.527.217l17.41 17.41a.684.684 0 0 1 .207.502.727.727 0 0 1-.233.527.724.724 0 0 1-.532.217.692.692 0 0 1-.522-.217ZM4.443 4.519 5.923 6H4.577a.3.3 0 0 0-.221.087.3.3 0 0 0-.087.22v11.385a.3.3 0 0 0 .087.221.3.3 0 0 0 .221.087h11.385a.3.3 0 0 0 .22-.087.3.3 0 0 0 .088-.22v-1.347l1.48 1.48a1.752 1.752 0 0 1-.558 1.187c-.34.325-.75.487-1.23.487H4.577c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.48.163-.89.487-1.23.324-.34.72-.527 1.187-.559Z"
687
+ d: "M4.548 19.5c-.505 0-.933-.175-1.283-.525a1.745 1.745 0 0 1-.525-1.283V6.308c0-.505.175-.933.525-1.283.35-.35.778-.525 1.283-.525h11.384c.506 0 .933.175 1.283.525.35.35.525.778.525 1.283v4.577l2.737-2.737a.43.43 0 0 1 .499-.103c.189.075.283.22.283.434v7.042c0 .214-.094.359-.283.434a.43.43 0 0 1-.5-.103l-2.736-2.737v4.577c0 .505-.175.933-.525 1.283-.35.35-.777.525-1.283.525H4.548Z"
675
688
  }))));
676
689
  };
677
690
 
@@ -793,13 +806,14 @@ var SvgVolumeUp = function SvgVolumeUp(props) {
793
806
 
794
807
  var _path$1, _g$1;
795
808
  function _extends$1() { _extends$1 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1.apply(this, arguments); }
796
- var SvgWarning = function SvgWarning(props) {
809
+ var SvgWarning1 = function SvgWarning1(props) {
797
810
  return /*#__PURE__*/React.createElement("svg", _extends$1({
798
811
  xmlns: "http://www.w3.org/2000/svg",
799
- fill: "none",
800
- viewBox: "0 0 24 24"
812
+ width: 24,
813
+ height: 24,
814
+ fill: "none"
801
815
  }, props), /*#__PURE__*/React.createElement("mask", {
802
- id: "warning_svg__a",
816
+ id: "warning-1_svg__a",
803
817
  width: 24,
804
818
  height: 24,
805
819
  x: 0,
@@ -812,23 +826,22 @@ var SvgWarning = function SvgWarning(props) {
812
826
  fill: "#D9D9D9",
813
827
  d: "M0 0h24v24H0z"
814
828
  }))), _g$1 || (_g$1 = /*#__PURE__*/React.createElement("g", {
815
- mask: "url(#warning_svg__a)"
829
+ mask: "url(#warning-1_svg__a)"
816
830
  }, /*#__PURE__*/React.createElement("path", {
817
831
  fill: "#2C3336",
818
- d: "M2.725 21a.973.973 0 0 1-.85-.5 1.098 1.098 0 0 1-.138-.488.898.898 0 0 1 .138-.512l9.25-16a.98.98 0 0 1 .387-.375C11.671 3.042 11.833 3 12 3c.166 0 .329.042.487.125a.983.983 0 0 1 .388.375l9.25 16c.1.167.146.337.137.512a1.098 1.098 0 0 1-.137.488.973.973 0 0 1-.85.5H2.725ZM12 18c.283 0 .52-.096.712-.288A.968.968 0 0 0 13 17a.968.968 0 0 0-.288-.712A.968.968 0 0 0 12 16a.968.968 0 0 0-.713.288A.968.968 0 0 0 11 17c0 .283.096.52.287.712.192.192.43.288.713.288Zm0-3a.97.97 0 0 0 .712-.287A.968.968 0 0 0 13 14v-3a.968.968 0 0 0-.288-.713A.968.968 0 0 0 12 10a.968.968 0 0 0-.713.287A.968.968 0 0 0 11 11v3c0 .283.096.52.287.713.192.191.43.287.713.287Z"
832
+ d: "M3.426 20.5a.878.878 0 0 1-.772-.452.955.955 0 0 1-.129-.437.816.816 0 0 1 .127-.467l8.561-14.788A.896.896 0 0 1 12 3.904a.897.897 0 0 1 .787.452l8.56 14.788c.093.154.136.31.128.467a.955.955 0 0 1-.129.437.878.878 0 0 1-.771.452H3.425ZM4.45 19h15.1L12 6 4.45 19ZM12 17.808c.229 0 .42-.078.576-.232a.781.781 0 0 0 .232-.576.781.781 0 0 0-.232-.575.782.782 0 0 0-.576-.233.781.781 0 0 0-.575.233.781.781 0 0 0-.233.575c0 .229.078.42.233.576a.781.781 0 0 0 .575.232Zm0-2.616c.213 0 .391-.072.535-.215a.726.726 0 0 0 .215-.535v-3.5a.725.725 0 0 0-.216-.534.726.726 0 0 0-.534-.216.725.725 0 0 0-.534.216.726.726 0 0 0-.216.534v3.5c0 .213.072.391.216.535a.726.726 0 0 0 .534.215Z"
819
833
  }))));
820
834
  };
821
835
 
822
836
  var _path, _g;
823
837
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
824
- var SvgWarning1 = function SvgWarning1(props) {
838
+ var SvgWarning = function SvgWarning(props) {
825
839
  return /*#__PURE__*/React.createElement("svg", _extends({
826
840
  xmlns: "http://www.w3.org/2000/svg",
827
- width: 24,
828
- height: 24,
829
- fill: "none"
841
+ fill: "none",
842
+ viewBox: "0 0 24 24"
830
843
  }, props), /*#__PURE__*/React.createElement("mask", {
831
- id: "warning-1_svg__a",
844
+ id: "warning_svg__a",
832
845
  width: 24,
833
846
  height: 24,
834
847
  x: 0,
@@ -841,10 +854,10 @@ var SvgWarning1 = function SvgWarning1(props) {
841
854
  fill: "#D9D9D9",
842
855
  d: "M0 0h24v24H0z"
843
856
  }))), _g || (_g = /*#__PURE__*/React.createElement("g", {
844
- mask: "url(#warning-1_svg__a)"
857
+ mask: "url(#warning_svg__a)"
845
858
  }, /*#__PURE__*/React.createElement("path", {
846
859
  fill: "#2C3336",
847
- d: "M3.426 20.5a.878.878 0 0 1-.772-.452.955.955 0 0 1-.129-.437.816.816 0 0 1 .127-.467l8.561-14.788A.896.896 0 0 1 12 3.904a.897.897 0 0 1 .787.452l8.56 14.788c.093.154.136.31.128.467a.955.955 0 0 1-.129.437.878.878 0 0 1-.771.452H3.425ZM4.45 19h15.1L12 6 4.45 19ZM12 17.808c.229 0 .42-.078.576-.232a.781.781 0 0 0 .232-.576.781.781 0 0 0-.232-.575.782.782 0 0 0-.576-.233.781.781 0 0 0-.575.233.781.781 0 0 0-.233.575c0 .229.078.42.233.576a.781.781 0 0 0 .575.232Zm0-2.616c.213 0 .391-.072.535-.215a.726.726 0 0 0 .215-.535v-3.5a.725.725 0 0 0-.216-.534.726.726 0 0 0-.534-.216.725.725 0 0 0-.534.216.726.726 0 0 0-.216.534v3.5c0 .213.072.391.216.535a.726.726 0 0 0 .534.215Z"
860
+ d: "M2.725 21a.973.973 0 0 1-.85-.5 1.098 1.098 0 0 1-.138-.488.898.898 0 0 1 .138-.512l9.25-16a.98.98 0 0 1 .387-.375C11.671 3.042 11.833 3 12 3c.166 0 .329.042.487.125a.983.983 0 0 1 .388.375l9.25 16c.1.167.146.337.137.512a1.098 1.098 0 0 1-.137.488.973.973 0 0 1-.85.5H2.725ZM12 18c.283 0 .52-.096.712-.288A.968.968 0 0 0 13 17a.968.968 0 0 0-.288-.712A.968.968 0 0 0 12 16a.968.968 0 0 0-.713.288A.968.968 0 0 0 11 17c0 .283.096.52.287.712.192.192.43.288.713.288Zm0-3a.97.97 0 0 0 .712-.287A.968.968 0 0 0 13 14v-3a.968.968 0 0 0-.288-.713A.968.968 0 0 0 12 10a.968.968 0 0 0-.713.287A.968.968 0 0 0 11 11v3c0 .283.096.52.287.713.192.191.43.287.713.287Z"
848
861
  }))));
849
862
  };
850
863
 
@@ -864,6 +877,7 @@ declare namespace index {
864
877
  SvgMicOff as MicOffSolidIcon,
865
878
  SvgMic1 as MicOnSolidIcon,
866
879
  SvgMic as MicOnfIcon,
880
+ SvgPlay as PlayIcon,
867
881
  SvgVideocamOff as VideoCamOffIcon,
868
882
  SvgVideocamOff1 as VideoCamOffSolidIcon,
869
883
  SvgVideocam as VideoCamOnIcon,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "demio-ui",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
package/dist/.DS_Store DELETED
Binary file