@manychat/icons 1.44.2 → 1.47.0

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.
package/dist/index.es.js CHANGED
@@ -4490,13 +4490,47 @@ Messenger.defaultProps = {
4490
4490
 
4491
4491
  const _excluded$1$ = ["color", "size"];
4492
4492
 
4493
- const SponsoredMessages2 = props => {
4493
+ const CannedResponse = props => {
4494
4494
  const {
4495
4495
  color,
4496
4496
  size
4497
4497
  } = props,
4498
4498
  otherProps = _objectWithoutProperties(props, _excluded$1$);
4499
4499
 
4500
+ return /*#__PURE__*/React.createElement("svg", _extends({
4501
+ width: size,
4502
+ height: size,
4503
+ viewBox: "0 0 24 24",
4504
+ fill: "none",
4505
+ xmlns: "http://www.w3.org/2000/svg",
4506
+ preserveAspectRatio: "xMidYMid meet"
4507
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
4508
+ d: "M11.6196 7.07081C11.7393 6.70229 12.2607 6.70229 12.3804 7.07081L12.9205 8.73302C12.9741 8.89783 13.1276 9.00942 13.3009 9.00942H15.0487C15.4362 9.00942 15.5973 9.50526 15.2838 9.73302L13.8698 10.7603C13.7296 10.8622 13.671 11.0427 13.7245 11.2075L14.2646 12.8697C14.3844 13.2383 13.9626 13.5447 13.6491 13.317L12.2351 12.2897C12.0949 12.1878 11.9051 12.1878 11.7649 12.2897L10.3509 13.317C10.0374 13.5447 9.61565 13.2383 9.73539 12.8698L10.2755 11.2075C10.329 11.0427 10.2704 10.8622 10.1302 10.7603L8.71621 9.73302C8.40272 9.50526 8.56383 9.00942 8.95132 9.00942H10.6991C10.8724 9.00942 11.0259 8.89783 11.0795 8.73302L11.6196 7.07081Z",
4509
+ fill: color
4510
+ }), /*#__PURE__*/React.createElement("path", {
4511
+ d: "M4.53774 14.999L5.10767 14.5115C5.10029 14.5029 5.09271 14.4944 5.08494 14.4861L4.53774 14.999ZM8.86957 20.0631L8.29963 20.5506C8.31258 20.5658 8.32613 20.5804 8.34024 20.5945L8.86957 20.0631ZM9.81521 16.8474V16.0974C9.401 16.0974 9.06521 16.4332 9.06521 16.8474H9.81521ZM8.73913 4.5H15.2609V3H8.73913V4.5ZM20.25 10.2987C20.25 11.7089 19.6796 13.1783 18.7447 14.2917C17.8105 15.4043 16.5709 16.0974 15.2609 16.0974V17.5974C17.1205 17.5974 18.7505 16.6174 19.8934 15.2563C21.0357 13.8959 21.75 12.091 21.75 10.2987H20.25ZM15.2609 4.5C16.5709 4.5 17.8105 5.1931 18.7447 6.30569C19.6796 7.41906 20.25 8.88845 20.25 10.2987H21.75C21.75 8.50641 21.0357 6.70145 19.8934 5.34111C18.7505 3.97998 17.1205 3 15.2609 3V4.5ZM8.73913 3C6.87953 3 5.24951 3.97998 4.10659 5.34111C2.96432 6.70145 2.25 8.50641 2.25 10.2987H3.75C3.75 8.88845 4.32043 7.41906 5.25532 6.30569C6.18955 5.1931 7.42909 4.5 8.73913 4.5V3ZM2.25 10.2987C2.25 11.1524 2.40422 12.1422 2.68688 13.0592C2.96617 13.9652 3.39394 14.8754 3.99054 15.5119L5.08494 14.4861C4.7075 14.0834 4.3664 13.4156 4.12033 12.6173C3.87763 11.83 3.75 10.9892 3.75 10.2987H2.25ZM9.06521 19.7C9.06521 19.6392 9.10886 19.5559 9.19825 19.5183C9.24129 19.5002 9.2895 19.4953 9.33422 19.5046C9.38079 19.5142 9.4013 19.5342 9.39889 19.5318L8.34024 20.5945C8.74187 20.9946 9.29963 21.103 9.78 20.9009C10.2444 20.7055 10.5652 20.2457 10.5652 19.7H9.06521ZM3.9678 15.4865L8.29963 20.5506L9.4395 19.5756L5.10767 14.5115L3.9678 15.4865ZM15.2609 16.0974H9.81521V17.5974H15.2609V16.0974ZM10.5652 19.7V16.8474H9.06521V19.7H10.5652Z",
4512
+ fill: color
4513
+ }));
4514
+ };
4515
+
4516
+ CannedResponse.propTypes = {
4517
+ color: PropTypes.string,
4518
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
4519
+ };
4520
+ CannedResponse.defaultProps = {
4521
+ color: 'currentColor',
4522
+ size: '24'
4523
+ };
4524
+
4525
+ const _excluded$20 = ["color", "size"];
4526
+
4527
+ const SponsoredMessages2 = props => {
4528
+ const {
4529
+ color,
4530
+ size
4531
+ } = props,
4532
+ otherProps = _objectWithoutProperties(props, _excluded$20);
4533
+
4500
4534
  return /*#__PURE__*/React.createElement("svg", _extends({
4501
4535
  width: size,
4502
4536
  height: size,
@@ -4519,14 +4553,14 @@ SponsoredMessages2.defaultProps = {
4519
4553
  size: '24'
4520
4554
  };
4521
4555
 
4522
- const _excluded$20 = ["color", "size"];
4556
+ const _excluded$21 = ["color", "size"];
4523
4557
 
4524
4558
  const FbChat = props => {
4525
4559
  const {
4526
4560
  color,
4527
4561
  size
4528
4562
  } = props,
4529
- otherProps = _objectWithoutProperties(props, _excluded$20);
4563
+ otherProps = _objectWithoutProperties(props, _excluded$21);
4530
4564
 
4531
4565
  return /*#__PURE__*/React.createElement("svg", _extends({
4532
4566
  width: size,
@@ -4550,14 +4584,14 @@ FbChat.defaultProps = {
4550
4584
  size: '24'
4551
4585
  };
4552
4586
 
4553
- const _excluded$21 = ["color", "size"];
4587
+ const _excluded$22 = ["color", "size"];
4554
4588
 
4555
4589
  const ActionMarkConversationAsDone = props => {
4556
4590
  const {
4557
4591
  color,
4558
4592
  size
4559
4593
  } = props,
4560
- otherProps = _objectWithoutProperties(props, _excluded$21);
4594
+ otherProps = _objectWithoutProperties(props, _excluded$22);
4561
4595
 
4562
4596
  return /*#__PURE__*/React.createElement("svg", _extends({
4563
4597
  width: size,
@@ -4581,14 +4615,14 @@ ActionMarkConversationAsDone.defaultProps = {
4581
4615
  size: '24'
4582
4616
  };
4583
4617
 
4584
- const _excluded$22 = ["color", "size"];
4618
+ const _excluded$23 = ["color", "size"];
4585
4619
 
4586
4620
  const FacebookMessenger = props => {
4587
4621
  const {
4588
4622
  color,
4589
4623
  size
4590
4624
  } = props,
4591
- otherProps = _objectWithoutProperties(props, _excluded$22);
4625
+ otherProps = _objectWithoutProperties(props, _excluded$23);
4592
4626
 
4593
4627
  return /*#__PURE__*/React.createElement("svg", _extends({
4594
4628
  width: size,
@@ -4617,14 +4651,14 @@ FacebookMessenger.defaultProps = {
4617
4651
  size: '24'
4618
4652
  };
4619
4653
 
4620
- const _excluded$23 = ["color", "size"];
4654
+ const _excluded$24 = ["color", "size"];
4621
4655
 
4622
4656
  const MessageOpen = props => {
4623
4657
  const {
4624
4658
  color,
4625
4659
  size
4626
4660
  } = props,
4627
- otherProps = _objectWithoutProperties(props, _excluded$23);
4661
+ otherProps = _objectWithoutProperties(props, _excluded$24);
4628
4662
 
4629
4663
  return /*#__PURE__*/React.createElement("svg", _extends({
4630
4664
  width: size,
@@ -4648,14 +4682,14 @@ MessageOpen.defaultProps = {
4648
4682
  size: '24'
4649
4683
  };
4650
4684
 
4651
- const _excluded$24 = ["color", "size"];
4685
+ const _excluded$25 = ["color", "size"];
4652
4686
 
4653
4687
  const MessageBack = props => {
4654
4688
  const {
4655
4689
  color,
4656
4690
  size
4657
4691
  } = props,
4658
- otherProps = _objectWithoutProperties(props, _excluded$24);
4692
+ otherProps = _objectWithoutProperties(props, _excluded$25);
4659
4693
 
4660
4694
  return /*#__PURE__*/React.createElement("svg", _extends({
4661
4695
  width: size,
@@ -4679,14 +4713,14 @@ MessageBack.defaultProps = {
4679
4713
  size: '24'
4680
4714
  };
4681
4715
 
4682
- const _excluded$25 = ["color", "size"];
4716
+ const _excluded$26 = ["color", "size"];
4683
4717
 
4684
4718
  const User = props => {
4685
4719
  const {
4686
4720
  color,
4687
4721
  size
4688
4722
  } = props,
4689
- otherProps = _objectWithoutProperties(props, _excluded$25);
4723
+ otherProps = _objectWithoutProperties(props, _excluded$26);
4690
4724
 
4691
4725
  return /*#__PURE__*/React.createElement("svg", _extends({
4692
4726
  width: size,
@@ -4713,14 +4747,14 @@ User.defaultProps = {
4713
4747
  size: '24'
4714
4748
  };
4715
4749
 
4716
- const _excluded$26 = ["color", "size"];
4750
+ const _excluded$27 = ["color", "size"];
4717
4751
 
4718
4752
  const Community = props => {
4719
4753
  const {
4720
4754
  color,
4721
4755
  size
4722
4756
  } = props,
4723
- otherProps = _objectWithoutProperties(props, _excluded$26);
4757
+ otherProps = _objectWithoutProperties(props, _excluded$27);
4724
4758
 
4725
4759
  return /*#__PURE__*/React.createElement("svg", _extends({
4726
4760
  width: size,
@@ -4744,14 +4778,14 @@ Community.defaultProps = {
4744
4778
  size: '24'
4745
4779
  };
4746
4780
 
4747
- const _excluded$27 = ["color", "size"];
4781
+ const _excluded$28 = ["color", "size"];
4748
4782
 
4749
4783
  const UserAdd = props => {
4750
4784
  const {
4751
4785
  color,
4752
4786
  size
4753
4787
  } = props,
4754
- otherProps = _objectWithoutProperties(props, _excluded$27);
4788
+ otherProps = _objectWithoutProperties(props, _excluded$28);
4755
4789
 
4756
4790
  return /*#__PURE__*/React.createElement("svg", _extends({
4757
4791
  width: size,
@@ -4778,14 +4812,14 @@ UserAdd.defaultProps = {
4778
4812
  size: '24'
4779
4813
  };
4780
4814
 
4781
- const _excluded$28 = ["color", "size"];
4815
+ const _excluded$29 = ["color", "size"];
4782
4816
 
4783
4817
  const Unassign = props => {
4784
4818
  const {
4785
4819
  color,
4786
4820
  size
4787
4821
  } = props,
4788
- otherProps = _objectWithoutProperties(props, _excluded$28);
4822
+ otherProps = _objectWithoutProperties(props, _excluded$29);
4789
4823
 
4790
4824
  return /*#__PURE__*/React.createElement("svg", _extends({
4791
4825
  width: size,
@@ -4812,14 +4846,14 @@ Unassign.defaultProps = {
4812
4846
  size: '24'
4813
4847
  };
4814
4848
 
4815
- const _excluded$29 = ["color", "size"];
4849
+ const _excluded$2a = ["color", "size"];
4816
4850
 
4817
4851
  const Assign = props => {
4818
4852
  const {
4819
4853
  color,
4820
4854
  size
4821
4855
  } = props,
4822
- otherProps = _objectWithoutProperties(props, _excluded$29);
4856
+ otherProps = _objectWithoutProperties(props, _excluded$2a);
4823
4857
 
4824
4858
  return /*#__PURE__*/React.createElement("svg", _extends({
4825
4859
  width: size,
@@ -4846,14 +4880,14 @@ Assign.defaultProps = {
4846
4880
  size: '24'
4847
4881
  };
4848
4882
 
4849
- const _excluded$2a = ["color", "size"];
4883
+ const _excluded$2b = ["color", "size"];
4850
4884
 
4851
4885
  const Audience = props => {
4852
4886
  const {
4853
4887
  color,
4854
4888
  size
4855
4889
  } = props,
4856
- otherProps = _objectWithoutProperties(props, _excluded$2a);
4890
+ otherProps = _objectWithoutProperties(props, _excluded$2b);
4857
4891
 
4858
4892
  return /*#__PURE__*/React.createElement("svg", _extends({
4859
4893
  width: size,
@@ -4880,14 +4914,14 @@ Audience.defaultProps = {
4880
4914
  size: '24'
4881
4915
  };
4882
4916
 
4883
- const _excluded$2b = ["color", "size"];
4917
+ const _excluded$2c = ["color", "size"];
4884
4918
 
4885
4919
  const Menu = props => {
4886
4920
  const {
4887
4921
  color,
4888
4922
  size
4889
4923
  } = props,
4890
- otherProps = _objectWithoutProperties(props, _excluded$2b);
4924
+ otherProps = _objectWithoutProperties(props, _excluded$2c);
4891
4925
 
4892
4926
  return /*#__PURE__*/React.createElement("svg", _extends({
4893
4927
  width: size,
@@ -4913,14 +4947,14 @@ Menu.defaultProps = {
4913
4947
  size: '24'
4914
4948
  };
4915
4949
 
4916
- const _excluded$2c = ["color", "size"];
4950
+ const _excluded$2d = ["color", "size"];
4917
4951
 
4918
4952
  const SelectAll = props => {
4919
4953
  const {
4920
4954
  color,
4921
4955
  size
4922
4956
  } = props,
4923
- otherProps = _objectWithoutProperties(props, _excluded$2c);
4957
+ otherProps = _objectWithoutProperties(props, _excluded$2d);
4924
4958
 
4925
4959
  return /*#__PURE__*/React.createElement("svg", _extends({
4926
4960
  width: size,
@@ -4944,14 +4978,14 @@ SelectAll.defaultProps = {
4944
4978
  size: '24'
4945
4979
  };
4946
4980
 
4947
- const _excluded$2d = ["color", "size"];
4981
+ const _excluded$2e = ["color", "size"];
4948
4982
 
4949
4983
  const TableView = props => {
4950
4984
  const {
4951
4985
  color,
4952
4986
  size
4953
4987
  } = props,
4954
- otherProps = _objectWithoutProperties(props, _excluded$2d);
4988
+ otherProps = _objectWithoutProperties(props, _excluded$2e);
4955
4989
 
4956
4990
  return /*#__PURE__*/React.createElement("svg", _extends({
4957
4991
  width: size,
@@ -4986,14 +5020,14 @@ TableView.defaultProps = {
4986
5020
  size: '24'
4987
5021
  };
4988
5022
 
4989
- const _excluded$2e = ["color", "size"];
5023
+ const _excluded$2f = ["color", "size"];
4990
5024
 
4991
5025
  const All = props => {
4992
5026
  const {
4993
5027
  color,
4994
5028
  size
4995
5029
  } = props,
4996
- otherProps = _objectWithoutProperties(props, _excluded$2e);
5030
+ otherProps = _objectWithoutProperties(props, _excluded$2f);
4997
5031
 
4998
5032
  return /*#__PURE__*/React.createElement("svg", _extends({
4999
5033
  width: size,
@@ -5019,14 +5053,14 @@ All.defaultProps = {
5019
5053
  size: '24'
5020
5054
  };
5021
5055
 
5022
- const _excluded$2f = ["color", "size"];
5056
+ const _excluded$2g = ["color", "size"];
5023
5057
 
5024
5058
  const BuilderText = props => {
5025
5059
  const {
5026
5060
  color,
5027
5061
  size
5028
5062
  } = props,
5029
- otherProps = _objectWithoutProperties(props, _excluded$2f);
5063
+ otherProps = _objectWithoutProperties(props, _excluded$2g);
5030
5064
 
5031
5065
  return /*#__PURE__*/React.createElement("svg", _extends({
5032
5066
  width: size,
@@ -5052,14 +5086,14 @@ BuilderText.defaultProps = {
5052
5086
  size: '24'
5053
5087
  };
5054
5088
 
5055
- const _excluded$2g = ["color", "size"];
5089
+ const _excluded$2h = ["color", "size"];
5056
5090
 
5057
5091
  const Options = props => {
5058
5092
  const {
5059
5093
  color,
5060
5094
  size
5061
5095
  } = props,
5062
- otherProps = _objectWithoutProperties(props, _excluded$2g);
5096
+ otherProps = _objectWithoutProperties(props, _excluded$2h);
5063
5097
 
5064
5098
  return /*#__PURE__*/React.createElement("svg", _extends({
5065
5099
  width: size,
@@ -5085,14 +5119,14 @@ Options.defaultProps = {
5085
5119
  size: '24'
5086
5120
  };
5087
5121
 
5088
- const _excluded$2h = ["color", "size"];
5122
+ const _excluded$2i = ["color", "size"];
5089
5123
 
5090
5124
  const Delete = props => {
5091
5125
  const {
5092
5126
  color,
5093
5127
  size
5094
5128
  } = props,
5095
- otherProps = _objectWithoutProperties(props, _excluded$2h);
5129
+ otherProps = _objectWithoutProperties(props, _excluded$2i);
5096
5130
 
5097
5131
  return /*#__PURE__*/React.createElement("svg", _extends({
5098
5132
  width: size,
@@ -5116,14 +5150,14 @@ Delete.defaultProps = {
5116
5150
  size: '24'
5117
5151
  };
5118
5152
 
5119
- const _excluded$2i = ["color", "size"];
5153
+ const _excluded$2j = ["color", "size"];
5120
5154
 
5121
5155
  const DeleteForever = props => {
5122
5156
  const {
5123
5157
  color,
5124
5158
  size
5125
5159
  } = props,
5126
- otherProps = _objectWithoutProperties(props, _excluded$2i);
5160
+ otherProps = _objectWithoutProperties(props, _excluded$2j);
5127
5161
 
5128
5162
  return /*#__PURE__*/React.createElement("svg", _extends({
5129
5163
  width: size,
@@ -5147,14 +5181,14 @@ DeleteForever.defaultProps = {
5147
5181
  size: '24'
5148
5182
  };
5149
5183
 
5150
- const _excluded$2j = ["color", "size"];
5184
+ const _excluded$2k = ["color", "size"];
5151
5185
 
5152
5186
  const GtLanding = props => {
5153
5187
  const {
5154
5188
  color,
5155
5189
  size
5156
5190
  } = props,
5157
- otherProps = _objectWithoutProperties(props, _excluded$2j);
5191
+ otherProps = _objectWithoutProperties(props, _excluded$2k);
5158
5192
 
5159
5193
  return /*#__PURE__*/React.createElement("svg", _extends({
5160
5194
  width: size,
@@ -5181,14 +5215,14 @@ GtLanding.defaultProps = {
5181
5215
  size: '24'
5182
5216
  };
5183
5217
 
5184
- const _excluded$2k = ["color", "size"];
5218
+ const _excluded$2l = ["color", "size"];
5185
5219
 
5186
5220
  const Edit = props => {
5187
5221
  const {
5188
5222
  color,
5189
5223
  size
5190
5224
  } = props,
5191
- otherProps = _objectWithoutProperties(props, _excluded$2k);
5225
+ otherProps = _objectWithoutProperties(props, _excluded$2l);
5192
5226
 
5193
5227
  return /*#__PURE__*/React.createElement("svg", _extends({
5194
5228
  width: size,
@@ -5214,14 +5248,14 @@ Edit.defaultProps = {
5214
5248
  size: '24'
5215
5249
  };
5216
5250
 
5217
- const _excluded$2l = ["color", "size"];
5251
+ const _excluded$2m = ["color", "size"];
5218
5252
 
5219
5253
  const AddTag = props => {
5220
5254
  const {
5221
5255
  color,
5222
5256
  size
5223
5257
  } = props,
5224
- otherProps = _objectWithoutProperties(props, _excluded$2l);
5258
+ otherProps = _objectWithoutProperties(props, _excluded$2m);
5225
5259
 
5226
5260
  return /*#__PURE__*/React.createElement("svg", _extends({
5227
5261
  width: size,
@@ -5250,14 +5284,14 @@ AddTag.defaultProps = {
5250
5284
  size: '24'
5251
5285
  };
5252
5286
 
5253
- const _excluded$2m = ["color", "size"];
5287
+ const _excluded$2n = ["color", "size"];
5254
5288
 
5255
5289
  const MagicWand = props => {
5256
5290
  const {
5257
5291
  color,
5258
5292
  size
5259
5293
  } = props,
5260
- otherProps = _objectWithoutProperties(props, _excluded$2m);
5294
+ otherProps = _objectWithoutProperties(props, _excluded$2n);
5261
5295
 
5262
5296
  return /*#__PURE__*/React.createElement("svg", _extends({
5263
5297
  width: size,
@@ -5281,14 +5315,14 @@ MagicWand.defaultProps = {
5281
5315
  size: '24'
5282
5316
  };
5283
5317
 
5284
- const _excluded$2n = ["color", "size"];
5318
+ const _excluded$2o = ["color", "size"];
5285
5319
 
5286
5320
  const Attach = props => {
5287
5321
  const {
5288
5322
  color,
5289
5323
  size
5290
5324
  } = props,
5291
- otherProps = _objectWithoutProperties(props, _excluded$2n);
5325
+ otherProps = _objectWithoutProperties(props, _excluded$2o);
5292
5326
 
5293
5327
  return /*#__PURE__*/React.createElement("svg", _extends({
5294
5328
  width: size,
@@ -5312,14 +5346,14 @@ Attach.defaultProps = {
5312
5346
  size: '24'
5313
5347
  };
5314
5348
 
5315
- const _excluded$2o = ["color", "size"];
5349
+ const _excluded$2p = ["color", "size"];
5316
5350
 
5317
5351
  const Health = props => {
5318
5352
  const {
5319
5353
  color,
5320
5354
  size
5321
5355
  } = props,
5322
- otherProps = _objectWithoutProperties(props, _excluded$2o);
5356
+ otherProps = _objectWithoutProperties(props, _excluded$2p);
5323
5357
 
5324
5358
  return /*#__PURE__*/React.createElement("svg", _extends({
5325
5359
  width: size,
@@ -5346,14 +5380,14 @@ Health.defaultProps = {
5346
5380
  size: '24'
5347
5381
  };
5348
5382
 
5349
- const _excluded$2p = ["color", "size"];
5383
+ const _excluded$2q = ["color", "size"];
5350
5384
 
5351
5385
  const Star = props => {
5352
5386
  const {
5353
5387
  color,
5354
5388
  size
5355
5389
  } = props,
5356
- otherProps = _objectWithoutProperties(props, _excluded$2p);
5390
+ otherProps = _objectWithoutProperties(props, _excluded$2q);
5357
5391
 
5358
5392
  return /*#__PURE__*/React.createElement("svg", _extends({
5359
5393
  width: size,
@@ -5378,14 +5412,14 @@ Star.defaultProps = {
5378
5412
  size: '24'
5379
5413
  };
5380
5414
 
5381
- const _excluded$2q = ["color", "size"];
5415
+ const _excluded$2r = ["color", "size"];
5382
5416
 
5383
5417
  const Starred = props => {
5384
5418
  const {
5385
5419
  color,
5386
5420
  size
5387
5421
  } = props,
5388
- otherProps = _objectWithoutProperties(props, _excluded$2q);
5422
+ otherProps = _objectWithoutProperties(props, _excluded$2r);
5389
5423
 
5390
5424
  return /*#__PURE__*/React.createElement("svg", _extends({
5391
5425
  width: size,
@@ -5411,14 +5445,14 @@ Starred.defaultProps = {
5411
5445
  size: '24'
5412
5446
  };
5413
5447
 
5414
- const _excluded$2r = ["color", "size"];
5448
+ const _excluded$2s = ["color", "size"];
5415
5449
 
5416
5450
  const ArrowDropDown = props => {
5417
5451
  const {
5418
5452
  color,
5419
5453
  size
5420
5454
  } = props,
5421
- otherProps = _objectWithoutProperties(props, _excluded$2r);
5455
+ otherProps = _objectWithoutProperties(props, _excluded$2s);
5422
5456
 
5423
5457
  return /*#__PURE__*/React.createElement("svg", _extends({
5424
5458
  width: size,
@@ -5442,14 +5476,14 @@ ArrowDropDown.defaultProps = {
5442
5476
  size: '24'
5443
5477
  };
5444
5478
 
5445
- const _excluded$2s = ["color", "size"];
5479
+ const _excluded$2t = ["color", "size"];
5446
5480
 
5447
5481
  const ArrowDropUp = props => {
5448
5482
  const {
5449
5483
  color,
5450
5484
  size
5451
5485
  } = props,
5452
- otherProps = _objectWithoutProperties(props, _excluded$2s);
5486
+ otherProps = _objectWithoutProperties(props, _excluded$2t);
5453
5487
 
5454
5488
  return /*#__PURE__*/React.createElement("svg", _extends({
5455
5489
  width: size,
@@ -5473,14 +5507,14 @@ ArrowDropUp.defaultProps = {
5473
5507
  size: '24'
5474
5508
  };
5475
5509
 
5476
- const _excluded$2t = ["color", "size"];
5510
+ const _excluded$2u = ["color", "size"];
5477
5511
 
5478
5512
  const SolidArrowUnsorted = props => {
5479
5513
  const {
5480
5514
  color,
5481
5515
  size
5482
5516
  } = props,
5483
- otherProps = _objectWithoutProperties(props, _excluded$2t);
5517
+ otherProps = _objectWithoutProperties(props, _excluded$2u);
5484
5518
 
5485
5519
  return /*#__PURE__*/React.createElement("svg", _extends({
5486
5520
  width: size,
@@ -5507,14 +5541,14 @@ SolidArrowUnsorted.defaultProps = {
5507
5541
  size: '24'
5508
5542
  };
5509
5543
 
5510
- const _excluded$2u = ["color", "size"];
5544
+ const _excluded$2v = ["color", "size"];
5511
5545
 
5512
5546
  const DefaultReply = props => {
5513
5547
  const {
5514
5548
  color,
5515
5549
  size
5516
5550
  } = props,
5517
- otherProps = _objectWithoutProperties(props, _excluded$2u);
5551
+ otherProps = _objectWithoutProperties(props, _excluded$2v);
5518
5552
 
5519
5553
  return /*#__PURE__*/React.createElement("svg", _extends({
5520
5554
  width: size,
@@ -5538,14 +5572,14 @@ DefaultReply.defaultProps = {
5538
5572
  size: '24'
5539
5573
  };
5540
5574
 
5541
- const _excluded$2v = ["color", "size"];
5575
+ const _excluded$2w = ["color", "size"];
5542
5576
 
5543
5577
  const Fullscreen = props => {
5544
5578
  const {
5545
5579
  color,
5546
5580
  size
5547
5581
  } = props,
5548
- otherProps = _objectWithoutProperties(props, _excluded$2v);
5582
+ otherProps = _objectWithoutProperties(props, _excluded$2w);
5549
5583
 
5550
5584
  return /*#__PURE__*/React.createElement("svg", _extends({
5551
5585
  width: size,
@@ -5569,14 +5603,14 @@ Fullscreen.defaultProps = {
5569
5603
  size: '24'
5570
5604
  };
5571
5605
 
5572
- const _excluded$2w = ["color", "size"];
5606
+ const _excluded$2x = ["color", "size"];
5573
5607
 
5574
5608
  const ArrowDrag = props => {
5575
5609
  const {
5576
5610
  color,
5577
5611
  size
5578
5612
  } = props,
5579
- otherProps = _objectWithoutProperties(props, _excluded$2w);
5613
+ otherProps = _objectWithoutProperties(props, _excluded$2x);
5580
5614
 
5581
5615
  return /*#__PURE__*/React.createElement("svg", _extends({
5582
5616
  width: size,
@@ -5600,14 +5634,14 @@ ArrowDrag.defaultProps = {
5600
5634
  size: '24'
5601
5635
  };
5602
5636
 
5603
- const _excluded$2x = ["color", "size"];
5637
+ const _excluded$2y = ["color", "size"];
5604
5638
 
5605
5639
  const Sort = props => {
5606
5640
  const {
5607
5641
  color,
5608
5642
  size
5609
5643
  } = props,
5610
- otherProps = _objectWithoutProperties(props, _excluded$2x);
5644
+ otherProps = _objectWithoutProperties(props, _excluded$2y);
5611
5645
 
5612
5646
  return /*#__PURE__*/React.createElement("svg", _extends({
5613
5647
  width: size,
@@ -5631,14 +5665,14 @@ Sort.defaultProps = {
5631
5665
  size: '24'
5632
5666
  };
5633
5667
 
5634
- const _excluded$2y = ["color", "size"];
5668
+ const _excluded$2z = ["color", "size"];
5635
5669
 
5636
5670
  const ExitFullscreen = props => {
5637
5671
  const {
5638
5672
  color,
5639
5673
  size
5640
5674
  } = props,
5641
- otherProps = _objectWithoutProperties(props, _excluded$2y);
5675
+ otherProps = _objectWithoutProperties(props, _excluded$2z);
5642
5676
 
5643
5677
  return /*#__PURE__*/React.createElement("svg", _extends({
5644
5678
  width: size,
@@ -5662,14 +5696,14 @@ ExitFullscreen.defaultProps = {
5662
5696
  size: '24'
5663
5697
  };
5664
5698
 
5665
- const _excluded$2z = ["color", "size"];
5699
+ const _excluded$2A = ["color", "size"];
5666
5700
 
5667
5701
  const DragConnector = props => {
5668
5702
  const {
5669
5703
  color,
5670
5704
  size
5671
5705
  } = props,
5672
- otherProps = _objectWithoutProperties(props, _excluded$2z);
5706
+ otherProps = _objectWithoutProperties(props, _excluded$2A);
5673
5707
 
5674
5708
  return /*#__PURE__*/React.createElement("svg", _extends({
5675
5709
  width: size,
@@ -5699,14 +5733,14 @@ DragConnector.defaultProps = {
5699
5733
  size: '24'
5700
5734
  };
5701
5735
 
5702
- const _excluded$2A = ["color", "size"];
5736
+ const _excluded$2B = ["color", "size"];
5703
5737
 
5704
5738
  const ArrowLeft = props => {
5705
5739
  const {
5706
5740
  color,
5707
5741
  size
5708
5742
  } = props,
5709
- otherProps = _objectWithoutProperties(props, _excluded$2A);
5743
+ otherProps = _objectWithoutProperties(props, _excluded$2B);
5710
5744
 
5711
5745
  return /*#__PURE__*/React.createElement("svg", _extends({
5712
5746
  width: size,
@@ -5730,14 +5764,14 @@ ArrowLeft.defaultProps = {
5730
5764
  size: '24'
5731
5765
  };
5732
5766
 
5733
- const _excluded$2B = ["color", "size"];
5767
+ const _excluded$2C = ["color", "size"];
5734
5768
 
5735
5769
  const ArrowRight = props => {
5736
5770
  const {
5737
5771
  color,
5738
5772
  size
5739
5773
  } = props,
5740
- otherProps = _objectWithoutProperties(props, _excluded$2B);
5774
+ otherProps = _objectWithoutProperties(props, _excluded$2C);
5741
5775
 
5742
5776
  return /*#__PURE__*/React.createElement("svg", _extends({
5743
5777
  width: size,
@@ -5761,14 +5795,14 @@ ArrowRight.defaultProps = {
5761
5795
  size: '24'
5762
5796
  };
5763
5797
 
5764
- const _excluded$2C = ["color", "size"];
5798
+ const _excluded$2D = ["color", "size"];
5765
5799
 
5766
5800
  const ArrowDown = props => {
5767
5801
  const {
5768
5802
  color,
5769
5803
  size
5770
5804
  } = props,
5771
- otherProps = _objectWithoutProperties(props, _excluded$2C);
5805
+ otherProps = _objectWithoutProperties(props, _excluded$2D);
5772
5806
 
5773
5807
  return /*#__PURE__*/React.createElement("svg", _extends({
5774
5808
  width: size,
@@ -5792,14 +5826,14 @@ ArrowDown.defaultProps = {
5792
5826
  size: '24'
5793
5827
  };
5794
5828
 
5795
- const _excluded$2D = ["color", "size"];
5829
+ const _excluded$2E = ["color", "size"];
5796
5830
 
5797
5831
  const ArrowUp = props => {
5798
5832
  const {
5799
5833
  color,
5800
5834
  size
5801
5835
  } = props,
5802
- otherProps = _objectWithoutProperties(props, _excluded$2D);
5836
+ otherProps = _objectWithoutProperties(props, _excluded$2E);
5803
5837
 
5804
5838
  return /*#__PURE__*/React.createElement("svg", _extends({
5805
5839
  width: size,
@@ -5823,14 +5857,14 @@ ArrowUp.defaultProps = {
5823
5857
  size: '24'
5824
5858
  };
5825
5859
 
5826
- const _excluded$2E = ["color", "size"];
5860
+ const _excluded$2F = ["color", "size"];
5827
5861
 
5828
5862
  const ChevronLeft = props => {
5829
5863
  const {
5830
5864
  color,
5831
5865
  size
5832
5866
  } = props,
5833
- otherProps = _objectWithoutProperties(props, _excluded$2E);
5867
+ otherProps = _objectWithoutProperties(props, _excluded$2F);
5834
5868
 
5835
5869
  return /*#__PURE__*/React.createElement("svg", _extends({
5836
5870
  width: size,
@@ -5854,14 +5888,14 @@ ChevronLeft.defaultProps = {
5854
5888
  size: '24'
5855
5889
  };
5856
5890
 
5857
- const _excluded$2F = ["color", "size"];
5891
+ const _excluded$2G = ["color", "size"];
5858
5892
 
5859
5893
  const ChevronRight = props => {
5860
5894
  const {
5861
5895
  color,
5862
5896
  size
5863
5897
  } = props,
5864
- otherProps = _objectWithoutProperties(props, _excluded$2F);
5898
+ otherProps = _objectWithoutProperties(props, _excluded$2G);
5865
5899
 
5866
5900
  return /*#__PURE__*/React.createElement("svg", _extends({
5867
5901
  width: size,
@@ -5885,14 +5919,14 @@ ChevronRight.defaultProps = {
5885
5919
  size: '24'
5886
5920
  };
5887
5921
 
5888
- const _excluded$2G = ["color", "size"];
5922
+ const _excluded$2H = ["color", "size"];
5889
5923
 
5890
5924
  const ChevronDown = props => {
5891
5925
  const {
5892
5926
  color,
5893
5927
  size
5894
5928
  } = props,
5895
- otherProps = _objectWithoutProperties(props, _excluded$2G);
5929
+ otherProps = _objectWithoutProperties(props, _excluded$2H);
5896
5930
 
5897
5931
  return /*#__PURE__*/React.createElement("svg", _extends({
5898
5932
  width: size,
@@ -5916,14 +5950,14 @@ ChevronDown.defaultProps = {
5916
5950
  size: '24'
5917
5951
  };
5918
5952
 
5919
- const _excluded$2H = ["color", "size"];
5953
+ const _excluded$2I = ["color", "size"];
5920
5954
 
5921
5955
  const ChevronUp = props => {
5922
5956
  const {
5923
5957
  color,
5924
5958
  size
5925
5959
  } = props,
5926
- otherProps = _objectWithoutProperties(props, _excluded$2H);
5960
+ otherProps = _objectWithoutProperties(props, _excluded$2I);
5927
5961
 
5928
5962
  return /*#__PURE__*/React.createElement("svg", _extends({
5929
5963
  width: size,
@@ -5947,14 +5981,14 @@ ChevronUp.defaultProps = {
5947
5981
  size: '24'
5948
5982
  };
5949
5983
 
5950
- const _excluded$2I = ["color", "size"];
5984
+ const _excluded$2J = ["color", "size"];
5951
5985
 
5952
5986
  const DoubleChevrotBack = props => {
5953
5987
  const {
5954
5988
  color,
5955
5989
  size
5956
5990
  } = props,
5957
- otherProps = _objectWithoutProperties(props, _excluded$2I);
5991
+ otherProps = _objectWithoutProperties(props, _excluded$2J);
5958
5992
 
5959
5993
  return /*#__PURE__*/React.createElement("svg", _extends({
5960
5994
  width: size,
@@ -5978,14 +6012,14 @@ DoubleChevrotBack.defaultProps = {
5978
6012
  size: '24'
5979
6013
  };
5980
6014
 
5981
- const _excluded$2J = ["color", "size"];
6015
+ const _excluded$2K = ["color", "size"];
5982
6016
 
5983
6017
  const DoubleChevrotForward = props => {
5984
6018
  const {
5985
6019
  color,
5986
6020
  size
5987
6021
  } = props,
5988
- otherProps = _objectWithoutProperties(props, _excluded$2J);
6022
+ otherProps = _objectWithoutProperties(props, _excluded$2K);
5989
6023
 
5990
6024
  return /*#__PURE__*/React.createElement("svg", _extends({
5991
6025
  width: size,
@@ -6009,14 +6043,14 @@ DoubleChevrotForward.defaultProps = {
6009
6043
  size: '24'
6010
6044
  };
6011
6045
 
6012
- const _excluded$2K = ["color", "size"];
6046
+ const _excluded$2L = ["color", "size"];
6013
6047
 
6014
6048
  const DoubleChevrotExpand = props => {
6015
6049
  const {
6016
6050
  color,
6017
6051
  size
6018
6052
  } = props,
6019
- otherProps = _objectWithoutProperties(props, _excluded$2K);
6053
+ otherProps = _objectWithoutProperties(props, _excluded$2L);
6020
6054
 
6021
6055
  return /*#__PURE__*/React.createElement("svg", _extends({
6022
6056
  width: size,
@@ -6040,14 +6074,14 @@ DoubleChevrotExpand.defaultProps = {
6040
6074
  size: '24'
6041
6075
  };
6042
6076
 
6043
- const _excluded$2L = ["color", "size"];
6077
+ const _excluded$2M = ["color", "size"];
6044
6078
 
6045
6079
  const DoubleChevrotCollapse = props => {
6046
6080
  const {
6047
6081
  color,
6048
6082
  size
6049
6083
  } = props,
6050
- otherProps = _objectWithoutProperties(props, _excluded$2L);
6084
+ otherProps = _objectWithoutProperties(props, _excluded$2M);
6051
6085
 
6052
6086
  return /*#__PURE__*/React.createElement("svg", _extends({
6053
6087
  width: size,
@@ -6071,14 +6105,14 @@ DoubleChevrotCollapse.defaultProps = {
6071
6105
  size: '24'
6072
6106
  };
6073
6107
 
6074
- const _excluded$2M = ["color", "size"];
6108
+ const _excluded$2N = ["color", "size"];
6075
6109
 
6076
6110
  const Id = props => {
6077
6111
  const {
6078
6112
  color,
6079
6113
  size
6080
6114
  } = props,
6081
- otherProps = _objectWithoutProperties(props, _excluded$2M);
6115
+ otherProps = _objectWithoutProperties(props, _excluded$2N);
6082
6116
 
6083
6117
  return /*#__PURE__*/React.createElement("svg", _extends({
6084
6118
  width: size,
@@ -6102,14 +6136,14 @@ Id.defaultProps = {
6102
6136
  size: '24'
6103
6137
  };
6104
6138
 
6105
- const _excluded$2N = ["color", "size"];
6139
+ const _excluded$2O = ["color", "size"];
6106
6140
 
6107
6141
  const Calendar = props => {
6108
6142
  const {
6109
6143
  color,
6110
6144
  size
6111
6145
  } = props,
6112
- otherProps = _objectWithoutProperties(props, _excluded$2N);
6146
+ otherProps = _objectWithoutProperties(props, _excluded$2O);
6113
6147
 
6114
6148
  return /*#__PURE__*/React.createElement("svg", _extends({
6115
6149
  width: size,
@@ -6133,14 +6167,14 @@ Calendar.defaultProps = {
6133
6167
  size: '24'
6134
6168
  };
6135
6169
 
6136
- const _excluded$2O = ["color", "size"];
6170
+ const _excluded$2P = ["color", "size"];
6137
6171
 
6138
6172
  const GtBar = props => {
6139
6173
  const {
6140
6174
  color,
6141
6175
  size
6142
6176
  } = props,
6143
- otherProps = _objectWithoutProperties(props, _excluded$2O);
6177
+ otherProps = _objectWithoutProperties(props, _excluded$2P);
6144
6178
 
6145
6179
  return /*#__PURE__*/React.createElement("svg", _extends({
6146
6180
  width: size,
@@ -6164,14 +6198,14 @@ GtBar.defaultProps = {
6164
6198
  size: '24'
6165
6199
  };
6166
6200
 
6167
- const _excluded$2P = ["color", "size"];
6201
+ const _excluded$2Q = ["color", "size"];
6168
6202
 
6169
6203
  const GtSlideIn = props => {
6170
6204
  const {
6171
6205
  color,
6172
6206
  size
6173
6207
  } = props,
6174
- otherProps = _objectWithoutProperties(props, _excluded$2P);
6208
+ otherProps = _objectWithoutProperties(props, _excluded$2Q);
6175
6209
 
6176
6210
  return /*#__PURE__*/React.createElement("svg", _extends({
6177
6211
  width: size,
@@ -6195,14 +6229,14 @@ GtSlideIn.defaultProps = {
6195
6229
  size: '24'
6196
6230
  };
6197
6231
 
6198
- const _excluded$2Q = ["color", "size"];
6232
+ const _excluded$2R = ["color", "size"];
6199
6233
 
6200
6234
  const GtPageTakeover = props => {
6201
6235
  const {
6202
6236
  color,
6203
6237
  size
6204
6238
  } = props,
6205
- otherProps = _objectWithoutProperties(props, _excluded$2Q);
6239
+ otherProps = _objectWithoutProperties(props, _excluded$2R);
6206
6240
 
6207
6241
  return /*#__PURE__*/React.createElement("svg", _extends({
6208
6242
  width: size,
@@ -6226,14 +6260,14 @@ GtPageTakeover.defaultProps = {
6226
6260
  size: '24'
6227
6261
  };
6228
6262
 
6229
- const _excluded$2R = ["color", "size"];
6263
+ const _excluded$2S = ["color", "size"];
6230
6264
 
6231
6265
  const BuilderCard = props => {
6232
6266
  const {
6233
6267
  color,
6234
6268
  size
6235
6269
  } = props,
6236
- otherProps = _objectWithoutProperties(props, _excluded$2R);
6270
+ otherProps = _objectWithoutProperties(props, _excluded$2S);
6237
6271
 
6238
6272
  return /*#__PURE__*/React.createElement("svg", _extends({
6239
6273
  width: size,
@@ -6257,14 +6291,14 @@ BuilderCard.defaultProps = {
6257
6291
  size: '24'
6258
6292
  };
6259
6293
 
6260
- const _excluded$2S = ["color", "size"];
6294
+ const _excluded$2T = ["color", "size"];
6261
6295
 
6262
6296
  const BuilderGallery = props => {
6263
6297
  const {
6264
6298
  color,
6265
6299
  size
6266
6300
  } = props,
6267
- otherProps = _objectWithoutProperties(props, _excluded$2S);
6301
+ otherProps = _objectWithoutProperties(props, _excluded$2T);
6268
6302
 
6269
6303
  return /*#__PURE__*/React.createElement("svg", _extends({
6270
6304
  width: size,
@@ -6288,14 +6322,14 @@ BuilderGallery.defaultProps = {
6288
6322
  size: '24'
6289
6323
  };
6290
6324
 
6291
- const _excluded$2T = ["color", "size"];
6325
+ const _excluded$2U = ["color", "size"];
6292
6326
 
6293
6327
  const BuilderList = props => {
6294
6328
  const {
6295
6329
  color,
6296
6330
  size
6297
6331
  } = props,
6298
- otherProps = _objectWithoutProperties(props, _excluded$2T);
6332
+ otherProps = _objectWithoutProperties(props, _excluded$2U);
6299
6333
 
6300
6334
  return /*#__PURE__*/React.createElement("svg", _extends({
6301
6335
  width: size,
@@ -6320,14 +6354,14 @@ BuilderList.defaultProps = {
6320
6354
  size: '24'
6321
6355
  };
6322
6356
 
6323
- const _excluded$2U = ["color", "size"];
6357
+ const _excluded$2V = ["color", "size"];
6324
6358
 
6325
6359
  const GtModal = props => {
6326
6360
  const {
6327
6361
  color,
6328
6362
  size
6329
6363
  } = props,
6330
- otherProps = _objectWithoutProperties(props, _excluded$2U);
6364
+ otherProps = _objectWithoutProperties(props, _excluded$2V);
6331
6365
 
6332
6366
  return /*#__PURE__*/React.createElement("svg", _extends({
6333
6367
  width: size,
@@ -6351,14 +6385,14 @@ GtModal.defaultProps = {
6351
6385
  size: '24'
6352
6386
  };
6353
6387
 
6354
- const _excluded$2V = ["color", "size"];
6388
+ const _excluded$2W = ["color", "size"];
6355
6389
 
6356
6390
  const GtButton = props => {
6357
6391
  const {
6358
6392
  color,
6359
6393
  size
6360
6394
  } = props,
6361
- otherProps = _objectWithoutProperties(props, _excluded$2V);
6395
+ otherProps = _objectWithoutProperties(props, _excluded$2W);
6362
6396
 
6363
6397
  return /*#__PURE__*/React.createElement("svg", _extends({
6364
6398
  width: size,
@@ -6382,14 +6416,14 @@ GtButton.defaultProps = {
6382
6416
  size: '24'
6383
6417
  };
6384
6418
 
6385
- const _excluded$2W = ["color", "size"];
6419
+ const _excluded$2X = ["color", "size"];
6386
6420
 
6387
6421
  const BuilderInput = props => {
6388
6422
  const {
6389
6423
  color,
6390
6424
  size
6391
6425
  } = props,
6392
- otherProps = _objectWithoutProperties(props, _excluded$2W);
6426
+ otherProps = _objectWithoutProperties(props, _excluded$2X);
6393
6427
 
6394
6428
  return /*#__PURE__*/React.createElement("svg", _extends({
6395
6429
  width: size,
@@ -6413,14 +6447,14 @@ BuilderInput.defaultProps = {
6413
6447
  size: '24'
6414
6448
  };
6415
6449
 
6416
- const _excluded$2X = ["color", "size"];
6450
+ const _excluded$2Y = ["color", "size"];
6417
6451
 
6418
6452
  const Keyboard = props => {
6419
6453
  const {
6420
6454
  color,
6421
6455
  size
6422
6456
  } = props,
6423
- otherProps = _objectWithoutProperties(props, _excluded$2X);
6457
+ otherProps = _objectWithoutProperties(props, _excluded$2Y);
6424
6458
 
6425
6459
  return /*#__PURE__*/React.createElement("svg", _extends({
6426
6460
  width: size,
@@ -6444,14 +6478,14 @@ Keyboard.defaultProps = {
6444
6478
  size: '24'
6445
6479
  };
6446
6480
 
6447
- const _excluded$2Y = ["color", "size"];
6481
+ const _excluded$2Z = ["color", "size"];
6448
6482
 
6449
6483
  const GtBox = props => {
6450
6484
  const {
6451
6485
  color,
6452
6486
  size
6453
6487
  } = props,
6454
- otherProps = _objectWithoutProperties(props, _excluded$2Y);
6488
+ otherProps = _objectWithoutProperties(props, _excluded$2Z);
6455
6489
 
6456
6490
  return /*#__PURE__*/React.createElement("svg", _extends({
6457
6491
  width: size,
@@ -6475,14 +6509,14 @@ GtBox.defaultProps = {
6475
6509
  size: '24'
6476
6510
  };
6477
6511
 
6478
- const _excluded$2Z = ["color", "size"];
6512
+ const _excluded$2_ = ["color", "size"];
6479
6513
 
6480
6514
  const SponsoredMessages = props => {
6481
6515
  const {
6482
6516
  color,
6483
6517
  size
6484
6518
  } = props,
6485
- otherProps = _objectWithoutProperties(props, _excluded$2Z);
6519
+ otherProps = _objectWithoutProperties(props, _excluded$2_);
6486
6520
 
6487
6521
  return /*#__PURE__*/React.createElement("svg", _extends({
6488
6522
  width: size,
@@ -6506,14 +6540,14 @@ SponsoredMessages.defaultProps = {
6506
6540
  size: '24'
6507
6541
  };
6508
6542
 
6509
- const _excluded$2_ = ["color", "size"];
6543
+ const _excluded$2$ = ["color", "size"];
6510
6544
 
6511
6545
  const GoToFlow = props => {
6512
6546
  const {
6513
6547
  color,
6514
6548
  size
6515
6549
  } = props,
6516
- otherProps = _objectWithoutProperties(props, _excluded$2_);
6550
+ otherProps = _objectWithoutProperties(props, _excluded$2$);
6517
6551
 
6518
6552
  return /*#__PURE__*/React.createElement("svg", _extends({
6519
6553
  width: size,
@@ -6537,14 +6571,14 @@ GoToFlow.defaultProps = {
6537
6571
  size: '24'
6538
6572
  };
6539
6573
 
6540
- const _excluded$2$ = ["color", "size"];
6574
+ const _excluded$30 = ["color", "size"];
6541
6575
 
6542
6576
  const NodeAdd = props => {
6543
6577
  const {
6544
6578
  color,
6545
6579
  size
6546
6580
  } = props,
6547
- otherProps = _objectWithoutProperties(props, _excluded$2$);
6581
+ otherProps = _objectWithoutProperties(props, _excluded$30);
6548
6582
 
6549
6583
  return /*#__PURE__*/React.createElement("svg", _extends({
6550
6584
  width: size,
@@ -6568,14 +6602,14 @@ NodeAdd.defaultProps = {
6568
6602
  size: '24'
6569
6603
  };
6570
6604
 
6571
- const _excluded$30 = ["color", "size"];
6605
+ const _excluded$31 = ["color", "size"];
6572
6606
 
6573
6607
  const Image = props => {
6574
6608
  const {
6575
6609
  color,
6576
6610
  size
6577
6611
  } = props,
6578
- otherProps = _objectWithoutProperties(props, _excluded$30);
6612
+ otherProps = _objectWithoutProperties(props, _excluded$31);
6579
6613
 
6580
6614
  return /*#__PURE__*/React.createElement("svg", _extends({
6581
6615
  width: size,
@@ -6599,14 +6633,14 @@ Image.defaultProps = {
6599
6633
  size: '24'
6600
6634
  };
6601
6635
 
6602
- const _excluded$31 = ["color", "size"];
6636
+ const _excluded$32 = ["color", "size"];
6603
6637
 
6604
6638
  const TemplateTextMedia = props => {
6605
6639
  const {
6606
6640
  color,
6607
6641
  size
6608
6642
  } = props,
6609
- otherProps = _objectWithoutProperties(props, _excluded$31);
6643
+ otherProps = _objectWithoutProperties(props, _excluded$32);
6610
6644
 
6611
6645
  return /*#__PURE__*/React.createElement("svg", _extends({
6612
6646
  width: size,
@@ -6638,14 +6672,14 @@ TemplateTextMedia.defaultProps = {
6638
6672
  size: '24'
6639
6673
  };
6640
6674
 
6641
- const _excluded$32 = ["color", "size"];
6675
+ const _excluded$33 = ["color", "size"];
6642
6676
 
6643
6677
  const TemplateMediaBg = props => {
6644
6678
  const {
6645
6679
  color,
6646
6680
  size
6647
6681
  } = props,
6648
- otherProps = _objectWithoutProperties(props, _excluded$32);
6682
+ otherProps = _objectWithoutProperties(props, _excluded$33);
6649
6683
 
6650
6684
  return /*#__PURE__*/React.createElement("svg", _extends({
6651
6685
  width: size,
@@ -6669,14 +6703,14 @@ TemplateMediaBg.defaultProps = {
6669
6703
  size: '24'
6670
6704
  };
6671
6705
 
6672
- const _excluded$33 = ["color", "size"];
6706
+ const _excluded$34 = ["color", "size"];
6673
6707
 
6674
6708
  const Audio = props => {
6675
6709
  const {
6676
6710
  color,
6677
6711
  size
6678
6712
  } = props,
6679
- otherProps = _objectWithoutProperties(props, _excluded$33);
6713
+ otherProps = _objectWithoutProperties(props, _excluded$34);
6680
6714
 
6681
6715
  return /*#__PURE__*/React.createElement("svg", _extends({
6682
6716
  width: size,
@@ -6700,14 +6734,14 @@ Audio.defaultProps = {
6700
6734
  size: '24'
6701
6735
  };
6702
6736
 
6703
- const _excluded$34 = ["color", "size"];
6737
+ const _excluded$35 = ["color", "size"];
6704
6738
 
6705
6739
  const Video = props => {
6706
6740
  const {
6707
6741
  color,
6708
6742
  size
6709
6743
  } = props,
6710
- otherProps = _objectWithoutProperties(props, _excluded$34);
6744
+ otherProps = _objectWithoutProperties(props, _excluded$35);
6711
6745
 
6712
6746
  return /*#__PURE__*/React.createElement("svg", _extends({
6713
6747
  width: size,
@@ -6731,14 +6765,14 @@ Video.defaultProps = {
6731
6765
  size: '24'
6732
6766
  };
6733
6767
 
6734
- const _excluded$35 = ["color", "size"];
6768
+ const _excluded$36 = ["color", "size"];
6735
6769
 
6736
6770
  const GrowthTools = props => {
6737
6771
  const {
6738
6772
  color,
6739
6773
  size
6740
6774
  } = props,
6741
- otherProps = _objectWithoutProperties(props, _excluded$35);
6775
+ otherProps = _objectWithoutProperties(props, _excluded$36);
6742
6776
 
6743
6777
  return /*#__PURE__*/React.createElement("svg", _extends({
6744
6778
  width: size,
@@ -6763,14 +6797,14 @@ GrowthTools.defaultProps = {
6763
6797
  size: '24'
6764
6798
  };
6765
6799
 
6766
- const _excluded$36 = ["color", "size"];
6800
+ const _excluded$37 = ["color", "size"];
6767
6801
 
6768
6802
  const TriggerNewSubscriber = props => {
6769
6803
  const {
6770
6804
  color,
6771
6805
  size
6772
6806
  } = props,
6773
- otherProps = _objectWithoutProperties(props, _excluded$36);
6807
+ otherProps = _objectWithoutProperties(props, _excluded$37);
6774
6808
 
6775
6809
  return /*#__PURE__*/React.createElement("svg", _extends({
6776
6810
  width: size,
@@ -6796,14 +6830,14 @@ TriggerNewSubscriber.defaultProps = {
6796
6830
  size: '24'
6797
6831
  };
6798
6832
 
6799
- const _excluded$37 = ["color", "size"];
6833
+ const _excluded$38 = ["color", "size"];
6800
6834
 
6801
6835
  const Templates = props => {
6802
6836
  const {
6803
6837
  color,
6804
6838
  size
6805
6839
  } = props,
6806
- otherProps = _objectWithoutProperties(props, _excluded$37);
6840
+ otherProps = _objectWithoutProperties(props, _excluded$38);
6807
6841
 
6808
6842
  return /*#__PURE__*/React.createElement("svg", _extends({
6809
6843
  width: size,
@@ -6850,14 +6884,14 @@ Templates.defaultProps = {
6850
6884
  size: '24'
6851
6885
  };
6852
6886
 
6853
- const _excluded$38 = ["color", "size"];
6887
+ const _excluded$39 = ["color", "size"];
6854
6888
 
6855
6889
  const TriggerFbComments = props => {
6856
6890
  const {
6857
6891
  color,
6858
6892
  size
6859
6893
  } = props,
6860
- otherProps = _objectWithoutProperties(props, _excluded$38);
6894
+ otherProps = _objectWithoutProperties(props, _excluded$39);
6861
6895
 
6862
6896
  return /*#__PURE__*/React.createElement("svg", _extends({
6863
6897
  width: size,
@@ -6884,14 +6918,14 @@ TriggerFbComments.defaultProps = {
6884
6918
  size: '24'
6885
6919
  };
6886
6920
 
6887
- const _excluded$39 = ["color", "size"];
6921
+ const _excluded$3a = ["color", "size"];
6888
6922
 
6889
6923
  const TriggerFbAds = props => {
6890
6924
  const {
6891
6925
  color,
6892
6926
  size
6893
6927
  } = props,
6894
- otherProps = _objectWithoutProperties(props, _excluded$39);
6928
+ otherProps = _objectWithoutProperties(props, _excluded$3a);
6895
6929
 
6896
6930
  return /*#__PURE__*/React.createElement("svg", _extends({
6897
6931
  width: size,
@@ -6918,14 +6952,14 @@ TriggerFbAds.defaultProps = {
6918
6952
  size: '24'
6919
6953
  };
6920
6954
 
6921
- const _excluded$3a = ["color", "size"];
6955
+ const _excluded$3b = ["color", "size"];
6922
6956
 
6923
6957
  const TriggerFbComments20 = props => {
6924
6958
  const {
6925
6959
  color,
6926
6960
  size
6927
6961
  } = props,
6928
- otherProps = _objectWithoutProperties(props, _excluded$3a);
6962
+ otherProps = _objectWithoutProperties(props, _excluded$3b);
6929
6963
 
6930
6964
  return /*#__PURE__*/React.createElement("svg", _extends({
6931
6965
  width: size,
@@ -6951,14 +6985,14 @@ TriggerFbComments20.defaultProps = {
6951
6985
  size: '24'
6952
6986
  };
6953
6987
 
6954
- const _excluded$3b = ["color", "size"];
6988
+ const _excluded$3c = ["color", "size"];
6955
6989
 
6956
6990
  const InstagramChannel2 = props => {
6957
6991
  const {
6958
6992
  color,
6959
6993
  size
6960
6994
  } = props,
6961
- otherProps = _objectWithoutProperties(props, _excluded$3b);
6995
+ otherProps = _objectWithoutProperties(props, _excluded$3c);
6962
6996
 
6963
6997
  return /*#__PURE__*/React.createElement("svg", _extends({
6964
6998
  width: size,
@@ -6994,14 +7028,14 @@ InstagramChannel2.defaultProps = {
6994
7028
  size: '24'
6995
7029
  };
6996
7030
 
6997
- const _excluded$3c = ["color", "size"];
7031
+ const _excluded$3d = ["color", "size"];
6998
7032
 
6999
7033
  const WhatsAppWidget = props => {
7000
7034
  const {
7001
7035
  color,
7002
7036
  size
7003
7037
  } = props,
7004
- otherProps = _objectWithoutProperties(props, _excluded$3c);
7038
+ otherProps = _objectWithoutProperties(props, _excluded$3d);
7005
7039
 
7006
7040
  return /*#__PURE__*/React.createElement("svg", _extends({
7007
7041
  width: size,
@@ -7027,14 +7061,14 @@ WhatsAppWidget.defaultProps = {
7027
7061
  size: '24'
7028
7062
  };
7029
7063
 
7030
- const _excluded$3d = ["color", "size"];
7064
+ const _excluded$3e = ["color", "size"];
7031
7065
 
7032
7066
  const Home = props => {
7033
7067
  const {
7034
7068
  color,
7035
7069
  size
7036
7070
  } = props,
7037
- otherProps = _objectWithoutProperties(props, _excluded$3d);
7071
+ otherProps = _objectWithoutProperties(props, _excluded$3e);
7038
7072
 
7039
7073
  return /*#__PURE__*/React.createElement("svg", _extends({
7040
7074
  width: size,
@@ -7059,14 +7093,14 @@ Home.defaultProps = {
7059
7093
  size: '24'
7060
7094
  };
7061
7095
 
7062
- const _excluded$3e = ["color", "size"];
7096
+ const _excluded$3f = ["color", "size"];
7063
7097
 
7064
7098
  const CreditCard = props => {
7065
7099
  const {
7066
7100
  color,
7067
7101
  size
7068
7102
  } = props,
7069
- otherProps = _objectWithoutProperties(props, _excluded$3e);
7103
+ otherProps = _objectWithoutProperties(props, _excluded$3f);
7070
7104
 
7071
7105
  return /*#__PURE__*/React.createElement("svg", _extends({
7072
7106
  width: size,
@@ -7090,14 +7124,14 @@ CreditCard.defaultProps = {
7090
7124
  size: '24'
7091
7125
  };
7092
7126
 
7093
- const _excluded$3f = ["color", "size"];
7127
+ const _excluded$3g = ["color", "size"];
7094
7128
 
7095
7129
  const OtnRequest = props => {
7096
7130
  const {
7097
7131
  color,
7098
7132
  size
7099
7133
  } = props,
7100
- otherProps = _objectWithoutProperties(props, _excluded$3f);
7134
+ otherProps = _objectWithoutProperties(props, _excluded$3g);
7101
7135
 
7102
7136
  return /*#__PURE__*/React.createElement("svg", _extends({
7103
7137
  width: size,
@@ -7129,14 +7163,14 @@ OtnRequest.defaultProps = {
7129
7163
  size: '24'
7130
7164
  };
7131
7165
 
7132
- const _excluded$3g = ["color", "size"];
7166
+ const _excluded$3h = ["color", "size"];
7133
7167
 
7134
7168
  const Data = props => {
7135
7169
  const {
7136
7170
  color,
7137
7171
  size
7138
7172
  } = props,
7139
- otherProps = _objectWithoutProperties(props, _excluded$3g);
7173
+ otherProps = _objectWithoutProperties(props, _excluded$3h);
7140
7174
 
7141
7175
  return /*#__PURE__*/React.createElement("svg", _extends({
7142
7176
  width: size,
@@ -7165,14 +7199,14 @@ Data.defaultProps = {
7165
7199
  size: '24'
7166
7200
  };
7167
7201
 
7168
- const _excluded$3h = ["color", "size"];
7202
+ const _excluded$3i = ["color", "size"];
7169
7203
 
7170
7204
  const Share = props => {
7171
7205
  const {
7172
7206
  color,
7173
7207
  size
7174
7208
  } = props,
7175
- otherProps = _objectWithoutProperties(props, _excluded$3h);
7209
+ otherProps = _objectWithoutProperties(props, _excluded$3i);
7176
7210
 
7177
7211
  return /*#__PURE__*/React.createElement("svg", _extends({
7178
7212
  width: size,
@@ -7196,14 +7230,14 @@ Share.defaultProps = {
7196
7230
  size: '24'
7197
7231
  };
7198
7232
 
7199
- const _excluded$3i = ["color", "size"];
7233
+ const _excluded$3j = ["color", "size"];
7200
7234
 
7201
7235
  const Sms = props => {
7202
7236
  const {
7203
7237
  color,
7204
7238
  size
7205
7239
  } = props,
7206
- otherProps = _objectWithoutProperties(props, _excluded$3i);
7240
+ otherProps = _objectWithoutProperties(props, _excluded$3j);
7207
7241
 
7208
7242
  return /*#__PURE__*/React.createElement("svg", _extends({
7209
7243
  width: size,
@@ -7229,14 +7263,14 @@ Sms.defaultProps = {
7229
7263
  size: '24'
7230
7264
  };
7231
7265
 
7232
- const _excluded$3j = ["color", "size"];
7266
+ const _excluded$3k = ["color", "size"];
7233
7267
 
7234
7268
  const Logout = props => {
7235
7269
  const {
7236
7270
  color,
7237
7271
  size
7238
7272
  } = props,
7239
- otherProps = _objectWithoutProperties(props, _excluded$3j);
7273
+ otherProps = _objectWithoutProperties(props, _excluded$3k);
7240
7274
 
7241
7275
  return /*#__PURE__*/React.createElement("svg", _extends({
7242
7276
  width: size,
@@ -7260,14 +7294,14 @@ Logout.defaultProps = {
7260
7294
  size: '24'
7261
7295
  };
7262
7296
 
7263
- const _excluded$3k = ["color", "size"];
7297
+ const _excluded$3l = ["color", "size"];
7264
7298
 
7265
7299
  const Archive = props => {
7266
7300
  const {
7267
7301
  color,
7268
7302
  size
7269
7303
  } = props,
7270
- otherProps = _objectWithoutProperties(props, _excluded$3k);
7304
+ otherProps = _objectWithoutProperties(props, _excluded$3l);
7271
7305
 
7272
7306
  return /*#__PURE__*/React.createElement("svg", _extends({
7273
7307
  width: size,
@@ -7291,14 +7325,14 @@ Archive.defaultProps = {
7291
7325
  size: '24'
7292
7326
  };
7293
7327
 
7294
- const _excluded$3l = ["color", "size"];
7328
+ const _excluded$3m = ["color", "size"];
7295
7329
 
7296
7330
  const CheckboxDone = props => {
7297
7331
  const {
7298
7332
  color,
7299
7333
  size
7300
7334
  } = props,
7301
- otherProps = _objectWithoutProperties(props, _excluded$3l);
7335
+ otherProps = _objectWithoutProperties(props, _excluded$3m);
7302
7336
 
7303
7337
  return /*#__PURE__*/React.createElement("svg", _extends({
7304
7338
  width: size,
@@ -7322,14 +7356,14 @@ CheckboxDone.defaultProps = {
7322
7356
  size: '24'
7323
7357
  };
7324
7358
 
7325
- const _excluded$3m = ["color", "size"];
7359
+ const _excluded$3n = ["color", "size"];
7326
7360
 
7327
7361
  const Inbox = props => {
7328
7362
  const {
7329
7363
  color,
7330
7364
  size
7331
7365
  } = props,
7332
- otherProps = _objectWithoutProperties(props, _excluded$3m);
7366
+ otherProps = _objectWithoutProperties(props, _excluded$3n);
7333
7367
 
7334
7368
  return /*#__PURE__*/React.createElement("svg", _extends({
7335
7369
  width: size,
@@ -7353,14 +7387,14 @@ Inbox.defaultProps = {
7353
7387
  size: '24'
7354
7388
  };
7355
7389
 
7356
- const _excluded$3n = ["color", "size"];
7390
+ const _excluded$3o = ["color", "size"];
7357
7391
 
7358
7392
  const CopyToAnotherFlow = props => {
7359
7393
  const {
7360
7394
  color,
7361
7395
  size
7362
7396
  } = props,
7363
- otherProps = _objectWithoutProperties(props, _excluded$3n);
7397
+ otherProps = _objectWithoutProperties(props, _excluded$3o);
7364
7398
 
7365
7399
  return /*#__PURE__*/React.createElement("svg", _extends({
7366
7400
  width: size,
@@ -7384,14 +7418,14 @@ CopyToAnotherFlow.defaultProps = {
7384
7418
  size: '24'
7385
7419
  };
7386
7420
 
7387
- const _excluded$3o = ["color", "size"];
7421
+ const _excluded$3p = ["color", "size"];
7388
7422
 
7389
7423
  const ConvertChannels = props => {
7390
7424
  const {
7391
7425
  color,
7392
7426
  size
7393
7427
  } = props,
7394
- otherProps = _objectWithoutProperties(props, _excluded$3o);
7428
+ otherProps = _objectWithoutProperties(props, _excluded$3p);
7395
7429
 
7396
7430
  return /*#__PURE__*/React.createElement("svg", _extends({
7397
7431
  width: size,
@@ -7415,14 +7449,14 @@ ConvertChannels.defaultProps = {
7415
7449
  size: '24'
7416
7450
  };
7417
7451
 
7418
- const _excluded$3p = ["color", "size"];
7452
+ const _excluded$3q = ["color", "size"];
7419
7453
 
7420
7454
  const Copy = props => {
7421
7455
  const {
7422
7456
  color,
7423
7457
  size
7424
7458
  } = props,
7425
- otherProps = _objectWithoutProperties(props, _excluded$3p);
7459
+ otherProps = _objectWithoutProperties(props, _excluded$3q);
7426
7460
 
7427
7461
  return /*#__PURE__*/React.createElement("svg", _extends({
7428
7462
  width: size,
@@ -7447,14 +7481,14 @@ Copy.defaultProps = {
7447
7481
  size: '24'
7448
7482
  };
7449
7483
 
7450
- const _excluded$3q = ["color", "size"];
7484
+ const _excluded$3r = ["color", "size"];
7451
7485
 
7452
7486
  const AdsAd = props => {
7453
7487
  const {
7454
7488
  color,
7455
7489
  size
7456
7490
  } = props,
7457
- otherProps = _objectWithoutProperties(props, _excluded$3q);
7491
+ otherProps = _objectWithoutProperties(props, _excluded$3r);
7458
7492
 
7459
7493
  return /*#__PURE__*/React.createElement("svg", _extends({
7460
7494
  width: size,
@@ -7478,14 +7512,14 @@ AdsAd.defaultProps = {
7478
7512
  size: '24'
7479
7513
  };
7480
7514
 
7481
- const _excluded$3r = ["color", "size"];
7515
+ const _excluded$3s = ["color", "size"];
7482
7516
 
7483
7517
  const Action = props => {
7484
7518
  const {
7485
7519
  color,
7486
7520
  size
7487
7521
  } = props,
7488
- otherProps = _objectWithoutProperties(props, _excluded$3r);
7522
+ otherProps = _objectWithoutProperties(props, _excluded$3s);
7489
7523
 
7490
7524
  return /*#__PURE__*/React.createElement("svg", _extends({
7491
7525
  width: size,
@@ -7509,14 +7543,14 @@ Action.defaultProps = {
7509
7543
  size: '24'
7510
7544
  };
7511
7545
 
7512
- const _excluded$3s = ["color", "size"];
7546
+ const _excluded$3t = ["color", "size"];
7513
7547
 
7514
7548
  const Ads = props => {
7515
7549
  const {
7516
7550
  color,
7517
7551
  size
7518
7552
  } = props,
7519
- otherProps = _objectWithoutProperties(props, _excluded$3s);
7553
+ otherProps = _objectWithoutProperties(props, _excluded$3t);
7520
7554
 
7521
7555
  return /*#__PURE__*/React.createElement("svg", _extends({
7522
7556
  width: size,
@@ -7540,14 +7574,14 @@ Ads.defaultProps = {
7540
7574
  size: '24'
7541
7575
  };
7542
7576
 
7543
- const _excluded$3t = ["color", "size"];
7577
+ const _excluded$3u = ["color", "size"];
7544
7578
 
7545
7579
  const ShowFlow = props => {
7546
7580
  const {
7547
7581
  color,
7548
7582
  size
7549
7583
  } = props,
7550
- otherProps = _objectWithoutProperties(props, _excluded$3t);
7584
+ otherProps = _objectWithoutProperties(props, _excluded$3u);
7551
7585
 
7552
7586
  return /*#__PURE__*/React.createElement("svg", _extends({
7553
7587
  width: size,
@@ -7573,14 +7607,14 @@ ShowFlow.defaultProps = {
7573
7607
  size: '24'
7574
7608
  };
7575
7609
 
7576
- const _excluded$3u = ["color", "size"];
7610
+ const _excluded$3v = ["color", "size"];
7577
7611
 
7578
7612
  const Unpin = props => {
7579
7613
  const {
7580
7614
  color,
7581
7615
  size
7582
7616
  } = props,
7583
- otherProps = _objectWithoutProperties(props, _excluded$3u);
7617
+ otherProps = _objectWithoutProperties(props, _excluded$3v);
7584
7618
 
7585
7619
  return /*#__PURE__*/React.createElement("svg", _extends({
7586
7620
  width: size,
@@ -7604,14 +7638,14 @@ Unpin.defaultProps = {
7604
7638
  size: '24'
7605
7639
  };
7606
7640
 
7607
- const _excluded$3v = ["color", "size"];
7641
+ const _excluded$3w = ["color", "size"];
7608
7642
 
7609
7643
  const Pin = props => {
7610
7644
  const {
7611
7645
  color,
7612
7646
  size
7613
7647
  } = props,
7614
- otherProps = _objectWithoutProperties(props, _excluded$3v);
7648
+ otherProps = _objectWithoutProperties(props, _excluded$3w);
7615
7649
 
7616
7650
  return /*#__PURE__*/React.createElement("svg", _extends({
7617
7651
  width: size,
@@ -7637,14 +7671,14 @@ Pin.defaultProps = {
7637
7671
  size: '24'
7638
7672
  };
7639
7673
 
7640
- const _excluded$3w = ["color", "size"];
7674
+ const _excluded$3x = ["color", "size"];
7641
7675
 
7642
7676
  const Hide = props => {
7643
7677
  const {
7644
7678
  color,
7645
7679
  size
7646
7680
  } = props,
7647
- otherProps = _objectWithoutProperties(props, _excluded$3w);
7681
+ otherProps = _objectWithoutProperties(props, _excluded$3x);
7648
7682
 
7649
7683
  return /*#__PURE__*/React.createElement("svg", _extends({
7650
7684
  width: size,
@@ -7670,14 +7704,14 @@ Hide.defaultProps = {
7670
7704
  size: '24'
7671
7705
  };
7672
7706
 
7673
- const _excluded$3x = ["color", "size"];
7707
+ const _excluded$3y = ["color", "size"];
7674
7708
 
7675
7709
  const Show = props => {
7676
7710
  const {
7677
7711
  color,
7678
7712
  size
7679
7713
  } = props,
7680
- otherProps = _objectWithoutProperties(props, _excluded$3x);
7714
+ otherProps = _objectWithoutProperties(props, _excluded$3y);
7681
7715
 
7682
7716
  return /*#__PURE__*/React.createElement("svg", _extends({
7683
7717
  width: size,
@@ -7706,14 +7740,14 @@ Show.defaultProps = {
7706
7740
  size: '24'
7707
7741
  };
7708
7742
 
7709
- const _excluded$3y = ["color", "size"];
7743
+ const _excluded$3z = ["color", "size"];
7710
7744
 
7711
7745
  const ClearMobile = props => {
7712
7746
  const {
7713
7747
  color,
7714
7748
  size
7715
7749
  } = props,
7716
- otherProps = _objectWithoutProperties(props, _excluded$3y);
7750
+ otherProps = _objectWithoutProperties(props, _excluded$3z);
7717
7751
 
7718
7752
  return /*#__PURE__*/React.createElement("svg", _extends({
7719
7753
  width: size,
@@ -7739,14 +7773,14 @@ ClearMobile.defaultProps = {
7739
7773
  size: '24'
7740
7774
  };
7741
7775
 
7742
- const _excluded$3z = ["color", "size"];
7776
+ const _excluded$3A = ["color", "size"];
7743
7777
 
7744
7778
  const NewMessage = props => {
7745
7779
  const {
7746
7780
  color,
7747
7781
  size
7748
7782
  } = props,
7749
- otherProps = _objectWithoutProperties(props, _excluded$3z);
7783
+ otherProps = _objectWithoutProperties(props, _excluded$3A);
7750
7784
 
7751
7785
  return /*#__PURE__*/React.createElement("svg", _extends({
7752
7786
  width: size,
@@ -7770,14 +7804,14 @@ NewMessage.defaultProps = {
7770
7804
  size: '24'
7771
7805
  };
7772
7806
 
7773
- const _excluded$3A = ["color", "size"];
7807
+ const _excluded$3B = ["color", "size"];
7774
7808
 
7775
7809
  const Male = props => {
7776
7810
  const {
7777
7811
  color,
7778
7812
  size
7779
7813
  } = props,
7780
- otherProps = _objectWithoutProperties(props, _excluded$3A);
7814
+ otherProps = _objectWithoutProperties(props, _excluded$3B);
7781
7815
 
7782
7816
  return /*#__PURE__*/React.createElement("svg", _extends({
7783
7817
  width: size,
@@ -7804,14 +7838,14 @@ Male.defaultProps = {
7804
7838
  size: '24'
7805
7839
  };
7806
7840
 
7807
- const _excluded$3B = ["color", "size"];
7841
+ const _excluded$3C = ["color", "size"];
7808
7842
 
7809
7843
  const Female = props => {
7810
7844
  const {
7811
7845
  color,
7812
7846
  size
7813
7847
  } = props,
7814
- otherProps = _objectWithoutProperties(props, _excluded$3B);
7848
+ otherProps = _objectWithoutProperties(props, _excluded$3C);
7815
7849
 
7816
7850
  return /*#__PURE__*/React.createElement("svg", _extends({
7817
7851
  width: size,
@@ -7835,14 +7869,14 @@ Female.defaultProps = {
7835
7869
  size: '24'
7836
7870
  };
7837
7871
 
7838
- const _excluded$3C = ["color", "size"];
7872
+ const _excluded$3D = ["color", "size"];
7839
7873
 
7840
7874
  const Search = props => {
7841
7875
  const {
7842
7876
  color,
7843
7877
  size
7844
7878
  } = props,
7845
- otherProps = _objectWithoutProperties(props, _excluded$3C);
7879
+ otherProps = _objectWithoutProperties(props, _excluded$3D);
7846
7880
 
7847
7881
  return /*#__PURE__*/React.createElement("svg", _extends({
7848
7882
  width: size,
@@ -7866,14 +7900,14 @@ Search.defaultProps = {
7866
7900
  size: '24'
7867
7901
  };
7868
7902
 
7869
- const _excluded$3D = ["color", "size"];
7903
+ const _excluded$3E = ["color", "size"];
7870
7904
 
7871
7905
  const Mic = props => {
7872
7906
  const {
7873
7907
  color,
7874
7908
  size
7875
7909
  } = props,
7876
- otherProps = _objectWithoutProperties(props, _excluded$3D);
7910
+ otherProps = _objectWithoutProperties(props, _excluded$3E);
7877
7911
 
7878
7912
  return /*#__PURE__*/React.createElement("svg", _extends({
7879
7913
  width: size,
@@ -7897,14 +7931,14 @@ Mic.defaultProps = {
7897
7931
  size: '24'
7898
7932
  };
7899
7933
 
7900
- const _excluded$3E = ["color", "size"];
7934
+ const _excluded$3F = ["color", "size"];
7901
7935
 
7902
7936
  const Transgender = props => {
7903
7937
  const {
7904
7938
  color,
7905
7939
  size
7906
7940
  } = props,
7907
- otherProps = _objectWithoutProperties(props, _excluded$3E);
7941
+ otherProps = _objectWithoutProperties(props, _excluded$3F);
7908
7942
 
7909
7943
  return /*#__PURE__*/React.createElement("svg", _extends({
7910
7944
  width: size,
@@ -7928,14 +7962,14 @@ Transgender.defaultProps = {
7928
7962
  size: '24'
7929
7963
  };
7930
7964
 
7931
- const _excluded$3F = ["color", "size"];
7965
+ const _excluded$3G = ["color", "size"];
7932
7966
 
7933
7967
  const Close = props => {
7934
7968
  const {
7935
7969
  color,
7936
7970
  size
7937
7971
  } = props,
7938
- otherProps = _objectWithoutProperties(props, _excluded$3F);
7972
+ otherProps = _objectWithoutProperties(props, _excluded$3G);
7939
7973
 
7940
7974
  return /*#__PURE__*/React.createElement("svg", _extends({
7941
7975
  width: size,
@@ -7959,14 +7993,14 @@ Close.defaultProps = {
7959
7993
  size: '24'
7960
7994
  };
7961
7995
 
7962
- const _excluded$3G = ["color", "size"];
7996
+ const _excluded$3H = ["color", "size"];
7963
7997
 
7964
7998
  const Plus = props => {
7965
7999
  const {
7966
8000
  color,
7967
8001
  size
7968
8002
  } = props,
7969
- otherProps = _objectWithoutProperties(props, _excluded$3G);
8003
+ otherProps = _objectWithoutProperties(props, _excluded$3H);
7970
8004
 
7971
8005
  return /*#__PURE__*/React.createElement("svg", _extends({
7972
8006
  width: size,
@@ -7992,14 +8026,14 @@ Plus.defaultProps = {
7992
8026
  size: '24'
7993
8027
  };
7994
8028
 
7995
- const _excluded$3H = ["color", "size"];
8029
+ const _excluded$3I = ["color", "size"];
7996
8030
 
7997
8031
  const Minus = props => {
7998
8032
  const {
7999
8033
  color,
8000
8034
  size
8001
8035
  } = props,
8002
- otherProps = _objectWithoutProperties(props, _excluded$3H);
8036
+ otherProps = _objectWithoutProperties(props, _excluded$3I);
8003
8037
 
8004
8038
  return /*#__PURE__*/React.createElement("svg", _extends({
8005
8039
  width: size,
@@ -8025,14 +8059,14 @@ Minus.defaultProps = {
8025
8059
  size: '24'
8026
8060
  };
8027
8061
 
8028
- const _excluded$3I = ["color", "size"];
8062
+ const _excluded$3J = ["color", "size"];
8029
8063
 
8030
8064
  const Tick = props => {
8031
8065
  const {
8032
8066
  color,
8033
8067
  size
8034
8068
  } = props,
8035
- otherProps = _objectWithoutProperties(props, _excluded$3I);
8069
+ otherProps = _objectWithoutProperties(props, _excluded$3J);
8036
8070
 
8037
8071
  return /*#__PURE__*/React.createElement("svg", _extends({
8038
8072
  width: size,
@@ -8056,14 +8090,14 @@ Tick.defaultProps = {
8056
8090
  size: '24'
8057
8091
  };
8058
8092
 
8059
- const _excluded$3J = ["color", "size"];
8093
+ const _excluded$3K = ["color", "size"];
8060
8094
 
8061
8095
  const DubleTick = props => {
8062
8096
  const {
8063
8097
  color,
8064
8098
  size
8065
8099
  } = props,
8066
- otherProps = _objectWithoutProperties(props, _excluded$3J);
8100
+ otherProps = _objectWithoutProperties(props, _excluded$3K);
8067
8101
 
8068
8102
  return /*#__PURE__*/React.createElement("svg", _extends({
8069
8103
  width: size,
@@ -8087,14 +8121,14 @@ DubleTick.defaultProps = {
8087
8121
  size: '24'
8088
8122
  };
8089
8123
 
8090
- const _excluded$3K = ["color", "size"];
8124
+ const _excluded$3L = ["color", "size"];
8091
8125
 
8092
8126
  const CheckCircle = props => {
8093
8127
  const {
8094
8128
  color,
8095
8129
  size
8096
8130
  } = props,
8097
- otherProps = _objectWithoutProperties(props, _excluded$3K);
8131
+ otherProps = _objectWithoutProperties(props, _excluded$3L);
8098
8132
 
8099
8133
  return /*#__PURE__*/React.createElement("svg", _extends({
8100
8134
  width: size,
@@ -8118,14 +8152,14 @@ CheckCircle.defaultProps = {
8118
8152
  size: '24'
8119
8153
  };
8120
8154
 
8121
- const _excluded$3L = ["color", "size"];
8155
+ const _excluded$3M = ["color", "size"];
8122
8156
 
8123
8157
  const Time = props => {
8124
8158
  const {
8125
8159
  color,
8126
8160
  size
8127
8161
  } = props,
8128
- otherProps = _objectWithoutProperties(props, _excluded$3L);
8162
+ otherProps = _objectWithoutProperties(props, _excluded$3M);
8129
8163
 
8130
8164
  return /*#__PURE__*/React.createElement("svg", _extends({
8131
8165
  width: size,
@@ -8149,14 +8183,14 @@ Time.defaultProps = {
8149
8183
  size: '24'
8150
8184
  };
8151
8185
 
8152
- const _excluded$3M = ["color", "size"];
8186
+ const _excluded$3N = ["color", "size"];
8153
8187
 
8154
8188
  const Nationality = props => {
8155
8189
  const {
8156
8190
  color,
8157
8191
  size
8158
8192
  } = props,
8159
- otherProps = _objectWithoutProperties(props, _excluded$3M);
8193
+ otherProps = _objectWithoutProperties(props, _excluded$3N);
8160
8194
 
8161
8195
  return /*#__PURE__*/React.createElement("svg", _extends({
8162
8196
  width: size,
@@ -8180,14 +8214,14 @@ Nationality.defaultProps = {
8180
8214
  size: '24'
8181
8215
  };
8182
8216
 
8183
- const _excluded$3N = ["color", "size"];
8217
+ const _excluded$3O = ["color", "size"];
8184
8218
 
8185
8219
  const Mention = props => {
8186
8220
  const {
8187
8221
  color,
8188
8222
  size
8189
8223
  } = props,
8190
- otherProps = _objectWithoutProperties(props, _excluded$3N);
8224
+ otherProps = _objectWithoutProperties(props, _excluded$3O);
8191
8225
 
8192
8226
  return /*#__PURE__*/React.createElement("svg", _extends({
8193
8227
  width: size,
@@ -8211,14 +8245,14 @@ Mention.defaultProps = {
8211
8245
  size: '24'
8212
8246
  };
8213
8247
 
8214
- const _excluded$3O = ["color", "size"];
8248
+ const _excluded$3P = ["color", "size"];
8215
8249
 
8216
8250
  const Question = props => {
8217
8251
  const {
8218
8252
  color,
8219
8253
  size
8220
8254
  } = props,
8221
- otherProps = _objectWithoutProperties(props, _excluded$3O);
8255
+ otherProps = _objectWithoutProperties(props, _excluded$3P);
8222
8256
 
8223
8257
  return /*#__PURE__*/React.createElement("svg", _extends({
8224
8258
  width: size,
@@ -8245,14 +8279,14 @@ Question.defaultProps = {
8245
8279
  size: '24'
8246
8280
  };
8247
8281
 
8248
- const _excluded$3P = ["color", "size"];
8282
+ const _excluded$3Q = ["color", "size"];
8249
8283
 
8250
8284
  const AddCircle = props => {
8251
8285
  const {
8252
8286
  color,
8253
8287
  size
8254
8288
  } = props,
8255
- otherProps = _objectWithoutProperties(props, _excluded$3P);
8289
+ otherProps = _objectWithoutProperties(props, _excluded$3Q);
8256
8290
 
8257
8291
  return /*#__PURE__*/React.createElement("svg", _extends({
8258
8292
  width: size,
@@ -8279,14 +8313,14 @@ AddCircle.defaultProps = {
8279
8313
  size: '24'
8280
8314
  };
8281
8315
 
8282
- const _excluded$3Q = ["color", "size"];
8316
+ const _excluded$3R = ["color", "size"];
8283
8317
 
8284
8318
  const Unsubscribed = props => {
8285
8319
  const {
8286
8320
  color,
8287
8321
  size
8288
8322
  } = props,
8289
- otherProps = _objectWithoutProperties(props, _excluded$3Q);
8323
+ otherProps = _objectWithoutProperties(props, _excluded$3R);
8290
8324
 
8291
8325
  return /*#__PURE__*/React.createElement("svg", _extends({
8292
8326
  width: size,
@@ -8313,14 +8347,14 @@ Unsubscribed.defaultProps = {
8313
8347
  size: '24'
8314
8348
  };
8315
8349
 
8316
- const _excluded$3R = ["color", "size"];
8350
+ const _excluded$3S = ["color", "size"];
8317
8351
 
8318
8352
  const Smile = props => {
8319
8353
  const {
8320
8354
  color,
8321
8355
  size
8322
8356
  } = props,
8323
- otherProps = _objectWithoutProperties(props, _excluded$3R);
8357
+ otherProps = _objectWithoutProperties(props, _excluded$3S);
8324
8358
 
8325
8359
  return /*#__PURE__*/React.createElement("svg", _extends({
8326
8360
  width: size,
@@ -8347,14 +8381,14 @@ Smile.defaultProps = {
8347
8381
  size: '24'
8348
8382
  };
8349
8383
 
8350
- const _excluded$3S = ["color", "size"];
8384
+ const _excluded$3T = ["color", "size"];
8351
8385
 
8352
8386
  const TimeAdd = props => {
8353
8387
  const {
8354
8388
  color,
8355
8389
  size
8356
8390
  } = props,
8357
- otherProps = _objectWithoutProperties(props, _excluded$3S);
8391
+ otherProps = _objectWithoutProperties(props, _excluded$3T);
8358
8392
 
8359
8393
  return /*#__PURE__*/React.createElement("svg", _extends({
8360
8394
  width: size,
@@ -8378,14 +8412,14 @@ TimeAdd.defaultProps = {
8378
8412
  size: '24'
8379
8413
  };
8380
8414
 
8381
- const _excluded$3T = ["color", "size"];
8415
+ const _excluded$3U = ["color", "size"];
8382
8416
 
8383
8417
  const Retry = props => {
8384
8418
  const {
8385
8419
  color,
8386
8420
  size
8387
8421
  } = props,
8388
- otherProps = _objectWithoutProperties(props, _excluded$3T);
8422
+ otherProps = _objectWithoutProperties(props, _excluded$3U);
8389
8423
 
8390
8424
  return /*#__PURE__*/React.createElement("svg", _extends({
8391
8425
  width: size,
@@ -8412,14 +8446,14 @@ Retry.defaultProps = {
8412
8446
  size: '24'
8413
8447
  };
8414
8448
 
8415
- const _excluded$3U = ["color", "size"];
8449
+ const _excluded$3V = ["color", "size"];
8416
8450
 
8417
8451
  const Stop = props => {
8418
8452
  const {
8419
8453
  color,
8420
8454
  size
8421
8455
  } = props,
8422
- otherProps = _objectWithoutProperties(props, _excluded$3U);
8456
+ otherProps = _objectWithoutProperties(props, _excluded$3V);
8423
8457
 
8424
8458
  return /*#__PURE__*/React.createElement("svg", _extends({
8425
8459
  width: size,
@@ -8446,14 +8480,14 @@ Stop.defaultProps = {
8446
8480
  size: '24'
8447
8481
  };
8448
8482
 
8449
- const _excluded$3V = ["color", "size"];
8483
+ const _excluded$3W = ["color", "size"];
8450
8484
 
8451
8485
  const Info = props => {
8452
8486
  const {
8453
8487
  color,
8454
8488
  size
8455
8489
  } = props,
8456
- otherProps = _objectWithoutProperties(props, _excluded$3V);
8490
+ otherProps = _objectWithoutProperties(props, _excluded$3W);
8457
8491
 
8458
8492
  return /*#__PURE__*/React.createElement("svg", _extends({
8459
8493
  width: size,
@@ -8480,14 +8514,14 @@ Info.defaultProps = {
8480
8514
  size: '24'
8481
8515
  };
8482
8516
 
8483
- const _excluded$3W = ["color", "size"];
8517
+ const _excluded$3X = ["color", "size"];
8484
8518
 
8485
8519
  const Attention = props => {
8486
8520
  const {
8487
8521
  color,
8488
8522
  size
8489
8523
  } = props,
8490
- otherProps = _objectWithoutProperties(props, _excluded$3W);
8524
+ otherProps = _objectWithoutProperties(props, _excluded$3X);
8491
8525
 
8492
8526
  return /*#__PURE__*/React.createElement("svg", _extends({
8493
8527
  width: size,
@@ -8514,14 +8548,14 @@ Attention.defaultProps = {
8514
8548
  size: '24'
8515
8549
  };
8516
8550
 
8517
- const _excluded$3X = ["color", "size"];
8551
+ const _excluded$3Y = ["color", "size"];
8518
8552
 
8519
8553
  const Help = props => {
8520
8554
  const {
8521
8555
  color,
8522
8556
  size
8523
8557
  } = props,
8524
- otherProps = _objectWithoutProperties(props, _excluded$3X);
8558
+ otherProps = _objectWithoutProperties(props, _excluded$3Y);
8525
8559
 
8526
8560
  return /*#__PURE__*/React.createElement("svg", _extends({
8527
8561
  width: size,
@@ -8548,14 +8582,14 @@ Help.defaultProps = {
8548
8582
  size: '24'
8549
8583
  };
8550
8584
 
8551
- const _excluded$3Y = ["color", "size"];
8585
+ const _excluded$3Z = ["color", "size"];
8552
8586
 
8553
8587
  const Spinner = props => {
8554
8588
  const {
8555
8589
  color,
8556
8590
  size
8557
8591
  } = props,
8558
- otherProps = _objectWithoutProperties(props, _excluded$3Y);
8592
+ otherProps = _objectWithoutProperties(props, _excluded$3Z);
8559
8593
 
8560
8594
  return /*#__PURE__*/React.createElement("svg", _extends({
8561
8595
  width: size,
@@ -8582,14 +8616,14 @@ Spinner.defaultProps = {
8582
8616
  size: '24'
8583
8617
  };
8584
8618
 
8585
- const _excluded$3Z = ["color", "size"];
8619
+ const _excluded$3_ = ["color", "size"];
8586
8620
 
8587
8621
  const Settings = props => {
8588
8622
  const {
8589
8623
  color,
8590
8624
  size
8591
8625
  } = props,
8592
- otherProps = _objectWithoutProperties(props, _excluded$3Z);
8626
+ otherProps = _objectWithoutProperties(props, _excluded$3_);
8593
8627
 
8594
8628
  return /*#__PURE__*/React.createElement("svg", _extends({
8595
8629
  width: size,
@@ -8614,14 +8648,14 @@ Settings.defaultProps = {
8614
8648
  size: '24'
8615
8649
  };
8616
8650
 
8617
- const _excluded$3_ = ["color", "size"];
8651
+ const _excluded$3$ = ["color", "size"];
8618
8652
 
8619
8653
  const Dashboard = props => {
8620
8654
  const {
8621
8655
  color,
8622
8656
  size
8623
8657
  } = props,
8624
- otherProps = _objectWithoutProperties(props, _excluded$3_);
8658
+ otherProps = _objectWithoutProperties(props, _excluded$3$);
8625
8659
 
8626
8660
  return /*#__PURE__*/React.createElement("svg", _extends({
8627
8661
  width: size,
@@ -8645,14 +8679,14 @@ Dashboard.defaultProps = {
8645
8679
  size: '24'
8646
8680
  };
8647
8681
 
8648
- const _excluded$3$ = ["color", "size"];
8682
+ const _excluded$40 = ["color", "size"];
8649
8683
 
8650
8684
  const WebChat = props => {
8651
8685
  const {
8652
8686
  color,
8653
8687
  size
8654
8688
  } = props,
8655
- otherProps = _objectWithoutProperties(props, _excluded$3$);
8689
+ otherProps = _objectWithoutProperties(props, _excluded$40);
8656
8690
 
8657
8691
  return /*#__PURE__*/React.createElement("svg", _extends({
8658
8692
  width: size,
@@ -8693,14 +8727,14 @@ WebChat.defaultProps = {
8693
8727
  size: '24'
8694
8728
  };
8695
8729
 
8696
- const _excluded$40 = ["color", "size"];
8730
+ const _excluded$41 = ["color", "size"];
8697
8731
 
8698
8732
  const SortUp = props => {
8699
8733
  const {
8700
8734
  color,
8701
8735
  size
8702
8736
  } = props,
8703
- otherProps = _objectWithoutProperties(props, _excluded$40);
8737
+ otherProps = _objectWithoutProperties(props, _excluded$41);
8704
8738
 
8705
8739
  return /*#__PURE__*/React.createElement("svg", _extends({
8706
8740
  width: size,
@@ -8733,14 +8767,14 @@ SortUp.defaultProps = {
8733
8767
  size: '24'
8734
8768
  };
8735
8769
 
8736
- const _excluded$41 = ["color", "size"];
8770
+ const _excluded$42 = ["color", "size"];
8737
8771
 
8738
8772
  const SortDown = props => {
8739
8773
  const {
8740
8774
  color,
8741
8775
  size
8742
8776
  } = props,
8743
- otherProps = _objectWithoutProperties(props, _excluded$41);
8777
+ otherProps = _objectWithoutProperties(props, _excluded$42);
8744
8778
 
8745
8779
  return /*#__PURE__*/React.createElement("svg", _extends({
8746
8780
  width: size,
@@ -8773,14 +8807,14 @@ SortDown.defaultProps = {
8773
8807
  size: '24'
8774
8808
  };
8775
8809
 
8776
- const _excluded$42 = ["color", "size"];
8810
+ const _excluded$43 = ["color", "size"];
8777
8811
 
8778
8812
  const Apple = props => {
8779
8813
  const {
8780
8814
  color,
8781
8815
  size
8782
8816
  } = props,
8783
- otherProps = _objectWithoutProperties(props, _excluded$42);
8817
+ otherProps = _objectWithoutProperties(props, _excluded$43);
8784
8818
 
8785
8819
  return /*#__PURE__*/React.createElement("svg", _extends({
8786
8820
  width: size,
@@ -8804,14 +8838,14 @@ Apple.defaultProps = {
8804
8838
  size: '24'
8805
8839
  };
8806
8840
 
8807
- const _excluded$43 = ["color", "size"];
8841
+ const _excluded$44 = ["color", "size"];
8808
8842
 
8809
8843
  const Google = props => {
8810
8844
  const {
8811
8845
  color,
8812
8846
  size
8813
8847
  } = props,
8814
- otherProps = _objectWithoutProperties(props, _excluded$43);
8848
+ otherProps = _objectWithoutProperties(props, _excluded$44);
8815
8849
 
8816
8850
  return /*#__PURE__*/React.createElement("svg", _extends({
8817
8851
  width: size,
@@ -8852,14 +8886,14 @@ Google.defaultProps = {
8852
8886
  size: '24'
8853
8887
  };
8854
8888
 
8855
- const _excluded$44 = ["color", "size"];
8889
+ const _excluded$45 = ["color", "size"];
8856
8890
 
8857
8891
  const Facebook = props => {
8858
8892
  const {
8859
8893
  color,
8860
8894
  size
8861
8895
  } = props,
8862
- otherProps = _objectWithoutProperties(props, _excluded$44);
8896
+ otherProps = _objectWithoutProperties(props, _excluded$45);
8863
8897
 
8864
8898
  return /*#__PURE__*/React.createElement("svg", _extends({
8865
8899
  width: size,
@@ -8885,14 +8919,14 @@ Facebook.defaultProps = {
8885
8919
  size: '24'
8886
8920
  };
8887
8921
 
8888
- const _excluded$45 = ["color", "size"];
8922
+ const _excluded$46 = ["color", "size"];
8889
8923
 
8890
8924
  const MessageTemplates = props => {
8891
8925
  const {
8892
8926
  color,
8893
8927
  size
8894
8928
  } = props,
8895
- otherProps = _objectWithoutProperties(props, _excluded$45);
8929
+ otherProps = _objectWithoutProperties(props, _excluded$46);
8896
8930
 
8897
8931
  return /*#__PURE__*/React.createElement("svg", _extends({
8898
8932
  width: size,
@@ -8916,14 +8950,14 @@ MessageTemplates.defaultProps = {
8916
8950
  size: '24'
8917
8951
  };
8918
8952
 
8919
- const _excluded$46 = ["color", "size"];
8953
+ const _excluded$47 = ["color", "size"];
8920
8954
 
8921
8955
  const OmnichannelWidget = props => {
8922
8956
  const {
8923
8957
  color,
8924
8958
  size
8925
8959
  } = props,
8926
- otherProps = _objectWithoutProperties(props, _excluded$46);
8960
+ otherProps = _objectWithoutProperties(props, _excluded$47);
8927
8961
 
8928
8962
  return /*#__PURE__*/React.createElement("svg", _extends({
8929
8963
  width: size,
@@ -8953,14 +8987,14 @@ OmnichannelWidget.defaultProps = {
8953
8987
  size: '24'
8954
8988
  };
8955
8989
 
8956
- const _excluded$47 = ["color", "size"];
8990
+ const _excluded$48 = ["color", "size"];
8957
8991
 
8958
8992
  const IncreaseEngagement = props => {
8959
8993
  const {
8960
8994
  color,
8961
8995
  size
8962
8996
  } = props,
8963
- otherProps = _objectWithoutProperties(props, _excluded$47);
8997
+ otherProps = _objectWithoutProperties(props, _excluded$48);
8964
8998
 
8965
8999
  return /*#__PURE__*/React.createElement("svg", _extends({
8966
9000
  width: size,
@@ -8984,14 +9018,14 @@ IncreaseEngagement.defaultProps = {
8984
9018
  size: '24'
8985
9019
  };
8986
9020
 
8987
- const _excluded$48 = ["color", "size"];
9021
+ const _excluded$49 = ["color", "size"];
8988
9022
 
8989
9023
  const ShowcaseProducts = props => {
8990
9024
  const {
8991
9025
  color,
8992
9026
  size
8993
9027
  } = props,
8994
- otherProps = _objectWithoutProperties(props, _excluded$48);
9028
+ otherProps = _objectWithoutProperties(props, _excluded$49);
8995
9029
 
8996
9030
  return /*#__PURE__*/React.createElement("svg", _extends({
8997
9031
  width: size,
@@ -9015,14 +9049,14 @@ ShowcaseProducts.defaultProps = {
9015
9049
  size: '24'
9016
9050
  };
9017
9051
 
9018
- const _excluded$49 = ["color", "size"];
9052
+ const _excluded$4a = ["color", "size"];
9019
9053
 
9020
9054
  const Faq = props => {
9021
9055
  const {
9022
9056
  color,
9023
9057
  size
9024
9058
  } = props,
9025
- otherProps = _objectWithoutProperties(props, _excluded$49);
9059
+ otherProps = _objectWithoutProperties(props, _excluded$4a);
9026
9060
 
9027
9061
  return /*#__PURE__*/React.createElement("svg", _extends({
9028
9062
  width: size,
@@ -9046,14 +9080,14 @@ Faq.defaultProps = {
9046
9080
  size: '24'
9047
9081
  };
9048
9082
 
9049
- const _excluded$4a = ["color", "size"];
9083
+ const _excluded$4b = ["color", "size"];
9050
9084
 
9051
9085
  const WebsiteRedirect = props => {
9052
9086
  const {
9053
9087
  color,
9054
9088
  size
9055
9089
  } = props,
9056
- otherProps = _objectWithoutProperties(props, _excluded$4a);
9090
+ otherProps = _objectWithoutProperties(props, _excluded$4b);
9057
9091
 
9058
9092
  return /*#__PURE__*/React.createElement("svg", _extends({
9059
9093
  width: size,
@@ -9079,14 +9113,14 @@ WebsiteRedirect.defaultProps = {
9079
9113
  size: '24'
9080
9114
  };
9081
9115
 
9082
- const _excluded$4b = ["color", "size"];
9116
+ const _excluded$4c = ["color", "size"];
9083
9117
 
9084
9118
  const TriggerIgStoryReply = props => {
9085
9119
  const {
9086
9120
  color,
9087
9121
  size
9088
9122
  } = props,
9089
- otherProps = _objectWithoutProperties(props, _excluded$4b);
9123
+ otherProps = _objectWithoutProperties(props, _excluded$4c);
9090
9124
 
9091
9125
  return /*#__PURE__*/React.createElement("svg", _extends({
9092
9126
  width: size,
@@ -9113,14 +9147,14 @@ TriggerIgStoryReply.defaultProps = {
9113
9147
  size: '24'
9114
9148
  };
9115
9149
 
9116
- const _excluded$4c = ["color", "size"];
9150
+ const _excluded$4d = ["color", "size"];
9117
9151
 
9118
9152
  const IgLiveComments = props => {
9119
9153
  const {
9120
9154
  color,
9121
9155
  size
9122
9156
  } = props,
9123
- otherProps = _objectWithoutProperties(props, _excluded$4c);
9157
+ otherProps = _objectWithoutProperties(props, _excluded$4d);
9124
9158
 
9125
9159
  return /*#__PURE__*/React.createElement("svg", _extends({
9126
9160
  width: size,
@@ -9155,14 +9189,14 @@ IgLiveComments.defaultProps = {
9155
9189
  size: '24'
9156
9190
  };
9157
9191
 
9158
- const _excluded$4d = ["color", "size"];
9192
+ const _excluded$4e = ["color", "size"];
9159
9193
 
9160
9194
  const TelegramChannel = props => {
9161
9195
  const {
9162
9196
  color,
9163
9197
  size
9164
9198
  } = props,
9165
- otherProps = _objectWithoutProperties(props, _excluded$4d);
9199
+ otherProps = _objectWithoutProperties(props, _excluded$4e);
9166
9200
 
9167
9201
  return /*#__PURE__*/React.createElement("svg", _extends({
9168
9202
  width: size,
@@ -9203,14 +9237,14 @@ TelegramChannel.defaultProps = {
9203
9237
  size: '24'
9204
9238
  };
9205
9239
 
9206
- const _excluded$4e = ["color", "size"];
9240
+ const _excluded$4f = ["color", "size"];
9207
9241
 
9208
9242
  const TelegramChannel2 = props => {
9209
9243
  const {
9210
9244
  color,
9211
9245
  size
9212
9246
  } = props,
9213
- otherProps = _objectWithoutProperties(props, _excluded$4e);
9247
+ otherProps = _objectWithoutProperties(props, _excluded$4f);
9214
9248
 
9215
9249
  return /*#__PURE__*/React.createElement("svg", _extends({
9216
9250
  width: size,
@@ -9241,14 +9275,14 @@ TelegramChannel2.defaultProps = {
9241
9275
  size: '24'
9242
9276
  };
9243
9277
 
9244
- const _excluded$4f = ["color", "size"];
9278
+ const _excluded$4g = ["color", "size"];
9245
9279
 
9246
9280
  const Telegram = props => {
9247
9281
  const {
9248
9282
  color,
9249
9283
  size
9250
9284
  } = props,
9251
- otherProps = _objectWithoutProperties(props, _excluded$4f);
9285
+ otherProps = _objectWithoutProperties(props, _excluded$4g);
9252
9286
 
9253
9287
  return /*#__PURE__*/React.createElement("svg", _extends({
9254
9288
  width: size,
@@ -9274,14 +9308,14 @@ Telegram.defaultProps = {
9274
9308
  size: '24'
9275
9309
  };
9276
9310
 
9277
- const _excluded$4g = ["color", "size"];
9311
+ const _excluded$4h = ["color", "size"];
9278
9312
 
9279
9313
  const Tap = props => {
9280
9314
  const {
9281
9315
  color,
9282
9316
  size
9283
9317
  } = props,
9284
- otherProps = _objectWithoutProperties(props, _excluded$4g);
9318
+ otherProps = _objectWithoutProperties(props, _excluded$4h);
9285
9319
 
9286
9320
  return /*#__PURE__*/React.createElement("svg", _extends({
9287
9321
  width: size,
@@ -9305,14 +9339,14 @@ Tap.defaultProps = {
9305
9339
  size: '24'
9306
9340
  };
9307
9341
 
9308
- const _excluded$4h = ["color", "size"];
9342
+ const _excluded$4i = ["color", "size"];
9309
9343
 
9310
9344
  const VideoCircleTg = props => {
9311
9345
  const {
9312
9346
  color,
9313
9347
  size
9314
9348
  } = props,
9315
- otherProps = _objectWithoutProperties(props, _excluded$4h);
9349
+ otherProps = _objectWithoutProperties(props, _excluded$4i);
9316
9350
 
9317
9351
  return /*#__PURE__*/React.createElement("svg", _extends({
9318
9352
  width: size,
@@ -9336,14 +9370,45 @@ VideoCircleTg.defaultProps = {
9336
9370
  size: '24'
9337
9371
  };
9338
9372
 
9339
- const _excluded$4i = ["color", "size"];
9373
+ const _excluded$4j = ["color", "size"];
9374
+
9375
+ const Reels = props => {
9376
+ const {
9377
+ color,
9378
+ size
9379
+ } = props,
9380
+ otherProps = _objectWithoutProperties(props, _excluded$4j);
9381
+
9382
+ return /*#__PURE__*/React.createElement("svg", _extends({
9383
+ width: size,
9384
+ height: size,
9385
+ viewBox: "0 0 24 24",
9386
+ fill: "none",
9387
+ xmlns: "http://www.w3.org/2000/svg",
9388
+ preserveAspectRatio: "xMidYMid meet"
9389
+ }, otherProps), /*#__PURE__*/React.createElement("path", {
9390
+ d: "M20 8.25C20.4143 8.25 20.75 7.91421 20.75 7.5C20.75 7.08578 20.4143 6.75 20 6.75V8.25ZM8.072 3.85668L7.94624 3.1173L8.072 3.85668ZM3.98804 7.5L3.26787 7.29059L3.98804 7.5ZM10.4813 10.5L10.8625 9.85413C10.6307 9.71726 10.3432 9.71518 10.1094 9.84868C9.87561 9.98217 9.73129 10.2308 9.73129 10.5H10.4813ZM10.4813 15.5H9.73129C9.73129 15.7692 9.87561 16.0178 10.1094 16.1513C10.3432 16.2848 10.6307 16.2827 10.8625 16.1459L10.4813 15.5ZM14.7164 13L15.0977 13.6459C15.3262 13.511 15.4664 13.2654 15.4664 13C15.4664 12.7346 15.3262 12.489 15.0977 12.3541L14.7164 13ZM19.4666 8.9434V15.0566H20.9666V8.9434H19.4666ZM15.0566 19.4666H8.94345V20.9666H15.0566V19.4666ZM4.53345 15.0566V8.9434H3.03345V15.0566H4.53345ZM8.94345 19.4666C6.50787 19.4666 4.53345 17.4922 4.53345 15.0566H3.03345C3.03345 18.3206 5.67944 20.9666 8.94345 20.9666V19.4666ZM19.4666 15.0566C19.4666 17.4922 17.4922 19.4666 15.0566 19.4666V20.9666C18.3206 20.9666 20.9666 18.3206 20.9666 15.0566H19.4666ZM15.0566 4.5334C17.4922 4.5334 19.4666 6.50783 19.4666 8.9434H20.9666C20.9666 5.6794 18.3206 3.0334 15.0566 3.0334V4.5334ZM20 6.75H15.2735V8.25H20V6.75ZM15.2735 6.75H10.1755V8.25H15.2735V6.75ZM10.825 7.125L8.72152 3.48168L7.42248 4.23168L9.52595 7.875L10.825 7.125ZM8.94345 3.0334C8.60412 3.0334 8.2709 3.06208 7.94624 3.1173L8.19776 4.59606C8.43967 4.55491 8.68875 4.5334 8.94345 4.5334V3.0334ZM7.94624 3.1173C5.70296 3.49886 3.89268 5.14186 3.26787 7.29059L4.70821 7.70941C5.17428 6.10662 6.52717 4.88021 8.19776 4.59606L7.94624 3.1173ZM3.26787 7.29059C3.1151 7.81597 3.03345 8.3708 3.03345 8.9434H4.53345C4.53345 8.51397 4.59461 8.10011 4.70821 7.70941L3.26787 7.29059ZM10.1755 6.75H3.98804V8.25H10.1755V6.75ZM15.9231 7.125L13.7773 3.4084L12.4782 4.1584L14.624 7.875L15.9231 7.125ZM8.94345 4.5334H13.1278V3.0334H8.94345V4.5334ZM13.1278 4.5334H15.0566V3.0334H13.1278V4.5334ZM9.73129 10.5V15.5H11.2313V10.5H9.73129ZM10.8625 16.1459L15.0977 13.6459L14.3351 12.3541L10.1 14.8541L10.8625 16.1459ZM15.0977 12.3541L10.8625 9.85413L10.1 11.1459L14.3351 13.6459L15.0977 12.3541Z",
9391
+ fill: color
9392
+ }));
9393
+ };
9394
+
9395
+ Reels.propTypes = {
9396
+ color: PropTypes.string,
9397
+ size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
9398
+ };
9399
+ Reels.defaultProps = {
9400
+ color: 'currentColor',
9401
+ size: '24'
9402
+ };
9403
+
9404
+ const _excluded$4k = ["color", "size"];
9340
9405
 
9341
9406
  const Create = props => {
9342
9407
  const {
9343
9408
  color,
9344
9409
  size
9345
9410
  } = props,
9346
- otherProps = _objectWithoutProperties(props, _excluded$4i);
9411
+ otherProps = _objectWithoutProperties(props, _excluded$4k);
9347
9412
 
9348
9413
  return /*#__PURE__*/React.createElement("svg", _extends({
9349
9414
  width: size,
@@ -9370,14 +9435,14 @@ Create.defaultProps = {
9370
9435
  size: '24'
9371
9436
  };
9372
9437
 
9373
- const _excluded$4j = ["color", "size"];
9438
+ const _excluded$4l = ["color", "size"];
9374
9439
 
9375
9440
  const GtCheckbox = props => {
9376
9441
  const {
9377
9442
  color,
9378
9443
  size
9379
9444
  } = props,
9380
- otherProps = _objectWithoutProperties(props, _excluded$4j);
9445
+ otherProps = _objectWithoutProperties(props, _excluded$4l);
9381
9446
 
9382
9447
  return /*#__PURE__*/React.createElement("svg", _extends({
9383
9448
  width: size,
@@ -9404,14 +9469,14 @@ GtCheckbox.defaultProps = {
9404
9469
  size: '24'
9405
9470
  };
9406
9471
 
9407
- const _excluded$4k = ["color", "size"];
9472
+ const _excluded$4m = ["color", "size"];
9408
9473
 
9409
9474
  const GtFbComment = props => {
9410
9475
  const {
9411
9476
  color,
9412
9477
  size
9413
9478
  } = props,
9414
- otherProps = _objectWithoutProperties(props, _excluded$4k);
9479
+ otherProps = _objectWithoutProperties(props, _excluded$4m);
9415
9480
 
9416
9481
  return /*#__PURE__*/React.createElement("svg", _extends({
9417
9482
  width: size,
@@ -9435,14 +9500,14 @@ GtFbComment.defaultProps = {
9435
9500
  size: '24'
9436
9501
  };
9437
9502
 
9438
- const _excluded$4l = ["color", "size"];
9503
+ const _excluded$4n = ["color", "size"];
9439
9504
 
9440
9505
  const GtAdsJson = props => {
9441
9506
  const {
9442
9507
  color,
9443
9508
  size
9444
9509
  } = props,
9445
- otherProps = _objectWithoutProperties(props, _excluded$4l);
9510
+ otherProps = _objectWithoutProperties(props, _excluded$4n);
9446
9511
 
9447
9512
  return /*#__PURE__*/React.createElement("svg", _extends({
9448
9513
  width: size,
@@ -9475,14 +9540,14 @@ GtAdsJson.defaultProps = {
9475
9540
  size: '24'
9476
9541
  };
9477
9542
 
9478
- const _excluded$4m = ["color", "size"];
9543
+ const _excluded$4o = ["color", "size"];
9479
9544
 
9480
9545
  const GtFbCode = props => {
9481
9546
  const {
9482
9547
  color,
9483
9548
  size
9484
9549
  } = props,
9485
- otherProps = _objectWithoutProperties(props, _excluded$4m);
9550
+ otherProps = _objectWithoutProperties(props, _excluded$4o);
9486
9551
 
9487
9552
  return /*#__PURE__*/React.createElement("svg", _extends({
9488
9553
  width: size,
@@ -9511,14 +9576,14 @@ GtFbCode.defaultProps = {
9511
9576
  size: '24'
9512
9577
  };
9513
9578
 
9514
- const _excluded$4n = ["color", "size"];
9579
+ const _excluded$4p = ["color", "size"];
9515
9580
 
9516
9581
  const GtRef = props => {
9517
9582
  const {
9518
9583
  color,
9519
9584
  size
9520
9585
  } = props,
9521
- otherProps = _objectWithoutProperties(props, _excluded$4n);
9586
+ otherProps = _objectWithoutProperties(props, _excluded$4p);
9522
9587
 
9523
9588
  return /*#__PURE__*/React.createElement("svg", _extends({
9524
9589
  width: size,
@@ -9542,14 +9607,14 @@ GtRef.defaultProps = {
9542
9607
  size: '24'
9543
9608
  };
9544
9609
 
9545
- const _excluded$4o = ["color", "size"];
9610
+ const _excluded$4q = ["color", "size"];
9546
9611
 
9547
9612
  const GtCustomerChat = props => {
9548
9613
  const {
9549
9614
  color,
9550
9615
  size
9551
9616
  } = props,
9552
- otherProps = _objectWithoutProperties(props, _excluded$4o);
9617
+ otherProps = _objectWithoutProperties(props, _excluded$4q);
9553
9618
 
9554
9619
  return /*#__PURE__*/React.createElement("svg", _extends({
9555
9620
  width: size,
@@ -9578,14 +9643,14 @@ GtCustomerChat.defaultProps = {
9578
9643
  size: '24'
9579
9644
  };
9580
9645
 
9581
- const _excluded$4p = ["color", "size"];
9646
+ const _excluded$4r = ["color", "size"];
9582
9647
 
9583
9648
  const GtTakeover = props => {
9584
9649
  const {
9585
9650
  color,
9586
9651
  size
9587
9652
  } = props,
9588
- otherProps = _objectWithoutProperties(props, _excluded$4p);
9653
+ otherProps = _objectWithoutProperties(props, _excluded$4r);
9589
9654
 
9590
9655
  return /*#__PURE__*/React.createElement("svg", _extends({
9591
9656
  width: size,
@@ -9643,14 +9708,14 @@ GtTakeover.defaultProps = {
9643
9708
  size: '24'
9644
9709
  };
9645
9710
 
9646
- const _excluded$4q = ["color", "size"];
9711
+ const _excluded$4s = ["color", "size"];
9647
9712
 
9648
9713
  const FlowPlaceholder = props => {
9649
9714
  const {
9650
9715
  color,
9651
9716
  size
9652
9717
  } = props,
9653
- otherProps = _objectWithoutProperties(props, _excluded$4q);
9718
+ otherProps = _objectWithoutProperties(props, _excluded$4s);
9654
9719
 
9655
9720
  return /*#__PURE__*/React.createElement("svg", _extends({
9656
9721
  width: size,
@@ -9729,14 +9794,14 @@ FlowPlaceholder.defaultProps = {
9729
9794
  size: '24'
9730
9795
  };
9731
9796
 
9732
- const _excluded$4r = ["color", "size"];
9797
+ const _excluded$4t = ["color", "size"];
9733
9798
 
9734
9799
  const AddStep = props => {
9735
9800
  const {
9736
9801
  color,
9737
9802
  size
9738
9803
  } = props,
9739
- otherProps = _objectWithoutProperties(props, _excluded$4r);
9804
+ otherProps = _objectWithoutProperties(props, _excluded$4t);
9740
9805
 
9741
9806
  return /*#__PURE__*/React.createElement("svg", _extends({
9742
9807
  width: size,
@@ -9772,14 +9837,14 @@ AddStep.defaultProps = {
9772
9837
  size: '24'
9773
9838
  };
9774
9839
 
9775
- const _excluded$4s = ["color", "size"];
9840
+ const _excluded$4u = ["color", "size"];
9776
9841
 
9777
9842
  const Stats = props => {
9778
9843
  const {
9779
9844
  color,
9780
9845
  size
9781
9846
  } = props,
9782
- otherProps = _objectWithoutProperties(props, _excluded$4s);
9847
+ otherProps = _objectWithoutProperties(props, _excluded$4u);
9783
9848
 
9784
9849
  return /*#__PURE__*/React.createElement("svg", _extends({
9785
9850
  width: size,
@@ -9819,14 +9884,14 @@ Stats.defaultProps = {
9819
9884
  size: '24'
9820
9885
  };
9821
9886
 
9822
- const _excluded$4t = ["color", "size"];
9887
+ const _excluded$4v = ["color", "size"];
9823
9888
 
9824
9889
  const Coursor = props => {
9825
9890
  const {
9826
9891
  color,
9827
9892
  size
9828
9893
  } = props,
9829
- otherProps = _objectWithoutProperties(props, _excluded$4t);
9894
+ otherProps = _objectWithoutProperties(props, _excluded$4v);
9830
9895
 
9831
9896
  return /*#__PURE__*/React.createElement("svg", _extends({
9832
9897
  width: size,
@@ -9850,14 +9915,14 @@ Coursor.defaultProps = {
9850
9915
  size: '24'
9851
9916
  };
9852
9917
 
9853
- const _excluded$4u = ["color", "size"];
9918
+ const _excluded$4w = ["color", "size"];
9854
9919
 
9855
9920
  const CoursorFullcolor = props => {
9856
9921
  const {
9857
9922
  color,
9858
9923
  size
9859
9924
  } = props,
9860
- otherProps = _objectWithoutProperties(props, _excluded$4u);
9925
+ otherProps = _objectWithoutProperties(props, _excluded$4w);
9861
9926
 
9862
9927
  return /*#__PURE__*/React.createElement("svg", _extends({
9863
9928
  width: size,
@@ -9918,4 +9983,4 @@ CoursorFullcolor.defaultProps = {
9918
9983
  size: '24'
9919
9984
  };
9920
9985
 
9921
- export { Action, ActionMarkConversationAsDone, AddCircle, AddStep, AddTag, Ads, AdsAd, AdsAdSet, AlignCenter, AlignLeft, AlignRight, AlignWide, All, Analytics, Apple, Archive, ArrowDown, ArrowDrag, ArrowDropDown, ArrowDropUp, ArrowLeft, ArrowRight, ArrowUp, Assign, Attach, Attention, Audience, Audio, Automation, Bold, Book, Bot, BotRemove, Broadcasting, BuilderAudio, BuilderCard, BuilderGallery, BuilderInput, BuilderList, BuilderText, ButtonEmailBlock, Calendar, Camera, Cart, Cgt20, CheckCircle, CheckboxDone, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ClearMobile, Close, Cloud, CloudDownload, CloudError, CloudUpload, Community, Condition, ConvertChannels, Copy, CopyToAnotherFlow, Coupon, Coursor, CoursorFullcolor, Create, CreditCard, CufArray, CufBoolean, CufEnum, CufNoIcon, CufNumber, CufText, CustomField, CustomFieldRemove, Dashboard, Data, DefaultReply, Delay, Delete, DeleteForever, DeleteTag, DoubleChevrotBack, DoubleChevrotCollapse, DoubleChevrotExpand, DoubleChevrotForward, DragConnector, DragItem, DubleTick, DuplicateSms, Edit, EmailChannel, ExitFullscreen, Facebook, FacebookMessenger, Faq, FbChat, Female, Filter, Flow, FlowPlaceholder, Folder, FolderAdd, FolderAdsCampaign, FolderOpen, Fullscreen, GoToFlow, Google, GrowthTools, GtAdsJson, GtBar, GtBox, GtButton, GtCheckbox, GtCustomerChat, GtFbCode, GtFbComment, GtLanding, GtModal, GtPageTakeover, GtRef, GtSlideIn, GtTakeover, GuestChatChannel, HeadlineBlockEmail, Health, Help, Hide, Home, IcGrid_24px_, IcGrid__148x100_, Id, IgLiveComments, Image, Inbox, IncreaseEngagement, Info, InstagramChannel, InstagramChannel2, Italic, Keyboard, Keywords, Link, LiveChat, Logout, MagicWand, Magnet, Male, Mention, Menu, MessageBack, MessageOpen, MessageTemplates, Messenger, MessengerChannel, Mic, Minus, MoreChannels, MoreHor, MoreVert, MosaicView, MoveTo, Nationality, NewCuFs, NewMessage, NodeAdd, Note, Notification, NotificationMute, OmnichannelWidget, Options, OrphanAction, OrphanAction2, OrphanAdStatistics, OrphanAdsCampaignMessages, OrphanAdsCampaignTraffic, OrphanArchive, OrphanBuilderSelect, OrphanBuyButton, OrphanCall, OrphanCardQuadrant, OrphanClicked, OrphanDesktop, OrphanFbChat, OrphanFullScreenPreview, OrphanFullText, OrphanIntegration, OrphanIntegromat, OrphanLiveChatDone, OrphanLongArrow, OrphanMainMenu, OrphanMinimizedChat, OrphanMobile, OrphanOpen, OrphanRestore, OrphanSplit, OrphanSubscribedNoInfo, OrphanTableView, OrphanTriggerZap, OtnRequest, Pause, PhoneOutgoing, Pin, Play, Plus, Popular, Protect, PublicChangelog, Publish, Qr, Question, Redo, Retry, Rules, Search, SelectAll, Send, Send2, SendMessage, Sequences, SequencesAdd, SequencesRemove, Settings, Share, Shopify, ShopifyDeprecated, Show, ShowFlow, ShowcaseProducts, Smile, Sms, SmsChannel, SolidArrowUnsorted, Sort, SortDown, SortUp, Spacing, Spinner, SponsoredMessages, SponsoredMessages2, Star, Starred, StartFlow, Stats, Stop, SystemField, TableView, Tap, Telegram, TelegramChannel, TelegramChannel2, TemplateMediaBg, TemplateStore, TemplateTextMedia, Templates, Text, ThumbDown, ThumbUp, Tick, Ticket, Time, TimeAdd, Transgender, TriggerFbAds, TriggerFbComments, TriggerFbComments20, TriggerIgStoryReply, TriggerNewSubscriber, Triggers, TriggersLines, Unassign, Underline, Undo, Unpin, Unprotect, Unsubscribed, User, UserAdd, Video, VideoCircleTg, Warning, WebChat, WebsiteRedirect, WelcomeMessage, WhatsAppChannel, WhatsAppWidget, Zapier };
9986
+ export { Action, ActionMarkConversationAsDone, AddCircle, AddStep, AddTag, Ads, AdsAd, AdsAdSet, AlignCenter, AlignLeft, AlignRight, AlignWide, All, Analytics, Apple, Archive, ArrowDown, ArrowDrag, ArrowDropDown, ArrowDropUp, ArrowLeft, ArrowRight, ArrowUp, Assign, Attach, Attention, Audience, Audio, Automation, Bold, Book, Bot, BotRemove, Broadcasting, BuilderAudio, BuilderCard, BuilderGallery, BuilderInput, BuilderList, BuilderText, ButtonEmailBlock, Calendar, Camera, CannedResponse, Cart, Cgt20, CheckCircle, CheckboxDone, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ClearMobile, Close, Cloud, CloudDownload, CloudError, CloudUpload, Community, Condition, ConvertChannels, Copy, CopyToAnotherFlow, Coupon, Coursor, CoursorFullcolor, Create, CreditCard, CufArray, CufBoolean, CufEnum, CufNoIcon, CufNumber, CufText, CustomField, CustomFieldRemove, Dashboard, Data, DefaultReply, Delay, Delete, DeleteForever, DeleteTag, DoubleChevrotBack, DoubleChevrotCollapse, DoubleChevrotExpand, DoubleChevrotForward, DragConnector, DragItem, DubleTick, DuplicateSms, Edit, EmailChannel, ExitFullscreen, Facebook, FacebookMessenger, Faq, FbChat, Female, Filter, Flow, FlowPlaceholder, Folder, FolderAdd, FolderAdsCampaign, FolderOpen, Fullscreen, GoToFlow, Google, GrowthTools, GtAdsJson, GtBar, GtBox, GtButton, GtCheckbox, GtCustomerChat, GtFbCode, GtFbComment, GtLanding, GtModal, GtPageTakeover, GtRef, GtSlideIn, GtTakeover, GuestChatChannel, HeadlineBlockEmail, Health, Help, Hide, Home, IcGrid_24px_, IcGrid__148x100_, Id, IgLiveComments, Image, Inbox, IncreaseEngagement, Info, InstagramChannel, InstagramChannel2, Italic, Keyboard, Keywords, Link, LiveChat, Logout, MagicWand, Magnet, Male, Mention, Menu, MessageBack, MessageOpen, MessageTemplates, Messenger, MessengerChannel, Mic, Minus, MoreChannels, MoreHor, MoreVert, MosaicView, MoveTo, Nationality, NewCuFs, NewMessage, NodeAdd, Note, Notification, NotificationMute, OmnichannelWidget, Options, OrphanAction, OrphanAction2, OrphanAdStatistics, OrphanAdsCampaignMessages, OrphanAdsCampaignTraffic, OrphanArchive, OrphanBuilderSelect, OrphanBuyButton, OrphanCall, OrphanCardQuadrant, OrphanClicked, OrphanDesktop, OrphanFbChat, OrphanFullScreenPreview, OrphanFullText, OrphanIntegration, OrphanIntegromat, OrphanLiveChatDone, OrphanLongArrow, OrphanMainMenu, OrphanMinimizedChat, OrphanMobile, OrphanOpen, OrphanRestore, OrphanSplit, OrphanSubscribedNoInfo, OrphanTableView, OrphanTriggerZap, OtnRequest, Pause, PhoneOutgoing, Pin, Play, Plus, Popular, Protect, PublicChangelog, Publish, Qr, Question, Redo, Reels, Retry, Rules, Search, SelectAll, Send, Send2, SendMessage, Sequences, SequencesAdd, SequencesRemove, Settings, Share, Shopify, ShopifyDeprecated, Show, ShowFlow, ShowcaseProducts, Smile, Sms, SmsChannel, SolidArrowUnsorted, Sort, SortDown, SortUp, Spacing, Spinner, SponsoredMessages, SponsoredMessages2, Star, Starred, StartFlow, Stats, Stop, SystemField, TableView, Tap, Telegram, TelegramChannel, TelegramChannel2, TemplateMediaBg, TemplateStore, TemplateTextMedia, Templates, Text, ThumbDown, ThumbUp, Tick, Ticket, Time, TimeAdd, Transgender, TriggerFbAds, TriggerFbComments, TriggerFbComments20, TriggerIgStoryReply, TriggerNewSubscriber, Triggers, TriggersLines, Unassign, Underline, Undo, Unpin, Unprotect, Unsubscribed, User, UserAdd, Video, VideoCircleTg, Warning, WebChat, WebsiteRedirect, WelcomeMessage, WhatsAppChannel, WhatsAppWidget, Zapier };