@manychat/icons 1.42.0 → 1.43.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.d.ts +2 -0
- package/dist/index.es.js +142 -92
- package/dist/index.js +143 -91
- package/package.json +1 -1
- package/umd/mcicons.js +143 -91
- package/umd/mcicons.min.js +1 -1
package/dist/index.js
CHANGED
|
@@ -8064,12 +8064,29 @@ DubleTick.defaultProps = {
|
|
|
8064
8064
|
|
|
8065
8065
|
const _excluded$3J = ["color", "size"];
|
|
8066
8066
|
|
|
8067
|
+
const Check = props => {
|
|
8068
|
+
const otherProps = _objectWithoutProperties(props, _excluded$3J);
|
|
8069
|
+
|
|
8070
|
+
return null;
|
|
8071
|
+
};
|
|
8072
|
+
|
|
8073
|
+
Check.propTypes = {
|
|
8074
|
+
color: PropTypes.string,
|
|
8075
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
8076
|
+
};
|
|
8077
|
+
Check.defaultProps = {
|
|
8078
|
+
color: 'currentColor',
|
|
8079
|
+
size: '24'
|
|
8080
|
+
};
|
|
8081
|
+
|
|
8082
|
+
const _excluded$3K = ["color", "size"];
|
|
8083
|
+
|
|
8067
8084
|
const CheckCircle = props => {
|
|
8068
8085
|
const {
|
|
8069
8086
|
color,
|
|
8070
8087
|
size
|
|
8071
8088
|
} = props,
|
|
8072
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8089
|
+
otherProps = _objectWithoutProperties(props, _excluded$3K);
|
|
8073
8090
|
|
|
8074
8091
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8075
8092
|
width: size,
|
|
@@ -8093,14 +8110,14 @@ CheckCircle.defaultProps = {
|
|
|
8093
8110
|
size: '24'
|
|
8094
8111
|
};
|
|
8095
8112
|
|
|
8096
|
-
const _excluded$
|
|
8113
|
+
const _excluded$3L = ["color", "size"];
|
|
8097
8114
|
|
|
8098
8115
|
const Time = props => {
|
|
8099
8116
|
const {
|
|
8100
8117
|
color,
|
|
8101
8118
|
size
|
|
8102
8119
|
} = props,
|
|
8103
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8120
|
+
otherProps = _objectWithoutProperties(props, _excluded$3L);
|
|
8104
8121
|
|
|
8105
8122
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8106
8123
|
width: size,
|
|
@@ -8124,14 +8141,14 @@ Time.defaultProps = {
|
|
|
8124
8141
|
size: '24'
|
|
8125
8142
|
};
|
|
8126
8143
|
|
|
8127
|
-
const _excluded$
|
|
8144
|
+
const _excluded$3M = ["color", "size"];
|
|
8128
8145
|
|
|
8129
8146
|
const Nationality = props => {
|
|
8130
8147
|
const {
|
|
8131
8148
|
color,
|
|
8132
8149
|
size
|
|
8133
8150
|
} = props,
|
|
8134
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8151
|
+
otherProps = _objectWithoutProperties(props, _excluded$3M);
|
|
8135
8152
|
|
|
8136
8153
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8137
8154
|
width: size,
|
|
@@ -8155,14 +8172,14 @@ Nationality.defaultProps = {
|
|
|
8155
8172
|
size: '24'
|
|
8156
8173
|
};
|
|
8157
8174
|
|
|
8158
|
-
const _excluded$
|
|
8175
|
+
const _excluded$3N = ["color", "size"];
|
|
8159
8176
|
|
|
8160
8177
|
const Mention = props => {
|
|
8161
8178
|
const {
|
|
8162
8179
|
color,
|
|
8163
8180
|
size
|
|
8164
8181
|
} = props,
|
|
8165
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8182
|
+
otherProps = _objectWithoutProperties(props, _excluded$3N);
|
|
8166
8183
|
|
|
8167
8184
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8168
8185
|
width: size,
|
|
@@ -8186,14 +8203,14 @@ Mention.defaultProps = {
|
|
|
8186
8203
|
size: '24'
|
|
8187
8204
|
};
|
|
8188
8205
|
|
|
8189
|
-
const _excluded$
|
|
8206
|
+
const _excluded$3O = ["color", "size"];
|
|
8190
8207
|
|
|
8191
8208
|
const Question = props => {
|
|
8192
8209
|
const {
|
|
8193
8210
|
color,
|
|
8194
8211
|
size
|
|
8195
8212
|
} = props,
|
|
8196
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8213
|
+
otherProps = _objectWithoutProperties(props, _excluded$3O);
|
|
8197
8214
|
|
|
8198
8215
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8199
8216
|
width: size,
|
|
@@ -8220,14 +8237,14 @@ Question.defaultProps = {
|
|
|
8220
8237
|
size: '24'
|
|
8221
8238
|
};
|
|
8222
8239
|
|
|
8223
|
-
const _excluded$
|
|
8240
|
+
const _excluded$3P = ["color", "size"];
|
|
8224
8241
|
|
|
8225
8242
|
const AddCircle = props => {
|
|
8226
8243
|
const {
|
|
8227
8244
|
color,
|
|
8228
8245
|
size
|
|
8229
8246
|
} = props,
|
|
8230
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8247
|
+
otherProps = _objectWithoutProperties(props, _excluded$3P);
|
|
8231
8248
|
|
|
8232
8249
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8233
8250
|
width: size,
|
|
@@ -8254,14 +8271,14 @@ AddCircle.defaultProps = {
|
|
|
8254
8271
|
size: '24'
|
|
8255
8272
|
};
|
|
8256
8273
|
|
|
8257
|
-
const _excluded$
|
|
8274
|
+
const _excluded$3Q = ["color", "size"];
|
|
8258
8275
|
|
|
8259
8276
|
const Unsubscribed = props => {
|
|
8260
8277
|
const {
|
|
8261
8278
|
color,
|
|
8262
8279
|
size
|
|
8263
8280
|
} = props,
|
|
8264
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8281
|
+
otherProps = _objectWithoutProperties(props, _excluded$3Q);
|
|
8265
8282
|
|
|
8266
8283
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8267
8284
|
width: size,
|
|
@@ -8288,14 +8305,14 @@ Unsubscribed.defaultProps = {
|
|
|
8288
8305
|
size: '24'
|
|
8289
8306
|
};
|
|
8290
8307
|
|
|
8291
|
-
const _excluded$
|
|
8308
|
+
const _excluded$3R = ["color", "size"];
|
|
8292
8309
|
|
|
8293
8310
|
const Smile = props => {
|
|
8294
8311
|
const {
|
|
8295
8312
|
color,
|
|
8296
8313
|
size
|
|
8297
8314
|
} = props,
|
|
8298
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8315
|
+
otherProps = _objectWithoutProperties(props, _excluded$3R);
|
|
8299
8316
|
|
|
8300
8317
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8301
8318
|
width: size,
|
|
@@ -8322,14 +8339,14 @@ Smile.defaultProps = {
|
|
|
8322
8339
|
size: '24'
|
|
8323
8340
|
};
|
|
8324
8341
|
|
|
8325
|
-
const _excluded$
|
|
8342
|
+
const _excluded$3S = ["color", "size"];
|
|
8326
8343
|
|
|
8327
8344
|
const TimeAdd = props => {
|
|
8328
8345
|
const {
|
|
8329
8346
|
color,
|
|
8330
8347
|
size
|
|
8331
8348
|
} = props,
|
|
8332
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8349
|
+
otherProps = _objectWithoutProperties(props, _excluded$3S);
|
|
8333
8350
|
|
|
8334
8351
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8335
8352
|
width: size,
|
|
@@ -8353,14 +8370,14 @@ TimeAdd.defaultProps = {
|
|
|
8353
8370
|
size: '24'
|
|
8354
8371
|
};
|
|
8355
8372
|
|
|
8356
|
-
const _excluded$
|
|
8373
|
+
const _excluded$3T = ["color", "size"];
|
|
8357
8374
|
|
|
8358
8375
|
const Retry = props => {
|
|
8359
8376
|
const {
|
|
8360
8377
|
color,
|
|
8361
8378
|
size
|
|
8362
8379
|
} = props,
|
|
8363
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8380
|
+
otherProps = _objectWithoutProperties(props, _excluded$3T);
|
|
8364
8381
|
|
|
8365
8382
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8366
8383
|
width: size,
|
|
@@ -8387,14 +8404,14 @@ Retry.defaultProps = {
|
|
|
8387
8404
|
size: '24'
|
|
8388
8405
|
};
|
|
8389
8406
|
|
|
8390
|
-
const _excluded$
|
|
8407
|
+
const _excluded$3U = ["color", "size"];
|
|
8391
8408
|
|
|
8392
8409
|
const Stop = props => {
|
|
8393
8410
|
const {
|
|
8394
8411
|
color,
|
|
8395
8412
|
size
|
|
8396
8413
|
} = props,
|
|
8397
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8414
|
+
otherProps = _objectWithoutProperties(props, _excluded$3U);
|
|
8398
8415
|
|
|
8399
8416
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8400
8417
|
width: size,
|
|
@@ -8421,14 +8438,14 @@ Stop.defaultProps = {
|
|
|
8421
8438
|
size: '24'
|
|
8422
8439
|
};
|
|
8423
8440
|
|
|
8424
|
-
const _excluded$
|
|
8441
|
+
const _excluded$3V = ["color", "size"];
|
|
8425
8442
|
|
|
8426
8443
|
const Info = props => {
|
|
8427
8444
|
const {
|
|
8428
8445
|
color,
|
|
8429
8446
|
size
|
|
8430
8447
|
} = props,
|
|
8431
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8448
|
+
otherProps = _objectWithoutProperties(props, _excluded$3V);
|
|
8432
8449
|
|
|
8433
8450
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8434
8451
|
width: size,
|
|
@@ -8455,14 +8472,14 @@ Info.defaultProps = {
|
|
|
8455
8472
|
size: '24'
|
|
8456
8473
|
};
|
|
8457
8474
|
|
|
8458
|
-
const _excluded$
|
|
8475
|
+
const _excluded$3W = ["color", "size"];
|
|
8459
8476
|
|
|
8460
8477
|
const Attention = props => {
|
|
8461
8478
|
const {
|
|
8462
8479
|
color,
|
|
8463
8480
|
size
|
|
8464
8481
|
} = props,
|
|
8465
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8482
|
+
otherProps = _objectWithoutProperties(props, _excluded$3W);
|
|
8466
8483
|
|
|
8467
8484
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8468
8485
|
width: size,
|
|
@@ -8489,14 +8506,14 @@ Attention.defaultProps = {
|
|
|
8489
8506
|
size: '24'
|
|
8490
8507
|
};
|
|
8491
8508
|
|
|
8492
|
-
const _excluded$
|
|
8509
|
+
const _excluded$3X = ["color", "size"];
|
|
8493
8510
|
|
|
8494
8511
|
const Help = props => {
|
|
8495
8512
|
const {
|
|
8496
8513
|
color,
|
|
8497
8514
|
size
|
|
8498
8515
|
} = props,
|
|
8499
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8516
|
+
otherProps = _objectWithoutProperties(props, _excluded$3X);
|
|
8500
8517
|
|
|
8501
8518
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8502
8519
|
width: size,
|
|
@@ -8523,14 +8540,14 @@ Help.defaultProps = {
|
|
|
8523
8540
|
size: '24'
|
|
8524
8541
|
};
|
|
8525
8542
|
|
|
8526
|
-
const _excluded$
|
|
8543
|
+
const _excluded$3Y = ["color", "size"];
|
|
8527
8544
|
|
|
8528
8545
|
const Spinner = props => {
|
|
8529
8546
|
const {
|
|
8530
8547
|
color,
|
|
8531
8548
|
size
|
|
8532
8549
|
} = props,
|
|
8533
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8550
|
+
otherProps = _objectWithoutProperties(props, _excluded$3Y);
|
|
8534
8551
|
|
|
8535
8552
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8536
8553
|
width: size,
|
|
@@ -8557,14 +8574,14 @@ Spinner.defaultProps = {
|
|
|
8557
8574
|
size: '24'
|
|
8558
8575
|
};
|
|
8559
8576
|
|
|
8560
|
-
const _excluded$
|
|
8577
|
+
const _excluded$3Z = ["color", "size"];
|
|
8561
8578
|
|
|
8562
8579
|
const Settings = props => {
|
|
8563
8580
|
const {
|
|
8564
8581
|
color,
|
|
8565
8582
|
size
|
|
8566
8583
|
} = props,
|
|
8567
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8584
|
+
otherProps = _objectWithoutProperties(props, _excluded$3Z);
|
|
8568
8585
|
|
|
8569
8586
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8570
8587
|
width: size,
|
|
@@ -8589,14 +8606,14 @@ Settings.defaultProps = {
|
|
|
8589
8606
|
size: '24'
|
|
8590
8607
|
};
|
|
8591
8608
|
|
|
8592
|
-
const _excluded$
|
|
8609
|
+
const _excluded$3_ = ["color", "size"];
|
|
8593
8610
|
|
|
8594
8611
|
const Dashboard = props => {
|
|
8595
8612
|
const {
|
|
8596
8613
|
color,
|
|
8597
8614
|
size
|
|
8598
8615
|
} = props,
|
|
8599
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8616
|
+
otherProps = _objectWithoutProperties(props, _excluded$3_);
|
|
8600
8617
|
|
|
8601
8618
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8602
8619
|
width: size,
|
|
@@ -8620,14 +8637,14 @@ Dashboard.defaultProps = {
|
|
|
8620
8637
|
size: '24'
|
|
8621
8638
|
};
|
|
8622
8639
|
|
|
8623
|
-
const _excluded$
|
|
8640
|
+
const _excluded$3$ = ["color", "size"];
|
|
8624
8641
|
|
|
8625
8642
|
const WebChat = props => {
|
|
8626
8643
|
const {
|
|
8627
8644
|
color,
|
|
8628
8645
|
size
|
|
8629
8646
|
} = props,
|
|
8630
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8647
|
+
otherProps = _objectWithoutProperties(props, _excluded$3$);
|
|
8631
8648
|
|
|
8632
8649
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8633
8650
|
width: size,
|
|
@@ -8668,14 +8685,14 @@ WebChat.defaultProps = {
|
|
|
8668
8685
|
size: '24'
|
|
8669
8686
|
};
|
|
8670
8687
|
|
|
8671
|
-
const _excluded$
|
|
8688
|
+
const _excluded$40 = ["color", "size"];
|
|
8672
8689
|
|
|
8673
8690
|
const SortUp = props => {
|
|
8674
8691
|
const {
|
|
8675
8692
|
color,
|
|
8676
8693
|
size
|
|
8677
8694
|
} = props,
|
|
8678
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8695
|
+
otherProps = _objectWithoutProperties(props, _excluded$40);
|
|
8679
8696
|
|
|
8680
8697
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8681
8698
|
width: size,
|
|
@@ -8708,14 +8725,14 @@ SortUp.defaultProps = {
|
|
|
8708
8725
|
size: '24'
|
|
8709
8726
|
};
|
|
8710
8727
|
|
|
8711
|
-
const _excluded$
|
|
8728
|
+
const _excluded$41 = ["color", "size"];
|
|
8712
8729
|
|
|
8713
8730
|
const SortDown = props => {
|
|
8714
8731
|
const {
|
|
8715
8732
|
color,
|
|
8716
8733
|
size
|
|
8717
8734
|
} = props,
|
|
8718
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8735
|
+
otherProps = _objectWithoutProperties(props, _excluded$41);
|
|
8719
8736
|
|
|
8720
8737
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8721
8738
|
width: size,
|
|
@@ -8748,14 +8765,14 @@ SortDown.defaultProps = {
|
|
|
8748
8765
|
size: '24'
|
|
8749
8766
|
};
|
|
8750
8767
|
|
|
8751
|
-
const _excluded$
|
|
8768
|
+
const _excluded$42 = ["color", "size"];
|
|
8752
8769
|
|
|
8753
8770
|
const Apple = props => {
|
|
8754
8771
|
const {
|
|
8755
8772
|
color,
|
|
8756
8773
|
size
|
|
8757
8774
|
} = props,
|
|
8758
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8775
|
+
otherProps = _objectWithoutProperties(props, _excluded$42);
|
|
8759
8776
|
|
|
8760
8777
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8761
8778
|
width: size,
|
|
@@ -8779,14 +8796,14 @@ Apple.defaultProps = {
|
|
|
8779
8796
|
size: '24'
|
|
8780
8797
|
};
|
|
8781
8798
|
|
|
8782
|
-
const _excluded$
|
|
8799
|
+
const _excluded$43 = ["color", "size"];
|
|
8783
8800
|
|
|
8784
8801
|
const Google = props => {
|
|
8785
8802
|
const {
|
|
8786
8803
|
color,
|
|
8787
8804
|
size
|
|
8788
8805
|
} = props,
|
|
8789
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8806
|
+
otherProps = _objectWithoutProperties(props, _excluded$43);
|
|
8790
8807
|
|
|
8791
8808
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8792
8809
|
width: size,
|
|
@@ -8827,14 +8844,14 @@ Google.defaultProps = {
|
|
|
8827
8844
|
size: '24'
|
|
8828
8845
|
};
|
|
8829
8846
|
|
|
8830
|
-
const _excluded$
|
|
8847
|
+
const _excluded$44 = ["color", "size"];
|
|
8831
8848
|
|
|
8832
8849
|
const Facebook = props => {
|
|
8833
8850
|
const {
|
|
8834
8851
|
color,
|
|
8835
8852
|
size
|
|
8836
8853
|
} = props,
|
|
8837
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8854
|
+
otherProps = _objectWithoutProperties(props, _excluded$44);
|
|
8838
8855
|
|
|
8839
8856
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8840
8857
|
width: size,
|
|
@@ -8860,14 +8877,14 @@ Facebook.defaultProps = {
|
|
|
8860
8877
|
size: '24'
|
|
8861
8878
|
};
|
|
8862
8879
|
|
|
8863
|
-
const _excluded$
|
|
8880
|
+
const _excluded$45 = ["color", "size"];
|
|
8864
8881
|
|
|
8865
8882
|
const MessageTemplates = props => {
|
|
8866
8883
|
const {
|
|
8867
8884
|
color,
|
|
8868
8885
|
size
|
|
8869
8886
|
} = props,
|
|
8870
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8887
|
+
otherProps = _objectWithoutProperties(props, _excluded$45);
|
|
8871
8888
|
|
|
8872
8889
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8873
8890
|
width: size,
|
|
@@ -8891,14 +8908,14 @@ MessageTemplates.defaultProps = {
|
|
|
8891
8908
|
size: '24'
|
|
8892
8909
|
};
|
|
8893
8910
|
|
|
8894
|
-
const _excluded$
|
|
8911
|
+
const _excluded$46 = ["color", "size"];
|
|
8895
8912
|
|
|
8896
8913
|
const OmnichannelWidget = props => {
|
|
8897
8914
|
const {
|
|
8898
8915
|
color,
|
|
8899
8916
|
size
|
|
8900
8917
|
} = props,
|
|
8901
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8918
|
+
otherProps = _objectWithoutProperties(props, _excluded$46);
|
|
8902
8919
|
|
|
8903
8920
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8904
8921
|
width: size,
|
|
@@ -8928,14 +8945,14 @@ OmnichannelWidget.defaultProps = {
|
|
|
8928
8945
|
size: '24'
|
|
8929
8946
|
};
|
|
8930
8947
|
|
|
8931
|
-
const _excluded$
|
|
8948
|
+
const _excluded$47 = ["color", "size"];
|
|
8932
8949
|
|
|
8933
8950
|
const IncreaseEngagement = props => {
|
|
8934
8951
|
const {
|
|
8935
8952
|
color,
|
|
8936
8953
|
size
|
|
8937
8954
|
} = props,
|
|
8938
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8955
|
+
otherProps = _objectWithoutProperties(props, _excluded$47);
|
|
8939
8956
|
|
|
8940
8957
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8941
8958
|
width: size,
|
|
@@ -8959,14 +8976,14 @@ IncreaseEngagement.defaultProps = {
|
|
|
8959
8976
|
size: '24'
|
|
8960
8977
|
};
|
|
8961
8978
|
|
|
8962
|
-
const _excluded$
|
|
8979
|
+
const _excluded$48 = ["color", "size"];
|
|
8963
8980
|
|
|
8964
8981
|
const ShowcaseProducts = props => {
|
|
8965
8982
|
const {
|
|
8966
8983
|
color,
|
|
8967
8984
|
size
|
|
8968
8985
|
} = props,
|
|
8969
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
8986
|
+
otherProps = _objectWithoutProperties(props, _excluded$48);
|
|
8970
8987
|
|
|
8971
8988
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8972
8989
|
width: size,
|
|
@@ -8990,14 +9007,14 @@ ShowcaseProducts.defaultProps = {
|
|
|
8990
9007
|
size: '24'
|
|
8991
9008
|
};
|
|
8992
9009
|
|
|
8993
|
-
const _excluded$
|
|
9010
|
+
const _excluded$49 = ["color", "size"];
|
|
8994
9011
|
|
|
8995
9012
|
const Faq = props => {
|
|
8996
9013
|
const {
|
|
8997
9014
|
color,
|
|
8998
9015
|
size
|
|
8999
9016
|
} = props,
|
|
9000
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9017
|
+
otherProps = _objectWithoutProperties(props, _excluded$49);
|
|
9001
9018
|
|
|
9002
9019
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9003
9020
|
width: size,
|
|
@@ -9021,14 +9038,14 @@ Faq.defaultProps = {
|
|
|
9021
9038
|
size: '24'
|
|
9022
9039
|
};
|
|
9023
9040
|
|
|
9024
|
-
const _excluded$
|
|
9041
|
+
const _excluded$4a = ["color", "size"];
|
|
9025
9042
|
|
|
9026
9043
|
const WebsiteRedirect = props => {
|
|
9027
9044
|
const {
|
|
9028
9045
|
color,
|
|
9029
9046
|
size
|
|
9030
9047
|
} = props,
|
|
9031
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9048
|
+
otherProps = _objectWithoutProperties(props, _excluded$4a);
|
|
9032
9049
|
|
|
9033
9050
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9034
9051
|
width: size,
|
|
@@ -9054,14 +9071,14 @@ WebsiteRedirect.defaultProps = {
|
|
|
9054
9071
|
size: '24'
|
|
9055
9072
|
};
|
|
9056
9073
|
|
|
9057
|
-
const _excluded$
|
|
9074
|
+
const _excluded$4b = ["color", "size"];
|
|
9058
9075
|
|
|
9059
9076
|
const TriggerIgStoryReply = props => {
|
|
9060
9077
|
const {
|
|
9061
9078
|
color,
|
|
9062
9079
|
size
|
|
9063
9080
|
} = props,
|
|
9064
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9081
|
+
otherProps = _objectWithoutProperties(props, _excluded$4b);
|
|
9065
9082
|
|
|
9066
9083
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9067
9084
|
width: size,
|
|
@@ -9088,14 +9105,14 @@ TriggerIgStoryReply.defaultProps = {
|
|
|
9088
9105
|
size: '24'
|
|
9089
9106
|
};
|
|
9090
9107
|
|
|
9091
|
-
const _excluded$
|
|
9108
|
+
const _excluded$4c = ["color", "size"];
|
|
9092
9109
|
|
|
9093
9110
|
const TelegramChannel = props => {
|
|
9094
9111
|
const {
|
|
9095
9112
|
color,
|
|
9096
9113
|
size
|
|
9097
9114
|
} = props,
|
|
9098
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9115
|
+
otherProps = _objectWithoutProperties(props, _excluded$4c);
|
|
9099
9116
|
|
|
9100
9117
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9101
9118
|
width: size,
|
|
@@ -9136,14 +9153,47 @@ TelegramChannel.defaultProps = {
|
|
|
9136
9153
|
size: '24'
|
|
9137
9154
|
};
|
|
9138
9155
|
|
|
9139
|
-
const _excluded$
|
|
9156
|
+
const _excluded$4d = ["color", "size"];
|
|
9157
|
+
|
|
9158
|
+
const Telegram = props => {
|
|
9159
|
+
const {
|
|
9160
|
+
color,
|
|
9161
|
+
size
|
|
9162
|
+
} = props,
|
|
9163
|
+
otherProps = _objectWithoutProperties(props, _excluded$4d);
|
|
9164
|
+
|
|
9165
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9166
|
+
width: size,
|
|
9167
|
+
height: size,
|
|
9168
|
+
viewBox: "0 0 24 24",
|
|
9169
|
+
fill: "none",
|
|
9170
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9171
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
9172
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
9173
|
+
fillRule: "evenodd",
|
|
9174
|
+
clipRule: "evenodd",
|
|
9175
|
+
d: "M3.16866 11.8311C8.30855 9.59178 11.736 8.11545 13.4509 7.40216C18.3473 5.36558 19.3647 5.01181 20.0279 5.00012C20.1737 4.99756 20.4998 5.0337 20.7111 5.20511C20.8894 5.34985 20.9385 5.54536 20.962 5.68259C20.9855 5.81981 21.0147 6.13242 20.9915 6.37668C20.7262 9.1646 19.578 15.9302 18.9939 19.0527C18.7468 20.3739 18.2601 20.8169 17.789 20.8603C16.7651 20.9545 15.9876 20.1837 14.9959 19.5336C13.4442 18.5164 12.5675 17.8832 11.0612 16.8905C9.32045 15.7434 10.4489 15.1129 11.441 14.0825C11.7006 13.8129 16.2119 9.70955 16.2992 9.33731C16.3101 9.29076 16.3202 9.11722 16.2171 9.02559C16.114 8.93396 15.9619 8.9653 15.8521 8.99022C15.6964 9.02554 13.2174 10.6641 8.41508 13.9058C7.71142 14.389 7.07407 14.6244 6.50303 14.6121C5.8735 14.5985 4.66254 14.2561 3.76231 13.9635C2.65815 13.6046 1.78058 13.4148 1.85699 12.8052C1.8968 12.4878 2.33402 12.163 3.16866 11.8311Z",
|
|
9176
|
+
fill: "#0088CC"
|
|
9177
|
+
}));
|
|
9178
|
+
};
|
|
9179
|
+
|
|
9180
|
+
Telegram.propTypes = {
|
|
9181
|
+
color: PropTypes.string,
|
|
9182
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
9183
|
+
};
|
|
9184
|
+
Telegram.defaultProps = {
|
|
9185
|
+
color: 'currentColor',
|
|
9186
|
+
size: '24'
|
|
9187
|
+
};
|
|
9188
|
+
|
|
9189
|
+
const _excluded$4e = ["color", "size"];
|
|
9140
9190
|
|
|
9141
9191
|
const IgLiveComments = props => {
|
|
9142
9192
|
const {
|
|
9143
9193
|
color,
|
|
9144
9194
|
size
|
|
9145
9195
|
} = props,
|
|
9146
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9196
|
+
otherProps = _objectWithoutProperties(props, _excluded$4e);
|
|
9147
9197
|
|
|
9148
9198
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9149
9199
|
width: size,
|
|
@@ -9178,14 +9228,14 @@ IgLiveComments.defaultProps = {
|
|
|
9178
9228
|
size: '24'
|
|
9179
9229
|
};
|
|
9180
9230
|
|
|
9181
|
-
const _excluded$
|
|
9231
|
+
const _excluded$4f = ["color", "size"];
|
|
9182
9232
|
|
|
9183
9233
|
const TelegramChannel2 = props => {
|
|
9184
9234
|
const {
|
|
9185
9235
|
color,
|
|
9186
9236
|
size
|
|
9187
9237
|
} = props,
|
|
9188
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9238
|
+
otherProps = _objectWithoutProperties(props, _excluded$4f);
|
|
9189
9239
|
|
|
9190
9240
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9191
9241
|
width: size,
|
|
@@ -9216,14 +9266,14 @@ TelegramChannel2.defaultProps = {
|
|
|
9216
9266
|
size: '24'
|
|
9217
9267
|
};
|
|
9218
9268
|
|
|
9219
|
-
const _excluded$
|
|
9269
|
+
const _excluded$4g = ["color", "size"];
|
|
9220
9270
|
|
|
9221
9271
|
const Create = props => {
|
|
9222
9272
|
const {
|
|
9223
9273
|
color,
|
|
9224
9274
|
size
|
|
9225
9275
|
} = props,
|
|
9226
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9276
|
+
otherProps = _objectWithoutProperties(props, _excluded$4g);
|
|
9227
9277
|
|
|
9228
9278
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9229
9279
|
width: size,
|
|
@@ -9250,14 +9300,14 @@ Create.defaultProps = {
|
|
|
9250
9300
|
size: '24'
|
|
9251
9301
|
};
|
|
9252
9302
|
|
|
9253
|
-
const _excluded$
|
|
9303
|
+
const _excluded$4h = ["color", "size"];
|
|
9254
9304
|
|
|
9255
9305
|
const GtCheckbox = props => {
|
|
9256
9306
|
const {
|
|
9257
9307
|
color,
|
|
9258
9308
|
size
|
|
9259
9309
|
} = props,
|
|
9260
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9310
|
+
otherProps = _objectWithoutProperties(props, _excluded$4h);
|
|
9261
9311
|
|
|
9262
9312
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9263
9313
|
width: size,
|
|
@@ -9284,14 +9334,14 @@ GtCheckbox.defaultProps = {
|
|
|
9284
9334
|
size: '24'
|
|
9285
9335
|
};
|
|
9286
9336
|
|
|
9287
|
-
const _excluded$
|
|
9337
|
+
const _excluded$4i = ["color", "size"];
|
|
9288
9338
|
|
|
9289
9339
|
const GtFbComment = props => {
|
|
9290
9340
|
const {
|
|
9291
9341
|
color,
|
|
9292
9342
|
size
|
|
9293
9343
|
} = props,
|
|
9294
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9344
|
+
otherProps = _objectWithoutProperties(props, _excluded$4i);
|
|
9295
9345
|
|
|
9296
9346
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9297
9347
|
width: size,
|
|
@@ -9315,14 +9365,14 @@ GtFbComment.defaultProps = {
|
|
|
9315
9365
|
size: '24'
|
|
9316
9366
|
};
|
|
9317
9367
|
|
|
9318
|
-
const _excluded$
|
|
9368
|
+
const _excluded$4j = ["color", "size"];
|
|
9319
9369
|
|
|
9320
9370
|
const GtAdsJson = props => {
|
|
9321
9371
|
const {
|
|
9322
9372
|
color,
|
|
9323
9373
|
size
|
|
9324
9374
|
} = props,
|
|
9325
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9375
|
+
otherProps = _objectWithoutProperties(props, _excluded$4j);
|
|
9326
9376
|
|
|
9327
9377
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9328
9378
|
width: size,
|
|
@@ -9355,14 +9405,14 @@ GtAdsJson.defaultProps = {
|
|
|
9355
9405
|
size: '24'
|
|
9356
9406
|
};
|
|
9357
9407
|
|
|
9358
|
-
const _excluded$
|
|
9408
|
+
const _excluded$4k = ["color", "size"];
|
|
9359
9409
|
|
|
9360
9410
|
const GtFbCode = props => {
|
|
9361
9411
|
const {
|
|
9362
9412
|
color,
|
|
9363
9413
|
size
|
|
9364
9414
|
} = props,
|
|
9365
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9415
|
+
otherProps = _objectWithoutProperties(props, _excluded$4k);
|
|
9366
9416
|
|
|
9367
9417
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9368
9418
|
width: size,
|
|
@@ -9391,14 +9441,14 @@ GtFbCode.defaultProps = {
|
|
|
9391
9441
|
size: '24'
|
|
9392
9442
|
};
|
|
9393
9443
|
|
|
9394
|
-
const _excluded$
|
|
9444
|
+
const _excluded$4l = ["color", "size"];
|
|
9395
9445
|
|
|
9396
9446
|
const GtRef = props => {
|
|
9397
9447
|
const {
|
|
9398
9448
|
color,
|
|
9399
9449
|
size
|
|
9400
9450
|
} = props,
|
|
9401
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9451
|
+
otherProps = _objectWithoutProperties(props, _excluded$4l);
|
|
9402
9452
|
|
|
9403
9453
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9404
9454
|
width: size,
|
|
@@ -9422,14 +9472,14 @@ GtRef.defaultProps = {
|
|
|
9422
9472
|
size: '24'
|
|
9423
9473
|
};
|
|
9424
9474
|
|
|
9425
|
-
const _excluded$
|
|
9475
|
+
const _excluded$4m = ["color", "size"];
|
|
9426
9476
|
|
|
9427
9477
|
const GtCustomerChat = props => {
|
|
9428
9478
|
const {
|
|
9429
9479
|
color,
|
|
9430
9480
|
size
|
|
9431
9481
|
} = props,
|
|
9432
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9482
|
+
otherProps = _objectWithoutProperties(props, _excluded$4m);
|
|
9433
9483
|
|
|
9434
9484
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9435
9485
|
width: size,
|
|
@@ -9458,14 +9508,14 @@ GtCustomerChat.defaultProps = {
|
|
|
9458
9508
|
size: '24'
|
|
9459
9509
|
};
|
|
9460
9510
|
|
|
9461
|
-
const _excluded$
|
|
9511
|
+
const _excluded$4n = ["color", "size"];
|
|
9462
9512
|
|
|
9463
9513
|
const GtTakeover = props => {
|
|
9464
9514
|
const {
|
|
9465
9515
|
color,
|
|
9466
9516
|
size
|
|
9467
9517
|
} = props,
|
|
9468
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9518
|
+
otherProps = _objectWithoutProperties(props, _excluded$4n);
|
|
9469
9519
|
|
|
9470
9520
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9471
9521
|
width: size,
|
|
@@ -9523,14 +9573,14 @@ GtTakeover.defaultProps = {
|
|
|
9523
9573
|
size: '24'
|
|
9524
9574
|
};
|
|
9525
9575
|
|
|
9526
|
-
const _excluded$
|
|
9576
|
+
const _excluded$4o = ["color", "size"];
|
|
9527
9577
|
|
|
9528
9578
|
const FlowPlaceholder = props => {
|
|
9529
9579
|
const {
|
|
9530
9580
|
color,
|
|
9531
9581
|
size
|
|
9532
9582
|
} = props,
|
|
9533
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9583
|
+
otherProps = _objectWithoutProperties(props, _excluded$4o);
|
|
9534
9584
|
|
|
9535
9585
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9536
9586
|
width: size,
|
|
@@ -9609,14 +9659,14 @@ FlowPlaceholder.defaultProps = {
|
|
|
9609
9659
|
size: '24'
|
|
9610
9660
|
};
|
|
9611
9661
|
|
|
9612
|
-
const _excluded$
|
|
9662
|
+
const _excluded$4p = ["color", "size"];
|
|
9613
9663
|
|
|
9614
9664
|
const AddStep = props => {
|
|
9615
9665
|
const {
|
|
9616
9666
|
color,
|
|
9617
9667
|
size
|
|
9618
9668
|
} = props,
|
|
9619
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9669
|
+
otherProps = _objectWithoutProperties(props, _excluded$4p);
|
|
9620
9670
|
|
|
9621
9671
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9622
9672
|
width: size,
|
|
@@ -9652,14 +9702,14 @@ AddStep.defaultProps = {
|
|
|
9652
9702
|
size: '24'
|
|
9653
9703
|
};
|
|
9654
9704
|
|
|
9655
|
-
const _excluded$
|
|
9705
|
+
const _excluded$4q = ["color", "size"];
|
|
9656
9706
|
|
|
9657
9707
|
const Stats = props => {
|
|
9658
9708
|
const {
|
|
9659
9709
|
color,
|
|
9660
9710
|
size
|
|
9661
9711
|
} = props,
|
|
9662
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9712
|
+
otherProps = _objectWithoutProperties(props, _excluded$4q);
|
|
9663
9713
|
|
|
9664
9714
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9665
9715
|
width: size,
|
|
@@ -9699,14 +9749,14 @@ Stats.defaultProps = {
|
|
|
9699
9749
|
size: '24'
|
|
9700
9750
|
};
|
|
9701
9751
|
|
|
9702
|
-
const _excluded$
|
|
9752
|
+
const _excluded$4r = ["color", "size"];
|
|
9703
9753
|
|
|
9704
9754
|
const Coursor = props => {
|
|
9705
9755
|
const {
|
|
9706
9756
|
color,
|
|
9707
9757
|
size
|
|
9708
9758
|
} = props,
|
|
9709
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9759
|
+
otherProps = _objectWithoutProperties(props, _excluded$4r);
|
|
9710
9760
|
|
|
9711
9761
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9712
9762
|
width: size,
|
|
@@ -9730,14 +9780,14 @@ Coursor.defaultProps = {
|
|
|
9730
9780
|
size: '24'
|
|
9731
9781
|
};
|
|
9732
9782
|
|
|
9733
|
-
const _excluded$
|
|
9783
|
+
const _excluded$4s = ["color", "size"];
|
|
9734
9784
|
|
|
9735
9785
|
const CoursorFullcolor = props => {
|
|
9736
9786
|
const {
|
|
9737
9787
|
color,
|
|
9738
9788
|
size
|
|
9739
9789
|
} = props,
|
|
9740
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9790
|
+
otherProps = _objectWithoutProperties(props, _excluded$4s);
|
|
9741
9791
|
|
|
9742
9792
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9743
9793
|
width: size,
|
|
@@ -9842,6 +9892,7 @@ exports.Calendar = Calendar;
|
|
|
9842
9892
|
exports.Camera = Camera;
|
|
9843
9893
|
exports.Cart = Cart;
|
|
9844
9894
|
exports.Cgt20 = Cgt20;
|
|
9895
|
+
exports.Check = Check;
|
|
9845
9896
|
exports.CheckCircle = CheckCircle;
|
|
9846
9897
|
exports.CheckboxDone = CheckboxDone;
|
|
9847
9898
|
exports.ChevronDown = ChevronDown;
|
|
@@ -10044,6 +10095,7 @@ exports.Stats = Stats;
|
|
|
10044
10095
|
exports.Stop = Stop;
|
|
10045
10096
|
exports.SystemField = SystemField;
|
|
10046
10097
|
exports.TableView = TableView;
|
|
10098
|
+
exports.Telegram = Telegram;
|
|
10047
10099
|
exports.TelegramChannel = TelegramChannel;
|
|
10048
10100
|
exports.TelegramChannel2 = TelegramChannel2;
|
|
10049
10101
|
exports.TemplateMediaBg = TemplateMediaBg;
|