@manychat/icons 4.19.0 → 4.21.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 +153 -68
- package/dist/index.js +154 -67
- package/package.json +1 -1
- package/umd/mcicons.js +150 -67
- package/umd/mcicons.min.js +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -296,6 +296,7 @@ export const Tap: Icon
|
|
|
296
296
|
export const NewOrphanMobile: Icon
|
|
297
297
|
export const Export: Icon
|
|
298
298
|
export const Ai: Icon
|
|
299
|
+
export const AiFilled: Icon
|
|
299
300
|
export const Bigcommerce: Icon
|
|
300
301
|
export const Woocommerce: Icon
|
|
301
302
|
export const Amazon: Icon
|
|
@@ -330,3 +331,4 @@ export const ArrowDownRight: Icon
|
|
|
330
331
|
export const Unread: Icon
|
|
331
332
|
export const Privacy: Icon
|
|
332
333
|
export const Location: Icon
|
|
334
|
+
export const TikTok: Icon
|
package/dist/index.es.js
CHANGED
|
@@ -9988,13 +9988,49 @@ Ai.defaultProps = {
|
|
|
9988
9988
|
|
|
9989
9989
|
const _excluded$4w = ["color", "size"];
|
|
9990
9990
|
|
|
9991
|
-
const
|
|
9991
|
+
const AiFilled = props => {
|
|
9992
9992
|
const {
|
|
9993
9993
|
color,
|
|
9994
9994
|
size
|
|
9995
9995
|
} = props,
|
|
9996
9996
|
otherProps = _objectWithoutProperties(props, _excluded$4w);
|
|
9997
9997
|
|
|
9998
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9999
|
+
width: size,
|
|
10000
|
+
height: size,
|
|
10001
|
+
viewBox: "0 0 24 24",
|
|
10002
|
+
fill: "none",
|
|
10003
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10004
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
10005
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
10006
|
+
d: "M8.38068 9.39744L9.32639 12.6559H7.43498L8.38068 9.39744Z",
|
|
10007
|
+
fill: color
|
|
10008
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
10009
|
+
fillRule: "evenodd",
|
|
10010
|
+
clipRule: "evenodd",
|
|
10011
|
+
d: "M1 5C1 2.79086 2.79086 1 5 1H19C21.2091 1 23 2.79086 23 5V19C23 21.2091 21.2091 23 19 23H5C2.79086 23 1 21.2091 1 19V5ZM11.8561 16.1999L9.20003 7.63989H7.58492L4.95398 16.1999H6.41888L7.06688 13.9679H9.71849L10.3665 16.1999H11.8561ZM13 16.1999V14.8639H14.896V8.97589H13V7.63989H18.2V8.97589H16.304V14.8639H18.2V16.1999H13Z",
|
|
10012
|
+
fill: color
|
|
10013
|
+
}));
|
|
10014
|
+
};
|
|
10015
|
+
|
|
10016
|
+
AiFilled.propTypes = {
|
|
10017
|
+
color: PropTypes.string,
|
|
10018
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
10019
|
+
};
|
|
10020
|
+
AiFilled.defaultProps = {
|
|
10021
|
+
color: 'currentColor',
|
|
10022
|
+
size: '24'
|
|
10023
|
+
};
|
|
10024
|
+
|
|
10025
|
+
const _excluded$4x = ["color", "size"];
|
|
10026
|
+
|
|
10027
|
+
const Bigcommerce = props => {
|
|
10028
|
+
const {
|
|
10029
|
+
color,
|
|
10030
|
+
size
|
|
10031
|
+
} = props,
|
|
10032
|
+
otherProps = _objectWithoutProperties(props, _excluded$4x);
|
|
10033
|
+
|
|
9998
10034
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9999
10035
|
width: size,
|
|
10000
10036
|
height: size,
|
|
@@ -10017,14 +10053,14 @@ Bigcommerce.defaultProps = {
|
|
|
10017
10053
|
size: '24'
|
|
10018
10054
|
};
|
|
10019
10055
|
|
|
10020
|
-
const _excluded$
|
|
10056
|
+
const _excluded$4y = ["color", "size"];
|
|
10021
10057
|
|
|
10022
10058
|
const Woocommerce = props => {
|
|
10023
10059
|
const {
|
|
10024
10060
|
color,
|
|
10025
10061
|
size
|
|
10026
10062
|
} = props,
|
|
10027
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10063
|
+
otherProps = _objectWithoutProperties(props, _excluded$4y);
|
|
10028
10064
|
|
|
10029
10065
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10030
10066
|
width: size,
|
|
@@ -10051,14 +10087,14 @@ Woocommerce.defaultProps = {
|
|
|
10051
10087
|
size: '24'
|
|
10052
10088
|
};
|
|
10053
10089
|
|
|
10054
|
-
const _excluded$
|
|
10090
|
+
const _excluded$4z = ["color", "size"];
|
|
10055
10091
|
|
|
10056
10092
|
const Amazon = props => {
|
|
10057
10093
|
const {
|
|
10058
10094
|
color,
|
|
10059
10095
|
size
|
|
10060
10096
|
} = props,
|
|
10061
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10097
|
+
otherProps = _objectWithoutProperties(props, _excluded$4z);
|
|
10062
10098
|
|
|
10063
10099
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10064
10100
|
width: size,
|
|
@@ -10085,14 +10121,14 @@ Amazon.defaultProps = {
|
|
|
10085
10121
|
size: '24'
|
|
10086
10122
|
};
|
|
10087
10123
|
|
|
10088
|
-
const _excluded$
|
|
10124
|
+
const _excluded$4A = ["color", "size"];
|
|
10089
10125
|
|
|
10090
10126
|
const Hotmart = props => {
|
|
10091
10127
|
const {
|
|
10092
10128
|
color,
|
|
10093
10129
|
size
|
|
10094
10130
|
} = props,
|
|
10095
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10131
|
+
otherProps = _objectWithoutProperties(props, _excluded$4A);
|
|
10096
10132
|
|
|
10097
10133
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10098
10134
|
width: size,
|
|
@@ -10116,14 +10152,14 @@ Hotmart.defaultProps = {
|
|
|
10116
10152
|
size: '24'
|
|
10117
10153
|
};
|
|
10118
10154
|
|
|
10119
|
-
const _excluded$
|
|
10155
|
+
const _excluded$4B = ["color", "size"];
|
|
10120
10156
|
|
|
10121
10157
|
const Creator = props => {
|
|
10122
10158
|
const {
|
|
10123
10159
|
color,
|
|
10124
10160
|
size
|
|
10125
10161
|
} = props,
|
|
10126
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10162
|
+
otherProps = _objectWithoutProperties(props, _excluded$4B);
|
|
10127
10163
|
|
|
10128
10164
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10129
10165
|
width: size,
|
|
@@ -10147,14 +10183,14 @@ Creator.defaultProps = {
|
|
|
10147
10183
|
size: '24'
|
|
10148
10184
|
};
|
|
10149
10185
|
|
|
10150
|
-
const _excluded$
|
|
10186
|
+
const _excluded$4C = ["color", "size"];
|
|
10151
10187
|
|
|
10152
10188
|
const InstagramDmList = props => {
|
|
10153
10189
|
const {
|
|
10154
10190
|
color,
|
|
10155
10191
|
size
|
|
10156
10192
|
} = props,
|
|
10157
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10193
|
+
otherProps = _objectWithoutProperties(props, _excluded$4C);
|
|
10158
10194
|
|
|
10159
10195
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10160
10196
|
width: size,
|
|
@@ -10189,14 +10225,14 @@ InstagramDmList.defaultProps = {
|
|
|
10189
10225
|
size: '24'
|
|
10190
10226
|
};
|
|
10191
10227
|
|
|
10192
|
-
const _excluded$
|
|
10228
|
+
const _excluded$4D = ["color", "size"];
|
|
10193
10229
|
|
|
10194
10230
|
const RealEstate = props => {
|
|
10195
10231
|
const {
|
|
10196
10232
|
color,
|
|
10197
10233
|
size
|
|
10198
10234
|
} = props,
|
|
10199
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10235
|
+
otherProps = _objectWithoutProperties(props, _excluded$4D);
|
|
10200
10236
|
|
|
10201
10237
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10202
10238
|
width: size,
|
|
@@ -10220,14 +10256,14 @@ RealEstate.defaultProps = {
|
|
|
10220
10256
|
size: '24'
|
|
10221
10257
|
};
|
|
10222
10258
|
|
|
10223
|
-
const _excluded$
|
|
10259
|
+
const _excluded$4E = ["color", "size"];
|
|
10224
10260
|
|
|
10225
10261
|
const Basics = props => {
|
|
10226
10262
|
const {
|
|
10227
10263
|
color,
|
|
10228
10264
|
size
|
|
10229
10265
|
} = props,
|
|
10230
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10266
|
+
otherProps = _objectWithoutProperties(props, _excluded$4E);
|
|
10231
10267
|
|
|
10232
10268
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10233
10269
|
width: size,
|
|
@@ -10263,14 +10299,14 @@ Basics.defaultProps = {
|
|
|
10263
10299
|
size: '24'
|
|
10264
10300
|
};
|
|
10265
10301
|
|
|
10266
|
-
const _excluded$
|
|
10302
|
+
const _excluded$4F = ["color", "size"];
|
|
10267
10303
|
|
|
10268
10304
|
const Fitness = props => {
|
|
10269
10305
|
const {
|
|
10270
10306
|
color,
|
|
10271
10307
|
size
|
|
10272
10308
|
} = props,
|
|
10273
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10309
|
+
otherProps = _objectWithoutProperties(props, _excluded$4F);
|
|
10274
10310
|
|
|
10275
10311
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10276
10312
|
width: size,
|
|
@@ -10294,14 +10330,14 @@ Fitness.defaultProps = {
|
|
|
10294
10330
|
size: '24'
|
|
10295
10331
|
};
|
|
10296
10332
|
|
|
10297
|
-
const _excluded$
|
|
10333
|
+
const _excluded$4G = ["color", "size"];
|
|
10298
10334
|
|
|
10299
10335
|
const Hotel = props => {
|
|
10300
10336
|
const {
|
|
10301
10337
|
color,
|
|
10302
10338
|
size
|
|
10303
10339
|
} = props,
|
|
10304
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10340
|
+
otherProps = _objectWithoutProperties(props, _excluded$4G);
|
|
10305
10341
|
|
|
10306
10342
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10307
10343
|
width: size,
|
|
@@ -10325,14 +10361,14 @@ Hotel.defaultProps = {
|
|
|
10325
10361
|
size: '24'
|
|
10326
10362
|
};
|
|
10327
10363
|
|
|
10328
|
-
const _excluded$
|
|
10364
|
+
const _excluded$4H = ["color", "size"];
|
|
10329
10365
|
|
|
10330
10366
|
const Organization = props => {
|
|
10331
10367
|
const {
|
|
10332
10368
|
color,
|
|
10333
10369
|
size
|
|
10334
10370
|
} = props,
|
|
10335
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10371
|
+
otherProps = _objectWithoutProperties(props, _excluded$4H);
|
|
10336
10372
|
|
|
10337
10373
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10338
10374
|
width: size,
|
|
@@ -10356,14 +10392,14 @@ Organization.defaultProps = {
|
|
|
10356
10392
|
size: '24'
|
|
10357
10393
|
};
|
|
10358
10394
|
|
|
10359
|
-
const _excluded$
|
|
10395
|
+
const _excluded$4I = ["color", "size"];
|
|
10360
10396
|
|
|
10361
10397
|
const ProfessionalConsulting = props => {
|
|
10362
10398
|
const {
|
|
10363
10399
|
color,
|
|
10364
10400
|
size
|
|
10365
10401
|
} = props,
|
|
10366
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10402
|
+
otherProps = _objectWithoutProperties(props, _excluded$4I);
|
|
10367
10403
|
|
|
10368
10404
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10369
10405
|
width: size,
|
|
@@ -10387,14 +10423,14 @@ ProfessionalConsulting.defaultProps = {
|
|
|
10387
10423
|
size: '24'
|
|
10388
10424
|
};
|
|
10389
10425
|
|
|
10390
|
-
const _excluded$
|
|
10426
|
+
const _excluded$4J = ["color", "size"];
|
|
10391
10427
|
|
|
10392
10428
|
const MessengerList = props => {
|
|
10393
10429
|
const {
|
|
10394
10430
|
color,
|
|
10395
10431
|
size
|
|
10396
10432
|
} = props,
|
|
10397
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10433
|
+
otherProps = _objectWithoutProperties(props, _excluded$4J);
|
|
10398
10434
|
|
|
10399
10435
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10400
10436
|
width: size,
|
|
@@ -10424,14 +10460,14 @@ MessengerList.defaultProps = {
|
|
|
10424
10460
|
size: '24'
|
|
10425
10461
|
};
|
|
10426
10462
|
|
|
10427
|
-
const _excluded$
|
|
10463
|
+
const _excluded$4K = ["color", "size"];
|
|
10428
10464
|
|
|
10429
10465
|
const Integromat = props => {
|
|
10430
10466
|
const {
|
|
10431
10467
|
color,
|
|
10432
10468
|
size
|
|
10433
10469
|
} = props,
|
|
10434
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10470
|
+
otherProps = _objectWithoutProperties(props, _excluded$4K);
|
|
10435
10471
|
|
|
10436
10472
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10437
10473
|
width: size,
|
|
@@ -10455,14 +10491,14 @@ Integromat.defaultProps = {
|
|
|
10455
10491
|
size: '24'
|
|
10456
10492
|
};
|
|
10457
10493
|
|
|
10458
|
-
const _excluded$
|
|
10494
|
+
const _excluded$4L = ["color", "size"];
|
|
10459
10495
|
|
|
10460
10496
|
const Hubspot = props => {
|
|
10461
10497
|
const {
|
|
10462
10498
|
color,
|
|
10463
10499
|
size
|
|
10464
10500
|
} = props,
|
|
10465
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10501
|
+
otherProps = _objectWithoutProperties(props, _excluded$4L);
|
|
10466
10502
|
|
|
10467
10503
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10468
10504
|
width: size,
|
|
@@ -10486,14 +10522,14 @@ Hubspot.defaultProps = {
|
|
|
10486
10522
|
size: '24'
|
|
10487
10523
|
};
|
|
10488
10524
|
|
|
10489
|
-
const _excluded$
|
|
10525
|
+
const _excluded$4M = ["color", "size"];
|
|
10490
10526
|
|
|
10491
10527
|
const Klaviyo = props => {
|
|
10492
10528
|
const {
|
|
10493
10529
|
color,
|
|
10494
10530
|
size
|
|
10495
10531
|
} = props,
|
|
10496
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10532
|
+
otherProps = _objectWithoutProperties(props, _excluded$4M);
|
|
10497
10533
|
|
|
10498
10534
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10499
10535
|
width: size,
|
|
@@ -10541,14 +10577,14 @@ Klaviyo.defaultProps = {
|
|
|
10541
10577
|
size: '24'
|
|
10542
10578
|
};
|
|
10543
10579
|
|
|
10544
|
-
const _excluded$
|
|
10580
|
+
const _excluded$4N = ["color", "size"];
|
|
10545
10581
|
|
|
10546
10582
|
const Activecampaign = props => {
|
|
10547
10583
|
const {
|
|
10548
10584
|
color,
|
|
10549
10585
|
size
|
|
10550
10586
|
} = props,
|
|
10551
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10587
|
+
otherProps = _objectWithoutProperties(props, _excluded$4N);
|
|
10552
10588
|
|
|
10553
10589
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10554
10590
|
width: size,
|
|
@@ -10574,14 +10610,14 @@ Activecampaign.defaultProps = {
|
|
|
10574
10610
|
size: '24'
|
|
10575
10611
|
};
|
|
10576
10612
|
|
|
10577
|
-
const _excluded$
|
|
10613
|
+
const _excluded$4O = ["color", "size"];
|
|
10578
10614
|
|
|
10579
10615
|
const ChatGpt = props => {
|
|
10580
10616
|
const {
|
|
10581
10617
|
color,
|
|
10582
10618
|
size
|
|
10583
10619
|
} = props,
|
|
10584
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10620
|
+
otherProps = _objectWithoutProperties(props, _excluded$4O);
|
|
10585
10621
|
|
|
10586
10622
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10587
10623
|
width: size,
|
|
@@ -10605,14 +10641,14 @@ ChatGpt.defaultProps = {
|
|
|
10605
10641
|
size: '24'
|
|
10606
10642
|
};
|
|
10607
10643
|
|
|
10608
|
-
const _excluded$
|
|
10644
|
+
const _excluded$4P = ["color", "size"];
|
|
10609
10645
|
|
|
10610
10646
|
const MailChimp = props => {
|
|
10611
10647
|
const {
|
|
10612
10648
|
color,
|
|
10613
10649
|
size
|
|
10614
10650
|
} = props,
|
|
10615
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10651
|
+
otherProps = _objectWithoutProperties(props, _excluded$4P);
|
|
10616
10652
|
|
|
10617
10653
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10618
10654
|
width: size,
|
|
@@ -10654,14 +10690,14 @@ MailChimp.defaultProps = {
|
|
|
10654
10690
|
size: '24'
|
|
10655
10691
|
};
|
|
10656
10692
|
|
|
10657
|
-
const _excluded$
|
|
10693
|
+
const _excluded$4Q = ["color", "size"];
|
|
10658
10694
|
|
|
10659
10695
|
const ConvertKit = props => {
|
|
10660
10696
|
const {
|
|
10661
10697
|
color,
|
|
10662
10698
|
size
|
|
10663
10699
|
} = props,
|
|
10664
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10700
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Q);
|
|
10665
10701
|
|
|
10666
10702
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10667
10703
|
width: size,
|
|
@@ -10685,14 +10721,14 @@ ConvertKit.defaultProps = {
|
|
|
10685
10721
|
size: '24'
|
|
10686
10722
|
};
|
|
10687
10723
|
|
|
10688
|
-
const _excluded$
|
|
10724
|
+
const _excluded$4R = ["color", "size"];
|
|
10689
10725
|
|
|
10690
10726
|
const GoogleSheets = props => {
|
|
10691
10727
|
const {
|
|
10692
10728
|
color,
|
|
10693
10729
|
size
|
|
10694
10730
|
} = props,
|
|
10695
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10731
|
+
otherProps = _objectWithoutProperties(props, _excluded$4R);
|
|
10696
10732
|
|
|
10697
10733
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10698
10734
|
width: size,
|
|
@@ -10727,14 +10763,14 @@ GoogleSheets.defaultProps = {
|
|
|
10727
10763
|
size: '24'
|
|
10728
10764
|
};
|
|
10729
10765
|
|
|
10730
|
-
const _excluded$
|
|
10766
|
+
const _excluded$4S = ["color", "size"];
|
|
10731
10767
|
|
|
10732
10768
|
const Salesforce = props => {
|
|
10733
10769
|
const {
|
|
10734
10770
|
color,
|
|
10735
10771
|
size
|
|
10736
10772
|
} = props,
|
|
10737
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10773
|
+
otherProps = _objectWithoutProperties(props, _excluded$4S);
|
|
10738
10774
|
|
|
10739
10775
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10740
10776
|
width: size,
|
|
@@ -10767,14 +10803,14 @@ Salesforce.defaultProps = {
|
|
|
10767
10803
|
size: '24'
|
|
10768
10804
|
};
|
|
10769
10805
|
|
|
10770
|
-
const _excluded$
|
|
10806
|
+
const _excluded$4T = ["color", "size"];
|
|
10771
10807
|
|
|
10772
10808
|
const Pipedrive = props => {
|
|
10773
10809
|
const {
|
|
10774
10810
|
color,
|
|
10775
10811
|
size
|
|
10776
10812
|
} = props,
|
|
10777
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10813
|
+
otherProps = _objectWithoutProperties(props, _excluded$4T);
|
|
10778
10814
|
|
|
10779
10815
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10780
10816
|
width: size,
|
|
@@ -10801,14 +10837,14 @@ Pipedrive.defaultProps = {
|
|
|
10801
10837
|
size: '24'
|
|
10802
10838
|
};
|
|
10803
10839
|
|
|
10804
|
-
const _excluded$
|
|
10840
|
+
const _excluded$4U = ["color", "size"];
|
|
10805
10841
|
|
|
10806
10842
|
const Wiseagent = props => {
|
|
10807
10843
|
const {
|
|
10808
10844
|
color,
|
|
10809
10845
|
size
|
|
10810
10846
|
} = props,
|
|
10811
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10847
|
+
otherProps = _objectWithoutProperties(props, _excluded$4U);
|
|
10812
10848
|
|
|
10813
10849
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10814
10850
|
width: size,
|
|
@@ -10838,14 +10874,14 @@ Wiseagent.defaultProps = {
|
|
|
10838
10874
|
size: '24'
|
|
10839
10875
|
};
|
|
10840
10876
|
|
|
10841
|
-
const _excluded$
|
|
10877
|
+
const _excluded$4V = ["color", "size"];
|
|
10842
10878
|
|
|
10843
10879
|
const Flodesk = props => {
|
|
10844
10880
|
const {
|
|
10845
10881
|
color,
|
|
10846
10882
|
size
|
|
10847
10883
|
} = props,
|
|
10848
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10884
|
+
otherProps = _objectWithoutProperties(props, _excluded$4V);
|
|
10849
10885
|
|
|
10850
10886
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10851
10887
|
width: size,
|
|
@@ -10869,14 +10905,14 @@ Flodesk.defaultProps = {
|
|
|
10869
10905
|
size: '24'
|
|
10870
10906
|
};
|
|
10871
10907
|
|
|
10872
|
-
const _excluded$
|
|
10908
|
+
const _excluded$4W = ["color", "size"];
|
|
10873
10909
|
|
|
10874
10910
|
const Apptivo = props => {
|
|
10875
10911
|
const {
|
|
10876
10912
|
color,
|
|
10877
10913
|
size
|
|
10878
10914
|
} = props,
|
|
10879
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10915
|
+
otherProps = _objectWithoutProperties(props, _excluded$4W);
|
|
10880
10916
|
|
|
10881
10917
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10882
10918
|
width: size,
|
|
@@ -10903,14 +10939,14 @@ Apptivo.defaultProps = {
|
|
|
10903
10939
|
size: '24'
|
|
10904
10940
|
};
|
|
10905
10941
|
|
|
10906
|
-
const _excluded$
|
|
10942
|
+
const _excluded$4X = ["color", "size"];
|
|
10907
10943
|
|
|
10908
10944
|
const Zillow = props => {
|
|
10909
10945
|
const {
|
|
10910
10946
|
color,
|
|
10911
10947
|
size
|
|
10912
10948
|
} = props,
|
|
10913
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10949
|
+
otherProps = _objectWithoutProperties(props, _excluded$4X);
|
|
10914
10950
|
|
|
10915
10951
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10916
10952
|
width: size,
|
|
@@ -10936,14 +10972,14 @@ Zillow.defaultProps = {
|
|
|
10936
10972
|
size: '24'
|
|
10937
10973
|
};
|
|
10938
10974
|
|
|
10939
|
-
const _excluded$
|
|
10975
|
+
const _excluded$4Y = ["color", "size"];
|
|
10940
10976
|
|
|
10941
10977
|
const Canva = props => {
|
|
10942
10978
|
const {
|
|
10943
10979
|
color,
|
|
10944
10980
|
size
|
|
10945
10981
|
} = props,
|
|
10946
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10982
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Y);
|
|
10947
10983
|
|
|
10948
10984
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10949
10985
|
width: size,
|
|
@@ -11038,14 +11074,14 @@ Canva.defaultProps = {
|
|
|
11038
11074
|
size: '24'
|
|
11039
11075
|
};
|
|
11040
11076
|
|
|
11041
|
-
const _excluded$
|
|
11077
|
+
const _excluded$4Z = ["color", "size"];
|
|
11042
11078
|
|
|
11043
11079
|
const Kajabi = props => {
|
|
11044
11080
|
const {
|
|
11045
11081
|
color,
|
|
11046
11082
|
size
|
|
11047
11083
|
} = props,
|
|
11048
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11084
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Z);
|
|
11049
11085
|
|
|
11050
11086
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11051
11087
|
width: size,
|
|
@@ -11076,14 +11112,14 @@ Kajabi.defaultProps = {
|
|
|
11076
11112
|
size: '24'
|
|
11077
11113
|
};
|
|
11078
11114
|
|
|
11079
|
-
const _excluded$
|
|
11115
|
+
const _excluded$4_ = ["color", "size"];
|
|
11080
11116
|
|
|
11081
11117
|
const Magento = props => {
|
|
11082
11118
|
const {
|
|
11083
11119
|
color,
|
|
11084
11120
|
size
|
|
11085
11121
|
} = props,
|
|
11086
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11122
|
+
otherProps = _objectWithoutProperties(props, _excluded$4_);
|
|
11087
11123
|
|
|
11088
11124
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11089
11125
|
width: size,
|
|
@@ -11107,14 +11143,14 @@ Magento.defaultProps = {
|
|
|
11107
11143
|
size: '24'
|
|
11108
11144
|
};
|
|
11109
11145
|
|
|
11110
|
-
const _excluded$
|
|
11146
|
+
const _excluded$4$ = ["color", "size"];
|
|
11111
11147
|
|
|
11112
11148
|
const ArrowDownRight = props => {
|
|
11113
11149
|
const {
|
|
11114
11150
|
color,
|
|
11115
11151
|
size
|
|
11116
11152
|
} = props,
|
|
11117
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11153
|
+
otherProps = _objectWithoutProperties(props, _excluded$4$);
|
|
11118
11154
|
|
|
11119
11155
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11120
11156
|
width: size,
|
|
@@ -11141,14 +11177,14 @@ ArrowDownRight.defaultProps = {
|
|
|
11141
11177
|
size: '24'
|
|
11142
11178
|
};
|
|
11143
11179
|
|
|
11144
|
-
const _excluded$
|
|
11180
|
+
const _excluded$50 = ["color", "size"];
|
|
11145
11181
|
|
|
11146
11182
|
const Unread = props => {
|
|
11147
11183
|
const {
|
|
11148
11184
|
color,
|
|
11149
11185
|
size
|
|
11150
11186
|
} = props,
|
|
11151
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11187
|
+
otherProps = _objectWithoutProperties(props, _excluded$50);
|
|
11152
11188
|
|
|
11153
11189
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11154
11190
|
width: size,
|
|
@@ -11174,14 +11210,14 @@ Unread.defaultProps = {
|
|
|
11174
11210
|
size: '24'
|
|
11175
11211
|
};
|
|
11176
11212
|
|
|
11177
|
-
const _excluded$
|
|
11213
|
+
const _excluded$51 = ["color", "size"];
|
|
11178
11214
|
|
|
11179
11215
|
const Privacy = props => {
|
|
11180
11216
|
const {
|
|
11181
11217
|
color,
|
|
11182
11218
|
size
|
|
11183
11219
|
} = props,
|
|
11184
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11220
|
+
otherProps = _objectWithoutProperties(props, _excluded$51);
|
|
11185
11221
|
|
|
11186
11222
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11187
11223
|
width: size,
|
|
@@ -11211,14 +11247,14 @@ Privacy.defaultProps = {
|
|
|
11211
11247
|
size: '24'
|
|
11212
11248
|
};
|
|
11213
11249
|
|
|
11214
|
-
const _excluded$
|
|
11250
|
+
const _excluded$52 = ["color", "size"];
|
|
11215
11251
|
|
|
11216
11252
|
const Location = props => {
|
|
11217
11253
|
const {
|
|
11218
11254
|
color,
|
|
11219
11255
|
size
|
|
11220
11256
|
} = props,
|
|
11221
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11257
|
+
otherProps = _objectWithoutProperties(props, _excluded$52);
|
|
11222
11258
|
|
|
11223
11259
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11224
11260
|
width: size,
|
|
@@ -11249,4 +11285,53 @@ Location.defaultProps = {
|
|
|
11249
11285
|
size: '24'
|
|
11250
11286
|
};
|
|
11251
11287
|
|
|
11252
|
-
|
|
11288
|
+
const _excluded$53 = ["color", "size"];
|
|
11289
|
+
|
|
11290
|
+
const TikTok = props => {
|
|
11291
|
+
const {
|
|
11292
|
+
color,
|
|
11293
|
+
size
|
|
11294
|
+
} = props,
|
|
11295
|
+
otherProps = _objectWithoutProperties(props, _excluded$53);
|
|
11296
|
+
|
|
11297
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11298
|
+
width: size,
|
|
11299
|
+
height: size,
|
|
11300
|
+
viewBox: "0 0 24 24",
|
|
11301
|
+
fill: "none",
|
|
11302
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11303
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11304
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11305
|
+
d: "M10.2271 9.78853V8.94867C9.94592 8.91045 9.66027 8.88648 9.36881 8.88648C5.85699 8.88648 3 11.7436 3 15.2554C3 17.4101 4.07656 19.3169 5.71891 20.47C4.6589 19.332 4.02943 17.8076 4.02943 16.1334C4.02943 12.672 6.78467 9.86895 10.2271 9.78853Z",
|
|
11306
|
+
fill: "#25F4EE"
|
|
11307
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11308
|
+
d: "M10.3774 19.0631C11.9442 19.0631 13.2445 17.7957 13.3026 16.2428L13.3073 2.39686L15.8193 2.3756C15.7666 2.09067 15.7376 1.79752 15.7376 1.49756H12.2775L12.2719 15.3648C12.2137 16.9177 10.9356 18.164 9.36883 18.164C8.88184 18.164 8.4233 18.0423 8.01962 17.8298C8.54827 18.5625 9.40698 19.0631 10.3774 19.0631Z",
|
|
11309
|
+
fill: "#25F4EE"
|
|
11310
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11311
|
+
d: "M20.5516 7.10543V6.31146C19.5851 6.31146 18.685 6.02416 17.9301 5.5319C18.6023 6.30396 19.5153 6.88358 20.5516 7.10543Z",
|
|
11312
|
+
fill: "#25F4EE"
|
|
11313
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11314
|
+
d: "M17.9301 5.5319C17.1937 4.68613 16.7462 3.58248 16.7462 2.37561L15.8193 2.3756C16.0634 3.69398 16.8459 4.82503 17.9301 5.5319Z",
|
|
11315
|
+
fill: "#FE2C55"
|
|
11316
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11317
|
+
d: "M9.36881 12.3467C7.76505 12.3467 6.46019 13.6515 6.46019 15.2554C6.46019 16.3722 7.0938 17.3426 8.01962 17.8298C7.6746 17.3517 7.46877 16.7668 7.46877 16.1334C7.46877 14.5296 8.77367 13.2247 10.3774 13.2247C10.6768 13.2247 10.964 13.2741 11.2357 13.3592V9.82672C10.9545 9.78847 10.6689 9.76453 10.3774 9.76453C10.327 9.76453 10.2772 9.76714 10.2271 9.76831V12.4811C9.95539 12.3961 9.66819 12.3467 9.36881 12.3467Z",
|
|
11318
|
+
fill: "#FE2C55"
|
|
11319
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11320
|
+
d: "M20.5516 7.08233V9.77163C18.7574 9.77163 17.0948 9.19764 15.7377 8.22352V15.2554C15.7377 18.7672 12.8806 21.6242 9.36882 21.6242C8.0117 21.6242 6.75337 21.1962 5.71891 20.47C6.88243 21.719 8.53979 22.5022 10.3774 22.5022C13.8892 22.5022 16.7462 19.6452 16.7462 16.1334V9.1016C18.1034 10.0756 19.766 10.6497 21.5602 10.6497V7.18945C21.2143 7.18945 20.8771 7.15199 20.5516 7.08233Z",
|
|
11321
|
+
fill: "#FE2C55"
|
|
11322
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
11323
|
+
d: "M15.7377 15.2554V8.22352C17.0948 9.19761 18.7575 9.77163 20.5516 9.77163V7.08233C19.5153 6.86049 18.6023 6.30392 17.9301 5.5319C16.8459 4.82503 16.0634 3.69398 15.8193 2.3756L13.286 2.37561L13.2805 16.2429C13.2223 17.7957 11.9442 19.0421 10.3774 19.0421C9.40699 19.0421 8.54828 18.5625 8.0196 17.8298C7.09378 17.3426 6.46019 16.3722 6.46019 15.2554C6.46019 13.6515 7.76505 12.3467 9.36881 12.3467C9.66822 12.3467 9.95538 12.3961 10.2271 12.4812V9.76835C6.78466 9.84877 4.00861 12.6721 4.00861 16.1334C4.00861 17.8076 4.6589 19.332 5.71891 20.4699C6.7534 21.1962 8.0117 21.6242 9.36882 21.6242C12.8806 21.6242 15.7377 18.7672 15.7377 15.2554Z",
|
|
11324
|
+
fill: "black"
|
|
11325
|
+
}));
|
|
11326
|
+
};
|
|
11327
|
+
|
|
11328
|
+
TikTok.propTypes = {
|
|
11329
|
+
color: PropTypes.string,
|
|
11330
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
11331
|
+
};
|
|
11332
|
+
TikTok.defaultProps = {
|
|
11333
|
+
color: 'currentColor',
|
|
11334
|
+
size: '24'
|
|
11335
|
+
};
|
|
11336
|
+
|
|
11337
|
+
export { Action, ActionMarkConversationAsDone, Activecampaign, AddCircle, AddTag, Ads, AdsAd, AdsAdSet, Ai, AiFilled, AlignCenter, AlignLeft, AlignRight, AlignWide, All, Amazon, Analytics, Apple, Apptivo, Archive, ArrowDown, ArrowDownRight, ArrowDrag, ArrowDropDown, ArrowDropUp, ArrowLeft, ArrowRight, ArrowUp, Assign, AssignGroup, Attach, Attention, Audience, Audio, Automation, Basics, Bigcommerce, Bold, Book, Bot, BotRemove, Broadcasting, BuilderAudio, BuilderCard, BuilderGallery, BuilderInput, BuilderList, BuilderText, ButtonEmailBlock, Calendar, Camera, CannedResponse, Canva, Cart, Cgt20, ChatGpt, CheckCircle, CheckboxDone, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ClearMobile, Close, Cloud, CloudDownload, CloudError, CloudUpload, Community, Condition, ConvertChannels, ConvertKit, Copy, CopyToAnotherFlow, Coupon, Create, Creator, CreditCard, CufArray, CufBoolean, CufEnum, CufNoIcon, CufNumber, CufText, CustomField, CustomFieldRemove, Dashboard, Data, DefaultReply, Delay, Delete, DeleteForever, DeleteTag, DoubleChevrotBack, DoubleChevrotCollapse, DoubleChevrotExpand, DoubleChevrotForward, DoubleTick, DragConnector, DragItem, DuplicateSms, Edit, EmailChannel, ExitFullscreen, Export, Facebook, FacebookMessenger, Faq, FbChat, Female, Filter, Fitness, Flodesk, Flow, Folder, FolderAdd, FolderAdsCampaign, FolderOpen, Fullscreen, GoToFlow, Google, GoogleSheets, GrowthTools, GtAdsJson, GtBar, GtBox, GtButton, GtCheckbox, GtCustomerChat, GtFbCode, GtFbComment, GtLanding, GtModal, GtPageTakeover, GtRef, GtSlideIn, GtTakeover, GuestChatChannel, HeadlineBlockEmail, Health, Help, Hide, Home, Hotel, Hotmart, Hubspot, Id, IgLiveComments, Image, Inbox, IncreaseEngagement, Info, InstagramChannel, InstagramChannel3, InstagramDmList, Integromat, Italic, Kajabi, Keyboard, Keywords, Klaviyo, Link, LiveChat, Location, Logout, Magento, MagicWand, Magnet, MailChimp, Male, Mention, Menu, MessageBack, MessageOpen, MessageTemplates, Messenger, MessengerChannel, MessengerList, Mic, Minus, MoreChannels, MoreHor, MoreVert, MosaicView, MoveTo, Nationality, NewCuFs, NewMessage, NewOrphanMobile, NodeAdd, Note, Notification, NotificationMute, OmnichannelWidget, Options, Organization, 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, Pipedrive, Play, Plus, Popular, PopularFilled, Privacy, ProfessionalConsulting, Protect, PublicChangelog, Publish, Qr, Question, RealEstate, Redo, Reels, Retry, Rules, Salesforce, 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, Stop, StopRecord, SystemField, TableView, Tap, Telegram, TelegramChannel, TelegramChannel2, TemplateMediaBg, TemplateStore, TemplateTextMedia, Templates, Text, ThumbDown, ThumbUp, Tick, Ticket, TikTok, Time, TimeAdd, Transgender, TriggerFbAds, TriggerFbComments, TriggerFbComments20, TriggerIgStoryReply, TriggerNewSubscriber, Triggers, TriggersLines, Unassign, Underline, Undo, Unpin, Unprotect, Unread, Unsubscribed, User, UserAdd, Video, VideoCircleTg, Warning, WebChat, WebsiteRedirect, WelcomeMessage, WhatsAppChannel, WhatsAppWidget, Wiseagent, Woocommerce, Zapier, Zillow };
|