@manychat/icons 4.31.3 → 4.32.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 +178 -112
- package/dist/index.js +179 -111
- package/package.json +1 -1
- package/umd/mcicons.js +179 -111
- package/umd/mcicons.min.js +1 -1
package/dist/index.es.js
CHANGED
|
@@ -9445,6 +9445,72 @@ const AiStep = _ref => {
|
|
|
9445
9445
|
};
|
|
9446
9446
|
|
|
9447
9447
|
const _excluded$4s = ["color", "size"];
|
|
9448
|
+
/**
|
|
9449
|
+
* @typedef {Object} AiAnswersSkillProps
|
|
9450
|
+
* @property {string} [color='currentColor']
|
|
9451
|
+
* @property {string|number} [size='24']
|
|
9452
|
+
*
|
|
9453
|
+
* @param {AiAnswersSkillProps} props
|
|
9454
|
+
* @returns {JSX.Element}
|
|
9455
|
+
*/
|
|
9456
|
+
|
|
9457
|
+
const AiAnswersSkill = _ref => {
|
|
9458
|
+
let {
|
|
9459
|
+
color = 'currentColor',
|
|
9460
|
+
size = '24'
|
|
9461
|
+
} = _ref,
|
|
9462
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4s);
|
|
9463
|
+
|
|
9464
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9465
|
+
width: size,
|
|
9466
|
+
height: size,
|
|
9467
|
+
viewBox: "0 0 24 24",
|
|
9468
|
+
fill: "none",
|
|
9469
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9470
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
9471
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
9472
|
+
d: "M11.3265 8.60867C11.9186 8.24159 12.5604 7.94441 13.241 7.72875C13.2775 7.71718 13.3142 7.70585 13.3509 7.69475L14 7.5L13.3666 7.30999C13.3246 7.29738 13.2827 7.28447 13.241 7.27125C12.5604 7.05559 11.9186 6.75841 11.3265 6.39133C10.2281 5.71031 9.30062 4.78871 8.61322 3.70076C8.09706 2.88382 7.71624 1.97309 7.5 1C7.28376 1.97309 6.90294 2.88382 6.38678 3.70076C5.69938 4.78871 4.77195 5.71031 3.6735 6.39133C3.08141 6.75841 2.43964 7.05559 1.75899 7.27125C1.71725 7.28447 1.67538 7.29738 1.63336 7.30999L1 7.5L1.63336 7.69001C1.67538 7.70261 1.71726 7.71553 1.75899 7.72875C2.43964 7.94441 3.08141 8.24159 3.6735 8.60867C4.77195 9.28969 5.69938 10.2113 6.38678 11.2992C6.90294 12.1162 7.28376 13.0269 7.5 14C7.71624 13.0269 8.09706 12.1162 8.61322 11.2992C9.30062 10.2113 10.2281 9.28969 11.3265 8.60867Z",
|
|
9473
|
+
fill: color
|
|
9474
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
9475
|
+
d: "M16.9756 11.8051C17.6125 11.1967 18.5041 10.7708 19.5867 10.7708C21.1152 10.7708 22.2615 11.4401 22.8984 12.5961C23.5989 13.9348 23.2168 15.6993 22.0705 16.9771C20.9241 18.2549 17.8672 21.4189 17.7399 21.5406L17.0393 22.2708L16.3388 21.6014C16.2114 21.4797 13.0908 18.3766 11.9445 17.0379C10.7345 15.6993 10.416 14.0565 11.1166 12.657C11.6897 11.4401 12.8998 10.7708 14.4282 10.7708C15.4472 10.7708 16.3388 11.1967 16.9756 11.8051Z",
|
|
9476
|
+
fill: color
|
|
9477
|
+
}));
|
|
9478
|
+
};
|
|
9479
|
+
|
|
9480
|
+
const _excluded$4t = ["color", "size"];
|
|
9481
|
+
/**
|
|
9482
|
+
* @typedef {Object} AiEngagementSkillProps
|
|
9483
|
+
* @property {string} [color='currentColor']
|
|
9484
|
+
* @property {string|number} [size='24']
|
|
9485
|
+
*
|
|
9486
|
+
* @param {AiEngagementSkillProps} props
|
|
9487
|
+
* @returns {JSX.Element}
|
|
9488
|
+
*/
|
|
9489
|
+
|
|
9490
|
+
const AiEngagementSkill = _ref => {
|
|
9491
|
+
let {
|
|
9492
|
+
color = 'currentColor',
|
|
9493
|
+
size = '24'
|
|
9494
|
+
} = _ref,
|
|
9495
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4t);
|
|
9496
|
+
|
|
9497
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9498
|
+
width: size,
|
|
9499
|
+
height: size,
|
|
9500
|
+
viewBox: "0 0 24 24",
|
|
9501
|
+
fill: "none",
|
|
9502
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9503
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
9504
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
9505
|
+
d: "M11.3265 8.60867C11.9186 8.24159 12.5604 7.94441 13.241 7.72875C13.2775 7.71718 13.3142 7.70585 13.3509 7.69475L14 7.5L13.3666 7.30999C13.3246 7.29738 13.2827 7.28447 13.241 7.27125C12.5604 7.05559 11.9186 6.75841 11.3265 6.39133C10.2281 5.71031 9.30062 4.78871 8.61322 3.70076C8.09706 2.88382 7.71624 1.97309 7.5 1C7.28376 1.97309 6.90294 2.88382 6.38678 3.70076C5.69938 4.78871 4.77195 5.71031 3.6735 6.39133C3.08141 6.75841 2.43964 7.05559 1.75899 7.27125C1.71725 7.28447 1.67538 7.29738 1.63336 7.30999L1 7.5L1.63336 7.69001C1.67538 7.70261 1.71726 7.71553 1.75899 7.72875C2.43964 7.94441 3.08141 8.24159 3.6735 8.60867C4.77195 9.28969 5.69938 10.2113 6.38678 11.2992C6.90294 12.1162 7.28376 13.0269 7.5 14C7.71624 13.0269 8.09706 12.1162 8.61322 11.2992C9.30062 10.2113 10.2281 9.28969 11.3265 8.60867Z",
|
|
9506
|
+
fill: color
|
|
9507
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
9508
|
+
d: "M10 15.6386C10 12.468 12.9884 10 16.5 10C20.0116 10 23 12.468 23 15.6386C23 18.8092 20.0116 21.2772 16.5 21.2772C15.664 21.2772 14.6567 21.1144 13.8299 20.7768L10.6521 22L11.5138 19.2185C10.9468 18.6064 10 17.3403 10 15.6386Z",
|
|
9509
|
+
fill: color
|
|
9510
|
+
}));
|
|
9511
|
+
};
|
|
9512
|
+
|
|
9513
|
+
const _excluded$4u = ["color", "size"];
|
|
9448
9514
|
/**
|
|
9449
9515
|
* @typedef {Object} AiIntentionProps
|
|
9450
9516
|
* @property {string} [color='currentColor']
|
|
@@ -9459,7 +9525,7 @@ const AiIntention = _ref => {
|
|
|
9459
9525
|
color = 'currentColor',
|
|
9460
9526
|
size = '24'
|
|
9461
9527
|
} = _ref,
|
|
9462
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9528
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4u);
|
|
9463
9529
|
|
|
9464
9530
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9465
9531
|
width: size,
|
|
@@ -9484,7 +9550,7 @@ const AiIntention = _ref => {
|
|
|
9484
9550
|
}));
|
|
9485
9551
|
};
|
|
9486
9552
|
|
|
9487
|
-
const _excluded$
|
|
9553
|
+
const _excluded$4v = ["color", "size"];
|
|
9488
9554
|
/**
|
|
9489
9555
|
* @typedef {Object} AiFilledProps
|
|
9490
9556
|
* @property {string} [color='currentColor']
|
|
@@ -9499,7 +9565,7 @@ const AiFilled = _ref => {
|
|
|
9499
9565
|
color = 'currentColor',
|
|
9500
9566
|
size = '24'
|
|
9501
9567
|
} = _ref,
|
|
9502
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9568
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4v);
|
|
9503
9569
|
|
|
9504
9570
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9505
9571
|
width: size,
|
|
@@ -9519,7 +9585,7 @@ const AiFilled = _ref => {
|
|
|
9519
9585
|
}));
|
|
9520
9586
|
};
|
|
9521
9587
|
|
|
9522
|
-
const _excluded$
|
|
9588
|
+
const _excluded$4w = ["color", "size"];
|
|
9523
9589
|
/**
|
|
9524
9590
|
* @typedef {Object} BigcommerceProps
|
|
9525
9591
|
* @property {string} [color='currentColor']
|
|
@@ -9534,7 +9600,7 @@ const Bigcommerce = _ref => {
|
|
|
9534
9600
|
color = 'currentColor',
|
|
9535
9601
|
size = '24'
|
|
9536
9602
|
} = _ref,
|
|
9537
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9603
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4w);
|
|
9538
9604
|
|
|
9539
9605
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9540
9606
|
width: size,
|
|
@@ -9549,7 +9615,7 @@ const Bigcommerce = _ref => {
|
|
|
9549
9615
|
}));
|
|
9550
9616
|
};
|
|
9551
9617
|
|
|
9552
|
-
const _excluded$
|
|
9618
|
+
const _excluded$4x = ["color", "size"];
|
|
9553
9619
|
/**
|
|
9554
9620
|
* @typedef {Object} WoocommerceProps
|
|
9555
9621
|
* @property {string} [color='currentColor']
|
|
@@ -9564,7 +9630,7 @@ const Woocommerce = _ref => {
|
|
|
9564
9630
|
color = 'currentColor',
|
|
9565
9631
|
size = '24'
|
|
9566
9632
|
} = _ref,
|
|
9567
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9633
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4x);
|
|
9568
9634
|
|
|
9569
9635
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9570
9636
|
width: size,
|
|
@@ -9582,7 +9648,7 @@ const Woocommerce = _ref => {
|
|
|
9582
9648
|
}));
|
|
9583
9649
|
};
|
|
9584
9650
|
|
|
9585
|
-
const _excluded$
|
|
9651
|
+
const _excluded$4y = ["color", "size"];
|
|
9586
9652
|
/**
|
|
9587
9653
|
* @typedef {Object} AmazonProps
|
|
9588
9654
|
* @property {string} [color='currentColor']
|
|
@@ -9597,7 +9663,7 @@ const Amazon = _ref => {
|
|
|
9597
9663
|
color = 'currentColor',
|
|
9598
9664
|
size = '24'
|
|
9599
9665
|
} = _ref,
|
|
9600
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9666
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4y);
|
|
9601
9667
|
|
|
9602
9668
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9603
9669
|
width: size,
|
|
@@ -9615,7 +9681,7 @@ const Amazon = _ref => {
|
|
|
9615
9681
|
}));
|
|
9616
9682
|
};
|
|
9617
9683
|
|
|
9618
|
-
const _excluded$
|
|
9684
|
+
const _excluded$4z = ["color", "size"];
|
|
9619
9685
|
/**
|
|
9620
9686
|
* @typedef {Object} HotmartProps
|
|
9621
9687
|
* @property {string} [color='currentColor']
|
|
@@ -9630,7 +9696,7 @@ const Hotmart = _ref => {
|
|
|
9630
9696
|
color = 'currentColor',
|
|
9631
9697
|
size = '24'
|
|
9632
9698
|
} = _ref,
|
|
9633
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9699
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4z);
|
|
9634
9700
|
|
|
9635
9701
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9636
9702
|
width: size,
|
|
@@ -9645,7 +9711,7 @@ const Hotmart = _ref => {
|
|
|
9645
9711
|
}));
|
|
9646
9712
|
};
|
|
9647
9713
|
|
|
9648
|
-
const _excluded$
|
|
9714
|
+
const _excluded$4A = ["color", "size"];
|
|
9649
9715
|
/**
|
|
9650
9716
|
* @typedef {Object} CreatorProps
|
|
9651
9717
|
* @property {string} [color='currentColor']
|
|
@@ -9660,7 +9726,7 @@ const Creator = _ref => {
|
|
|
9660
9726
|
color = 'currentColor',
|
|
9661
9727
|
size = '24'
|
|
9662
9728
|
} = _ref,
|
|
9663
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9729
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4A);
|
|
9664
9730
|
|
|
9665
9731
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9666
9732
|
width: size,
|
|
@@ -9675,7 +9741,7 @@ const Creator = _ref => {
|
|
|
9675
9741
|
}));
|
|
9676
9742
|
};
|
|
9677
9743
|
|
|
9678
|
-
const _excluded$
|
|
9744
|
+
const _excluded$4B = ["color", "size"];
|
|
9679
9745
|
/**
|
|
9680
9746
|
* @typedef {Object} InstagramDmListProps
|
|
9681
9747
|
* @property {string} [color='currentColor']
|
|
@@ -9690,7 +9756,7 @@ const InstagramDmList = _ref => {
|
|
|
9690
9756
|
color = 'currentColor',
|
|
9691
9757
|
size = '24'
|
|
9692
9758
|
} = _ref,
|
|
9693
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9759
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4B);
|
|
9694
9760
|
|
|
9695
9761
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9696
9762
|
width: size,
|
|
@@ -9716,7 +9782,7 @@ const InstagramDmList = _ref => {
|
|
|
9716
9782
|
}));
|
|
9717
9783
|
};
|
|
9718
9784
|
|
|
9719
|
-
const _excluded$
|
|
9785
|
+
const _excluded$4C = ["color", "size"];
|
|
9720
9786
|
/**
|
|
9721
9787
|
* @typedef {Object} RealEstateProps
|
|
9722
9788
|
* @property {string} [color='currentColor']
|
|
@@ -9731,7 +9797,7 @@ const RealEstate = _ref => {
|
|
|
9731
9797
|
color = 'currentColor',
|
|
9732
9798
|
size = '24'
|
|
9733
9799
|
} = _ref,
|
|
9734
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9800
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4C);
|
|
9735
9801
|
|
|
9736
9802
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9737
9803
|
width: size,
|
|
@@ -9746,7 +9812,7 @@ const RealEstate = _ref => {
|
|
|
9746
9812
|
}));
|
|
9747
9813
|
};
|
|
9748
9814
|
|
|
9749
|
-
const _excluded$
|
|
9815
|
+
const _excluded$4D = ["color", "size"];
|
|
9750
9816
|
/**
|
|
9751
9817
|
* @typedef {Object} BasicsProps
|
|
9752
9818
|
* @property {string} [color='currentColor']
|
|
@@ -9761,7 +9827,7 @@ const Basics = _ref => {
|
|
|
9761
9827
|
color = 'currentColor',
|
|
9762
9828
|
size = '24'
|
|
9763
9829
|
} = _ref,
|
|
9764
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9830
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4D);
|
|
9765
9831
|
|
|
9766
9832
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9767
9833
|
width: size,
|
|
@@ -9788,7 +9854,7 @@ const Basics = _ref => {
|
|
|
9788
9854
|
}));
|
|
9789
9855
|
};
|
|
9790
9856
|
|
|
9791
|
-
const _excluded$
|
|
9857
|
+
const _excluded$4E = ["color", "size"];
|
|
9792
9858
|
/**
|
|
9793
9859
|
* @typedef {Object} FitnessProps
|
|
9794
9860
|
* @property {string} [color='currentColor']
|
|
@@ -9803,7 +9869,7 @@ const Fitness = _ref => {
|
|
|
9803
9869
|
color = 'currentColor',
|
|
9804
9870
|
size = '24'
|
|
9805
9871
|
} = _ref,
|
|
9806
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9872
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4E);
|
|
9807
9873
|
|
|
9808
9874
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9809
9875
|
width: size,
|
|
@@ -9818,7 +9884,7 @@ const Fitness = _ref => {
|
|
|
9818
9884
|
}));
|
|
9819
9885
|
};
|
|
9820
9886
|
|
|
9821
|
-
const _excluded$
|
|
9887
|
+
const _excluded$4F = ["color", "size"];
|
|
9822
9888
|
/**
|
|
9823
9889
|
* @typedef {Object} HotelProps
|
|
9824
9890
|
* @property {string} [color='currentColor']
|
|
@@ -9833,7 +9899,7 @@ const Hotel = _ref => {
|
|
|
9833
9899
|
color = 'currentColor',
|
|
9834
9900
|
size = '24'
|
|
9835
9901
|
} = _ref,
|
|
9836
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9902
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4F);
|
|
9837
9903
|
|
|
9838
9904
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9839
9905
|
width: size,
|
|
@@ -9848,7 +9914,7 @@ const Hotel = _ref => {
|
|
|
9848
9914
|
}));
|
|
9849
9915
|
};
|
|
9850
9916
|
|
|
9851
|
-
const _excluded$
|
|
9917
|
+
const _excluded$4G = ["color", "size"];
|
|
9852
9918
|
/**
|
|
9853
9919
|
* @typedef {Object} OrganizationProps
|
|
9854
9920
|
* @property {string} [color='currentColor']
|
|
@@ -9863,7 +9929,7 @@ const Organization = _ref => {
|
|
|
9863
9929
|
color = 'currentColor',
|
|
9864
9930
|
size = '24'
|
|
9865
9931
|
} = _ref,
|
|
9866
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9932
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4G);
|
|
9867
9933
|
|
|
9868
9934
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9869
9935
|
width: size,
|
|
@@ -9878,7 +9944,7 @@ const Organization = _ref => {
|
|
|
9878
9944
|
}));
|
|
9879
9945
|
};
|
|
9880
9946
|
|
|
9881
|
-
const _excluded$
|
|
9947
|
+
const _excluded$4H = ["color", "size"];
|
|
9882
9948
|
/**
|
|
9883
9949
|
* @typedef {Object} ProfessionalConsultingProps
|
|
9884
9950
|
* @property {string} [color='currentColor']
|
|
@@ -9893,7 +9959,7 @@ const ProfessionalConsulting = _ref => {
|
|
|
9893
9959
|
color = 'currentColor',
|
|
9894
9960
|
size = '24'
|
|
9895
9961
|
} = _ref,
|
|
9896
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9962
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4H);
|
|
9897
9963
|
|
|
9898
9964
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9899
9965
|
width: size,
|
|
@@ -9908,7 +9974,7 @@ const ProfessionalConsulting = _ref => {
|
|
|
9908
9974
|
}));
|
|
9909
9975
|
};
|
|
9910
9976
|
|
|
9911
|
-
const _excluded$
|
|
9977
|
+
const _excluded$4I = ["color", "size"];
|
|
9912
9978
|
/**
|
|
9913
9979
|
* @typedef {Object} MessengerListProps
|
|
9914
9980
|
* @property {string} [color='currentColor']
|
|
@@ -9923,7 +9989,7 @@ const MessengerList = _ref => {
|
|
|
9923
9989
|
color = 'currentColor',
|
|
9924
9990
|
size = '24'
|
|
9925
9991
|
} = _ref,
|
|
9926
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
9992
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4I);
|
|
9927
9993
|
|
|
9928
9994
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9929
9995
|
width: size,
|
|
@@ -9944,7 +10010,7 @@ const MessengerList = _ref => {
|
|
|
9944
10010
|
}));
|
|
9945
10011
|
};
|
|
9946
10012
|
|
|
9947
|
-
const _excluded$
|
|
10013
|
+
const _excluded$4J = ["color", "size"];
|
|
9948
10014
|
/**
|
|
9949
10015
|
* @typedef {Object} IntegromatProps
|
|
9950
10016
|
* @property {string} [color='currentColor']
|
|
@@ -9959,7 +10025,7 @@ const Integromat = _ref => {
|
|
|
9959
10025
|
color = 'currentColor',
|
|
9960
10026
|
size = '24'
|
|
9961
10027
|
} = _ref,
|
|
9962
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10028
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4J);
|
|
9963
10029
|
|
|
9964
10030
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9965
10031
|
width: size,
|
|
@@ -9974,7 +10040,7 @@ const Integromat = _ref => {
|
|
|
9974
10040
|
}));
|
|
9975
10041
|
};
|
|
9976
10042
|
|
|
9977
|
-
const _excluded$
|
|
10043
|
+
const _excluded$4K = ["color", "size"];
|
|
9978
10044
|
/**
|
|
9979
10045
|
* @typedef {Object} HubspotProps
|
|
9980
10046
|
* @property {string} [color='currentColor']
|
|
@@ -9989,7 +10055,7 @@ const Hubspot = _ref => {
|
|
|
9989
10055
|
color = 'currentColor',
|
|
9990
10056
|
size = '24'
|
|
9991
10057
|
} = _ref,
|
|
9992
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10058
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4K);
|
|
9993
10059
|
|
|
9994
10060
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9995
10061
|
width: size,
|
|
@@ -10004,7 +10070,7 @@ const Hubspot = _ref => {
|
|
|
10004
10070
|
}));
|
|
10005
10071
|
};
|
|
10006
10072
|
|
|
10007
|
-
const _excluded$
|
|
10073
|
+
const _excluded$4L = ["color", "size"];
|
|
10008
10074
|
/**
|
|
10009
10075
|
* @typedef {Object} KlaviyoProps
|
|
10010
10076
|
* @property {string} [color='currentColor']
|
|
@@ -10019,7 +10085,7 @@ const Klaviyo = _ref => {
|
|
|
10019
10085
|
color = 'currentColor',
|
|
10020
10086
|
size = '24'
|
|
10021
10087
|
} = _ref,
|
|
10022
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10088
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4L);
|
|
10023
10089
|
|
|
10024
10090
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10025
10091
|
width: size,
|
|
@@ -10058,7 +10124,7 @@ const Klaviyo = _ref => {
|
|
|
10058
10124
|
}))));
|
|
10059
10125
|
};
|
|
10060
10126
|
|
|
10061
|
-
const _excluded$
|
|
10127
|
+
const _excluded$4M = ["color", "size"];
|
|
10062
10128
|
/**
|
|
10063
10129
|
* @typedef {Object} ActivecampaignProps
|
|
10064
10130
|
* @property {string} [color='currentColor']
|
|
@@ -10073,7 +10139,7 @@ const Activecampaign = _ref => {
|
|
|
10073
10139
|
color = 'currentColor',
|
|
10074
10140
|
size = '24'
|
|
10075
10141
|
} = _ref,
|
|
10076
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10142
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4M);
|
|
10077
10143
|
|
|
10078
10144
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10079
10145
|
width: size,
|
|
@@ -10090,7 +10156,7 @@ const Activecampaign = _ref => {
|
|
|
10090
10156
|
}));
|
|
10091
10157
|
};
|
|
10092
10158
|
|
|
10093
|
-
const _excluded$
|
|
10159
|
+
const _excluded$4N = ["color", "size"];
|
|
10094
10160
|
/**
|
|
10095
10161
|
* @typedef {Object} ChatGptProps
|
|
10096
10162
|
* @property {string} [color='currentColor']
|
|
@@ -10105,7 +10171,7 @@ const ChatGpt = _ref => {
|
|
|
10105
10171
|
color = 'currentColor',
|
|
10106
10172
|
size = '24'
|
|
10107
10173
|
} = _ref,
|
|
10108
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10174
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4N);
|
|
10109
10175
|
|
|
10110
10176
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10111
10177
|
width: size,
|
|
@@ -10120,7 +10186,7 @@ const ChatGpt = _ref => {
|
|
|
10120
10186
|
}));
|
|
10121
10187
|
};
|
|
10122
10188
|
|
|
10123
|
-
const _excluded$
|
|
10189
|
+
const _excluded$4O = ["color", "size"];
|
|
10124
10190
|
/**
|
|
10125
10191
|
* @typedef {Object} MailChimpProps
|
|
10126
10192
|
* @property {string} [color='currentColor']
|
|
@@ -10135,7 +10201,7 @@ const MailChimp = _ref => {
|
|
|
10135
10201
|
color = 'currentColor',
|
|
10136
10202
|
size = '24'
|
|
10137
10203
|
} = _ref,
|
|
10138
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10204
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4O);
|
|
10139
10205
|
|
|
10140
10206
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10141
10207
|
width: size,
|
|
@@ -10168,7 +10234,7 @@ const MailChimp = _ref => {
|
|
|
10168
10234
|
}));
|
|
10169
10235
|
};
|
|
10170
10236
|
|
|
10171
|
-
const _excluded$
|
|
10237
|
+
const _excluded$4P = ["color", "size"];
|
|
10172
10238
|
/**
|
|
10173
10239
|
* @typedef {Object} ConvertKitProps
|
|
10174
10240
|
* @property {string} [color='currentColor']
|
|
@@ -10183,7 +10249,7 @@ const ConvertKit = _ref => {
|
|
|
10183
10249
|
color = 'currentColor',
|
|
10184
10250
|
size = '24'
|
|
10185
10251
|
} = _ref,
|
|
10186
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10252
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4P);
|
|
10187
10253
|
|
|
10188
10254
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10189
10255
|
width: size,
|
|
@@ -10198,7 +10264,7 @@ const ConvertKit = _ref => {
|
|
|
10198
10264
|
}));
|
|
10199
10265
|
};
|
|
10200
10266
|
|
|
10201
|
-
const _excluded$
|
|
10267
|
+
const _excluded$4Q = ["color", "size"];
|
|
10202
10268
|
/**
|
|
10203
10269
|
* @typedef {Object} GoogleSheetsProps
|
|
10204
10270
|
* @property {string} [color='currentColor']
|
|
@@ -10213,7 +10279,7 @@ const GoogleSheets = _ref => {
|
|
|
10213
10279
|
color = 'currentColor',
|
|
10214
10280
|
size = '24'
|
|
10215
10281
|
} = _ref,
|
|
10216
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10282
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4Q);
|
|
10217
10283
|
|
|
10218
10284
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10219
10285
|
width: size,
|
|
@@ -10239,7 +10305,7 @@ const GoogleSheets = _ref => {
|
|
|
10239
10305
|
}));
|
|
10240
10306
|
};
|
|
10241
10307
|
|
|
10242
|
-
const _excluded$
|
|
10308
|
+
const _excluded$4R = ["color", "size"];
|
|
10243
10309
|
/**
|
|
10244
10310
|
* @typedef {Object} SalesforceProps
|
|
10245
10311
|
* @property {string} [color='currentColor']
|
|
@@ -10254,7 +10320,7 @@ const Salesforce = _ref => {
|
|
|
10254
10320
|
color = 'currentColor',
|
|
10255
10321
|
size = '24'
|
|
10256
10322
|
} = _ref,
|
|
10257
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10323
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4R);
|
|
10258
10324
|
|
|
10259
10325
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10260
10326
|
width: size,
|
|
@@ -10278,7 +10344,7 @@ const Salesforce = _ref => {
|
|
|
10278
10344
|
}))));
|
|
10279
10345
|
};
|
|
10280
10346
|
|
|
10281
|
-
const _excluded$
|
|
10347
|
+
const _excluded$4S = ["color", "size"];
|
|
10282
10348
|
/**
|
|
10283
10349
|
* @typedef {Object} PipedriveProps
|
|
10284
10350
|
* @property {string} [color='currentColor']
|
|
@@ -10293,7 +10359,7 @@ const Pipedrive = _ref => {
|
|
|
10293
10359
|
color = 'currentColor',
|
|
10294
10360
|
size = '24'
|
|
10295
10361
|
} = _ref,
|
|
10296
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10362
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4S);
|
|
10297
10363
|
|
|
10298
10364
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10299
10365
|
width: size,
|
|
@@ -10311,7 +10377,7 @@ const Pipedrive = _ref => {
|
|
|
10311
10377
|
}));
|
|
10312
10378
|
};
|
|
10313
10379
|
|
|
10314
|
-
const _excluded$
|
|
10380
|
+
const _excluded$4T = ["color", "size"];
|
|
10315
10381
|
/**
|
|
10316
10382
|
* @typedef {Object} WiseagentProps
|
|
10317
10383
|
* @property {string} [color='currentColor']
|
|
@@ -10326,7 +10392,7 @@ const Wiseagent = _ref => {
|
|
|
10326
10392
|
color = 'currentColor',
|
|
10327
10393
|
size = '24'
|
|
10328
10394
|
} = _ref,
|
|
10329
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10395
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4T);
|
|
10330
10396
|
|
|
10331
10397
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10332
10398
|
width: size,
|
|
@@ -10347,7 +10413,7 @@ const Wiseagent = _ref => {
|
|
|
10347
10413
|
}));
|
|
10348
10414
|
};
|
|
10349
10415
|
|
|
10350
|
-
const _excluded$
|
|
10416
|
+
const _excluded$4U = ["color", "size"];
|
|
10351
10417
|
/**
|
|
10352
10418
|
* @typedef {Object} FlodeskProps
|
|
10353
10419
|
* @property {string} [color='currentColor']
|
|
@@ -10362,7 +10428,7 @@ const Flodesk = _ref => {
|
|
|
10362
10428
|
color = 'currentColor',
|
|
10363
10429
|
size = '24'
|
|
10364
10430
|
} = _ref,
|
|
10365
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10431
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4U);
|
|
10366
10432
|
|
|
10367
10433
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10368
10434
|
width: size,
|
|
@@ -10377,7 +10443,7 @@ const Flodesk = _ref => {
|
|
|
10377
10443
|
}));
|
|
10378
10444
|
};
|
|
10379
10445
|
|
|
10380
|
-
const _excluded$
|
|
10446
|
+
const _excluded$4V = ["color", "size"];
|
|
10381
10447
|
/**
|
|
10382
10448
|
* @typedef {Object} DeepSeekProps
|
|
10383
10449
|
* @property {string} [color='currentColor']
|
|
@@ -10392,7 +10458,7 @@ const DeepSeek = _ref => {
|
|
|
10392
10458
|
color = 'currentColor',
|
|
10393
10459
|
size = '24'
|
|
10394
10460
|
} = _ref,
|
|
10395
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10461
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4V);
|
|
10396
10462
|
|
|
10397
10463
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10398
10464
|
width: size,
|
|
@@ -10407,7 +10473,7 @@ const DeepSeek = _ref => {
|
|
|
10407
10473
|
}));
|
|
10408
10474
|
};
|
|
10409
10475
|
|
|
10410
|
-
const _excluded$
|
|
10476
|
+
const _excluded$4W = ["color", "size"];
|
|
10411
10477
|
/**
|
|
10412
10478
|
* @typedef {Object} ApptivoProps
|
|
10413
10479
|
* @property {string} [color='currentColor']
|
|
@@ -10422,7 +10488,7 @@ const Apptivo = _ref => {
|
|
|
10422
10488
|
color = 'currentColor',
|
|
10423
10489
|
size = '24'
|
|
10424
10490
|
} = _ref,
|
|
10425
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10491
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4W);
|
|
10426
10492
|
|
|
10427
10493
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10428
10494
|
width: size,
|
|
@@ -10440,7 +10506,7 @@ const Apptivo = _ref => {
|
|
|
10440
10506
|
}));
|
|
10441
10507
|
};
|
|
10442
10508
|
|
|
10443
|
-
const _excluded$
|
|
10509
|
+
const _excluded$4X = ["color", "size"];
|
|
10444
10510
|
/**
|
|
10445
10511
|
* @typedef {Object} ZillowProps
|
|
10446
10512
|
* @property {string} [color='currentColor']
|
|
@@ -10455,7 +10521,7 @@ const Zillow = _ref => {
|
|
|
10455
10521
|
color = 'currentColor',
|
|
10456
10522
|
size = '24'
|
|
10457
10523
|
} = _ref,
|
|
10458
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10524
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4X);
|
|
10459
10525
|
|
|
10460
10526
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10461
10527
|
width: size,
|
|
@@ -10472,7 +10538,7 @@ const Zillow = _ref => {
|
|
|
10472
10538
|
}));
|
|
10473
10539
|
};
|
|
10474
10540
|
|
|
10475
|
-
const _excluded$
|
|
10541
|
+
const _excluded$4Y = ["color", "size"];
|
|
10476
10542
|
/**
|
|
10477
10543
|
* @typedef {Object} CanvaProps
|
|
10478
10544
|
* @property {string} [color='currentColor']
|
|
@@ -10487,7 +10553,7 @@ const Canva = _ref => {
|
|
|
10487
10553
|
color = 'currentColor',
|
|
10488
10554
|
size = '24'
|
|
10489
10555
|
} = _ref,
|
|
10490
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10556
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4Y);
|
|
10491
10557
|
|
|
10492
10558
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10493
10559
|
width: size,
|
|
@@ -10573,7 +10639,7 @@ const Canva = _ref => {
|
|
|
10573
10639
|
}))));
|
|
10574
10640
|
};
|
|
10575
10641
|
|
|
10576
|
-
const _excluded$
|
|
10642
|
+
const _excluded$4Z = ["color", "size"];
|
|
10577
10643
|
/**
|
|
10578
10644
|
* @typedef {Object} KajabiProps
|
|
10579
10645
|
* @property {string} [color='currentColor']
|
|
@@ -10588,7 +10654,7 @@ const Kajabi = _ref => {
|
|
|
10588
10654
|
color = 'currentColor',
|
|
10589
10655
|
size = '24'
|
|
10590
10656
|
} = _ref,
|
|
10591
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10657
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4Z);
|
|
10592
10658
|
|
|
10593
10659
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10594
10660
|
width: size,
|
|
@@ -10610,7 +10676,7 @@ const Kajabi = _ref => {
|
|
|
10610
10676
|
}));
|
|
10611
10677
|
};
|
|
10612
10678
|
|
|
10613
|
-
const _excluded$
|
|
10679
|
+
const _excluded$4_ = ["color", "size"];
|
|
10614
10680
|
/**
|
|
10615
10681
|
* @typedef {Object} MagentoProps
|
|
10616
10682
|
* @property {string} [color='currentColor']
|
|
@@ -10625,7 +10691,7 @@ const Magento = _ref => {
|
|
|
10625
10691
|
color = 'currentColor',
|
|
10626
10692
|
size = '24'
|
|
10627
10693
|
} = _ref,
|
|
10628
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10694
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4_);
|
|
10629
10695
|
|
|
10630
10696
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10631
10697
|
width: size,
|
|
@@ -10640,7 +10706,7 @@ const Magento = _ref => {
|
|
|
10640
10706
|
}));
|
|
10641
10707
|
};
|
|
10642
10708
|
|
|
10643
|
-
const _excluded$
|
|
10709
|
+
const _excluded$4$ = ["color", "size"];
|
|
10644
10710
|
/**
|
|
10645
10711
|
* @typedef {Object} ArrowDownRightProps
|
|
10646
10712
|
* @property {string} [color='currentColor']
|
|
@@ -10655,7 +10721,7 @@ const ArrowDownRight = _ref => {
|
|
|
10655
10721
|
color = 'currentColor',
|
|
10656
10722
|
size = '24'
|
|
10657
10723
|
} = _ref,
|
|
10658
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10724
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$4$);
|
|
10659
10725
|
|
|
10660
10726
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10661
10727
|
width: size,
|
|
@@ -10673,7 +10739,7 @@ const ArrowDownRight = _ref => {
|
|
|
10673
10739
|
}));
|
|
10674
10740
|
};
|
|
10675
10741
|
|
|
10676
|
-
const _excluded$
|
|
10742
|
+
const _excluded$50 = ["color", "size"];
|
|
10677
10743
|
/**
|
|
10678
10744
|
* @typedef {Object} ReturnKeyProps
|
|
10679
10745
|
* @property {string} [color='currentColor']
|
|
@@ -10688,7 +10754,7 @@ const ReturnKey = _ref => {
|
|
|
10688
10754
|
color = 'currentColor',
|
|
10689
10755
|
size = '24'
|
|
10690
10756
|
} = _ref,
|
|
10691
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10757
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$50);
|
|
10692
10758
|
|
|
10693
10759
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10694
10760
|
width: size,
|
|
@@ -10703,7 +10769,7 @@ const ReturnKey = _ref => {
|
|
|
10703
10769
|
}));
|
|
10704
10770
|
};
|
|
10705
10771
|
|
|
10706
|
-
const _excluded$
|
|
10772
|
+
const _excluded$51 = ["color", "size"];
|
|
10707
10773
|
/**
|
|
10708
10774
|
* @typedef {Object} UnreadProps
|
|
10709
10775
|
* @property {string} [color='currentColor']
|
|
@@ -10718,7 +10784,7 @@ const Unread = _ref => {
|
|
|
10718
10784
|
color = 'currentColor',
|
|
10719
10785
|
size = '24'
|
|
10720
10786
|
} = _ref,
|
|
10721
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10787
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$51);
|
|
10722
10788
|
|
|
10723
10789
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10724
10790
|
width: size,
|
|
@@ -10735,7 +10801,7 @@ const Unread = _ref => {
|
|
|
10735
10801
|
}));
|
|
10736
10802
|
};
|
|
10737
10803
|
|
|
10738
|
-
const _excluded$
|
|
10804
|
+
const _excluded$52 = ["color", "size"];
|
|
10739
10805
|
/**
|
|
10740
10806
|
* @typedef {Object} PrivacyProps
|
|
10741
10807
|
* @property {string} [color='currentColor']
|
|
@@ -10750,7 +10816,7 @@ const Privacy = _ref => {
|
|
|
10750
10816
|
color = 'currentColor',
|
|
10751
10817
|
size = '24'
|
|
10752
10818
|
} = _ref,
|
|
10753
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10819
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$52);
|
|
10754
10820
|
|
|
10755
10821
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10756
10822
|
width: size,
|
|
@@ -10771,7 +10837,7 @@ const Privacy = _ref => {
|
|
|
10771
10837
|
}));
|
|
10772
10838
|
};
|
|
10773
10839
|
|
|
10774
|
-
const _excluded$
|
|
10840
|
+
const _excluded$53 = ["color", "size"];
|
|
10775
10841
|
/**
|
|
10776
10842
|
* @typedef {Object} LocationProps
|
|
10777
10843
|
* @property {string} [color='currentColor']
|
|
@@ -10786,7 +10852,7 @@ const Location = _ref => {
|
|
|
10786
10852
|
color = 'currentColor',
|
|
10787
10853
|
size = '24'
|
|
10788
10854
|
} = _ref,
|
|
10789
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10855
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$53);
|
|
10790
10856
|
|
|
10791
10857
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10792
10858
|
width: size,
|
|
@@ -10808,7 +10874,7 @@ const Location = _ref => {
|
|
|
10808
10874
|
}));
|
|
10809
10875
|
};
|
|
10810
10876
|
|
|
10811
|
-
const _excluded$
|
|
10877
|
+
const _excluded$54 = ["color", "size"];
|
|
10812
10878
|
/**
|
|
10813
10879
|
* @typedef {Object} TikTokProps
|
|
10814
10880
|
* @property {string} [color='currentColor']
|
|
@@ -10823,7 +10889,7 @@ const TikTok = _ref => {
|
|
|
10823
10889
|
color = 'currentColor',
|
|
10824
10890
|
size = '24'
|
|
10825
10891
|
} = _ref,
|
|
10826
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10892
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$54);
|
|
10827
10893
|
|
|
10828
10894
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10829
10895
|
width: size,
|
|
@@ -10856,7 +10922,7 @@ const TikTok = _ref => {
|
|
|
10856
10922
|
}));
|
|
10857
10923
|
};
|
|
10858
10924
|
|
|
10859
|
-
const _excluded$
|
|
10925
|
+
const _excluded$55 = ["color", "size"];
|
|
10860
10926
|
/**
|
|
10861
10927
|
* @typedef {Object} ClaudeProps
|
|
10862
10928
|
* @property {string} [color='currentColor']
|
|
@@ -10871,7 +10937,7 @@ const Claude = _ref => {
|
|
|
10871
10937
|
color = 'currentColor',
|
|
10872
10938
|
size = '24'
|
|
10873
10939
|
} = _ref,
|
|
10874
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10940
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$55);
|
|
10875
10941
|
|
|
10876
10942
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10877
10943
|
width: size,
|
|
@@ -10886,7 +10952,7 @@ const Claude = _ref => {
|
|
|
10886
10952
|
}));
|
|
10887
10953
|
};
|
|
10888
10954
|
|
|
10889
|
-
const _excluded$
|
|
10955
|
+
const _excluded$56 = ["color", "size"];
|
|
10890
10956
|
/**
|
|
10891
10957
|
* @typedef {Object} TikTokChannel2Props
|
|
10892
10958
|
* @property {string} [color='currentColor']
|
|
@@ -10901,7 +10967,7 @@ const TikTokChannel2 = _ref => {
|
|
|
10901
10967
|
color = 'currentColor',
|
|
10902
10968
|
size = '24'
|
|
10903
10969
|
} = _ref,
|
|
10904
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
10970
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$56);
|
|
10905
10971
|
|
|
10906
10972
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10907
10973
|
width: size,
|
|
@@ -10918,7 +10984,7 @@ const TikTokChannel2 = _ref => {
|
|
|
10918
10984
|
}));
|
|
10919
10985
|
};
|
|
10920
10986
|
|
|
10921
|
-
const _excluded$
|
|
10987
|
+
const _excluded$57 = ["color", "size"];
|
|
10922
10988
|
/**
|
|
10923
10989
|
* @typedef {Object} AutomationsPausedFilledProps
|
|
10924
10990
|
* @property {string} [color='currentColor']
|
|
@@ -10933,7 +10999,7 @@ const AutomationsPausedFilled = _ref => {
|
|
|
10933
10999
|
color = 'currentColor',
|
|
10934
11000
|
size = '24'
|
|
10935
11001
|
} = _ref,
|
|
10936
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11002
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$57);
|
|
10937
11003
|
|
|
10938
11004
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10939
11005
|
width: size,
|
|
@@ -10951,7 +11017,7 @@ const AutomationsPausedFilled = _ref => {
|
|
|
10951
11017
|
}));
|
|
10952
11018
|
};
|
|
10953
11019
|
|
|
10954
|
-
const _excluded$
|
|
11020
|
+
const _excluded$58 = ["color", "size"];
|
|
10955
11021
|
/**
|
|
10956
11022
|
* @typedef {Object} AutomationsStoppedFilledProps
|
|
10957
11023
|
* @property {string} [color='currentColor']
|
|
@@ -10966,7 +11032,7 @@ const AutomationsStoppedFilled = _ref => {
|
|
|
10966
11032
|
color = 'currentColor',
|
|
10967
11033
|
size = '24'
|
|
10968
11034
|
} = _ref,
|
|
10969
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11035
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$58);
|
|
10970
11036
|
|
|
10971
11037
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10972
11038
|
width: size,
|
|
@@ -10981,7 +11047,7 @@ const AutomationsStoppedFilled = _ref => {
|
|
|
10981
11047
|
}));
|
|
10982
11048
|
};
|
|
10983
11049
|
|
|
10984
|
-
const _excluded$
|
|
11050
|
+
const _excluded$59 = ["color", "size"];
|
|
10985
11051
|
/**
|
|
10986
11052
|
* @typedef {Object} BulletProps
|
|
10987
11053
|
* @property {string} [color='currentColor']
|
|
@@ -10996,7 +11062,7 @@ const Bullet = _ref => {
|
|
|
10996
11062
|
color = 'currentColor',
|
|
10997
11063
|
size = '24'
|
|
10998
11064
|
} = _ref,
|
|
10999
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11065
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$59);
|
|
11000
11066
|
|
|
11001
11067
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11002
11068
|
width: size,
|
|
@@ -11011,7 +11077,7 @@ const Bullet = _ref => {
|
|
|
11011
11077
|
}));
|
|
11012
11078
|
};
|
|
11013
11079
|
|
|
11014
|
-
const _excluded$
|
|
11080
|
+
const _excluded$5a = ["color", "size"];
|
|
11015
11081
|
/**
|
|
11016
11082
|
* @typedef {Object} NavCollapseProps
|
|
11017
11083
|
* @property {string} [color='currentColor']
|
|
@@ -11026,7 +11092,7 @@ const NavCollapse = _ref => {
|
|
|
11026
11092
|
color = 'currentColor',
|
|
11027
11093
|
size = '24'
|
|
11028
11094
|
} = _ref,
|
|
11029
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11095
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5a);
|
|
11030
11096
|
|
|
11031
11097
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11032
11098
|
width: size,
|
|
@@ -11047,7 +11113,7 @@ const NavCollapse = _ref => {
|
|
|
11047
11113
|
}));
|
|
11048
11114
|
};
|
|
11049
11115
|
|
|
11050
|
-
const _excluded$
|
|
11116
|
+
const _excluded$5b = ["color", "size"];
|
|
11051
11117
|
/**
|
|
11052
11118
|
* @typedef {Object} NavExpandProps
|
|
11053
11119
|
* @property {string} [color='currentColor']
|
|
@@ -11062,7 +11128,7 @@ const NavExpand = _ref => {
|
|
|
11062
11128
|
color = 'currentColor',
|
|
11063
11129
|
size = '24'
|
|
11064
11130
|
} = _ref,
|
|
11065
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11131
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5b);
|
|
11066
11132
|
|
|
11067
11133
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11068
11134
|
width: size,
|
|
@@ -11083,7 +11149,7 @@ const NavExpand = _ref => {
|
|
|
11083
11149
|
}));
|
|
11084
11150
|
};
|
|
11085
11151
|
|
|
11086
|
-
const _excluded$
|
|
11152
|
+
const _excluded$5c = ["color", "size"];
|
|
11087
11153
|
/**
|
|
11088
11154
|
* @typedef {Object} RetailProps
|
|
11089
11155
|
* @property {string} [color='currentColor']
|
|
@@ -11098,7 +11164,7 @@ const Retail = _ref => {
|
|
|
11098
11164
|
color = 'currentColor',
|
|
11099
11165
|
size = '24'
|
|
11100
11166
|
} = _ref,
|
|
11101
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11167
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5c);
|
|
11102
11168
|
|
|
11103
11169
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11104
11170
|
width: size,
|
|
@@ -11115,7 +11181,7 @@ const Retail = _ref => {
|
|
|
11115
11181
|
}));
|
|
11116
11182
|
};
|
|
11117
11183
|
|
|
11118
|
-
const _excluded$
|
|
11184
|
+
const _excluded$5d = ["color", "size"];
|
|
11119
11185
|
/**
|
|
11120
11186
|
* @typedef {Object} Property1_MessengerChannelProps
|
|
11121
11187
|
* @property {string} [color='currentColor']
|
|
@@ -11130,7 +11196,7 @@ const Property1_MessengerChannel = _ref => {
|
|
|
11130
11196
|
color = 'currentColor',
|
|
11131
11197
|
size = '24'
|
|
11132
11198
|
} = _ref,
|
|
11133
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11199
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5d);
|
|
11134
11200
|
|
|
11135
11201
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11136
11202
|
width: size,
|
|
@@ -11165,7 +11231,7 @@ const Property1_MessengerChannel = _ref => {
|
|
|
11165
11231
|
}))));
|
|
11166
11232
|
};
|
|
11167
11233
|
|
|
11168
|
-
const _excluded$
|
|
11234
|
+
const _excluded$5e = ["color", "size"];
|
|
11169
11235
|
/**
|
|
11170
11236
|
* @typedef {Object} Property1_EmailChannelProps
|
|
11171
11237
|
* @property {string} [color='currentColor']
|
|
@@ -11180,7 +11246,7 @@ const Property1_EmailChannel = _ref => {
|
|
|
11180
11246
|
color = 'currentColor',
|
|
11181
11247
|
size = '24'
|
|
11182
11248
|
} = _ref,
|
|
11183
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11249
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5e);
|
|
11184
11250
|
|
|
11185
11251
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11186
11252
|
width: size,
|
|
@@ -11215,7 +11281,7 @@ const Property1_EmailChannel = _ref => {
|
|
|
11215
11281
|
}))));
|
|
11216
11282
|
};
|
|
11217
11283
|
|
|
11218
|
-
const _excluded$
|
|
11284
|
+
const _excluded$5f = ["color", "size"];
|
|
11219
11285
|
/**
|
|
11220
11286
|
* @typedef {Object} Property1_SmsChannelProps
|
|
11221
11287
|
* @property {string} [color='currentColor']
|
|
@@ -11230,7 +11296,7 @@ const Property1_SmsChannel = _ref => {
|
|
|
11230
11296
|
color = 'currentColor',
|
|
11231
11297
|
size = '24'
|
|
11232
11298
|
} = _ref,
|
|
11233
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11299
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5f);
|
|
11234
11300
|
|
|
11235
11301
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11236
11302
|
width: size,
|
|
@@ -11260,7 +11326,7 @@ const Property1_SmsChannel = _ref => {
|
|
|
11260
11326
|
}))));
|
|
11261
11327
|
};
|
|
11262
11328
|
|
|
11263
|
-
const _excluded$
|
|
11329
|
+
const _excluded$5g = ["color", "size"];
|
|
11264
11330
|
/**
|
|
11265
11331
|
* @typedef {Object} Property1_WhatsAppChannelProps
|
|
11266
11332
|
* @property {string} [color='currentColor']
|
|
@@ -11275,7 +11341,7 @@ const Property1_WhatsAppChannel = _ref => {
|
|
|
11275
11341
|
color = 'currentColor',
|
|
11276
11342
|
size = '24'
|
|
11277
11343
|
} = _ref,
|
|
11278
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11344
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5g);
|
|
11279
11345
|
|
|
11280
11346
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11281
11347
|
width: size,
|
|
@@ -11307,7 +11373,7 @@ const Property1_WhatsAppChannel = _ref => {
|
|
|
11307
11373
|
}))));
|
|
11308
11374
|
};
|
|
11309
11375
|
|
|
11310
|
-
const _excluded$
|
|
11376
|
+
const _excluded$5h = ["color", "size"];
|
|
11311
11377
|
/**
|
|
11312
11378
|
* @typedef {Object} Property1_InstagramChannelProps
|
|
11313
11379
|
* @property {string} [color='currentColor']
|
|
@@ -11322,7 +11388,7 @@ const Property1_InstagramChannel = _ref => {
|
|
|
11322
11388
|
color = 'currentColor',
|
|
11323
11389
|
size = '24'
|
|
11324
11390
|
} = _ref,
|
|
11325
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11391
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5h);
|
|
11326
11392
|
|
|
11327
11393
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11328
11394
|
width: size,
|
|
@@ -11390,7 +11456,7 @@ const Property1_InstagramChannel = _ref => {
|
|
|
11390
11456
|
}))));
|
|
11391
11457
|
};
|
|
11392
11458
|
|
|
11393
|
-
const _excluded$
|
|
11459
|
+
const _excluded$5i = ["color", "size"];
|
|
11394
11460
|
/**
|
|
11395
11461
|
* @typedef {Object} Property1_WebChatProps
|
|
11396
11462
|
* @property {string} [color='currentColor']
|
|
@@ -11405,7 +11471,7 @@ const Property1_WebChat = _ref => {
|
|
|
11405
11471
|
color = 'currentColor',
|
|
11406
11472
|
size = '24'
|
|
11407
11473
|
} = _ref,
|
|
11408
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11474
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5i);
|
|
11409
11475
|
|
|
11410
11476
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11411
11477
|
width: size,
|
|
@@ -11437,7 +11503,7 @@ const Property1_WebChat = _ref => {
|
|
|
11437
11503
|
}))));
|
|
11438
11504
|
};
|
|
11439
11505
|
|
|
11440
|
-
const _excluded$
|
|
11506
|
+
const _excluded$5j = ["color", "size"];
|
|
11441
11507
|
/**
|
|
11442
11508
|
* @typedef {Object} Property1_TelegramChannelProps
|
|
11443
11509
|
* @property {string} [color='currentColor']
|
|
@@ -11452,7 +11518,7 @@ const Property1_TelegramChannel = _ref => {
|
|
|
11452
11518
|
color = 'currentColor',
|
|
11453
11519
|
size = '24'
|
|
11454
11520
|
} = _ref,
|
|
11455
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11521
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5j);
|
|
11456
11522
|
|
|
11457
11523
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11458
11524
|
width: size,
|
|
@@ -11484,7 +11550,7 @@ const Property1_TelegramChannel = _ref => {
|
|
|
11484
11550
|
}))));
|
|
11485
11551
|
};
|
|
11486
11552
|
|
|
11487
|
-
const _excluded$
|
|
11553
|
+
const _excluded$5k = ["color", "size"];
|
|
11488
11554
|
/**
|
|
11489
11555
|
* @typedef {Object} Property1_TikTokChannelProps
|
|
11490
11556
|
* @property {string} [color='currentColor']
|
|
@@ -11499,7 +11565,7 @@ const Property1_TikTokChannel = _ref => {
|
|
|
11499
11565
|
color = 'currentColor',
|
|
11500
11566
|
size = '24'
|
|
11501
11567
|
} = _ref,
|
|
11502
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11568
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5k);
|
|
11503
11569
|
|
|
11504
11570
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11505
11571
|
width: size,
|
|
@@ -11531,7 +11597,7 @@ const Property1_TikTokChannel = _ref => {
|
|
|
11531
11597
|
}))));
|
|
11532
11598
|
};
|
|
11533
11599
|
|
|
11534
|
-
const _excluded$
|
|
11600
|
+
const _excluded$5l = ["color", "size"];
|
|
11535
11601
|
/**
|
|
11536
11602
|
* @typedef {Object} AiKnowledgeProps
|
|
11537
11603
|
* @property {string} [color='currentColor']
|
|
@@ -11546,7 +11612,7 @@ const AiKnowledge = _ref => {
|
|
|
11546
11612
|
color = 'currentColor',
|
|
11547
11613
|
size = '24'
|
|
11548
11614
|
} = _ref,
|
|
11549
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
|
11615
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$5l);
|
|
11550
11616
|
|
|
11551
11617
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11552
11618
|
width: size,
|
|
@@ -11570,4 +11636,4 @@ const AiKnowledge = _ref => {
|
|
|
11570
11636
|
}));
|
|
11571
11637
|
};
|
|
11572
11638
|
|
|
11573
|
-
export { Action, ActionMarkConversationAsDone, Activecampaign, AddCircle, AddTag, Ads, AdsAd, AdsAdSet, Ai, AiFilled, AiIntention, AiKnowledge, AiStep, 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, AutomationsPausedFilled, AutomationsStoppedFilled, Basics, Bigcommerce, Bold, Book, Bot, BotRemove, Broadcasting, BuilderAudio, BuilderCard, BuilderGallery, BuilderInput, BuilderList, BuilderText, Bullet, ButtonEmailBlock, Calendar, Camera, CannedResponse, Canva, Cart, Cgt20, ChatGpt, CheckCircle, CheckboxDone, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Claude, 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, DeepSeek, DefaultReply, Delay, Delete, DeleteForever, DeleteTag, DoubleChevrotBack, DoubleChevrotCollapse, DoubleChevrotExpand, DoubleChevrotForward, DoubleTick, DragConnector, DragItem, DuplicateSms, Edit, ExitFullscreen, Export, Facebook, FacebookMessenger, Faq, FbChat, Female, Filter, Fitness, Flodesk, Flow, Folder, FolderAdd, FolderAdsCampaign, FolderOpen, Fullscreen, GoToFlow, Google, GoogleAlt, 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, InstagramChannel3, InstagramDmList, Integromat, Italic, Kajabi, Keyboard, Keywords, Klaviyo, Link, LiveChat, Location, Logout, Magento, MagicWand, Magnet, MailChimp, Male, Mention, Menu, MessageBack, MessageOpen, MessageTemplates, Messenger, MessengerList, Mic, Minus, MoreChannels, MoreHor, MoreVert, MosaicView, MoveTo, Nationality, NavCollapse, NavExpand, 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, Property1_EmailChannel, Property1_InstagramChannel, Property1_MessengerChannel, Property1_SmsChannel, Property1_TelegramChannel, Property1_TikTokChannel, Property1_WebChat, Property1_WhatsAppChannel, Protect, PublicChangelog, Publish, Qr, Question, RealEstate, Redo, Reels, Retail, Retry, ReturnKey, Rules, Salesforce, Search, SelectAll, Send, Send2, SendMessage, Sequences, SequencesAdd, SequencesRemove, Settings, Share, Shopify, ShopifyDeprecated, Show, ShowFlow, ShowcaseProducts, Smile, Sms, SolidArrowUnsorted, Sort, SortDown, SortUp, Spacing, Spinner, SponsoredMessages, SponsoredMessages2, Star, Starred, StartFlow, Stop, Stop2, StopRecord, SystemField, TableView, Tap, Telegram, TelegramChannel2, TemplateMediaBg, TemplateStore, TemplateTextMedia, Templates, Text, ThumbDown, ThumbUp, Tick, Ticket, TikTok, TikTokChannel2, Time, TimeAdd, Transgender, TriggerFbAds, TriggerFbComments, TriggerFbComments20, TriggerIgStoryReply, TriggerNewSubscriber, Triggers, TriggersLines, Unassign, Underline, Undo, Unpin, Unprotect, Unread, Unsubscribed, User, UserAdd, Video, VideoCircleTg, Warning, WebsiteRedirect, WelcomeMessage, WhatsAppWidget, Wiseagent, Woocommerce, Zapier, Zillow };
|
|
11639
|
+
export { Action, ActionMarkConversationAsDone, Activecampaign, AddCircle, AddTag, Ads, AdsAd, AdsAdSet, Ai, AiAnswersSkill, AiEngagementSkill, AiFilled, AiIntention, AiKnowledge, AiStep, 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, AutomationsPausedFilled, AutomationsStoppedFilled, Basics, Bigcommerce, Bold, Book, Bot, BotRemove, Broadcasting, BuilderAudio, BuilderCard, BuilderGallery, BuilderInput, BuilderList, BuilderText, Bullet, ButtonEmailBlock, Calendar, Camera, CannedResponse, Canva, Cart, Cgt20, ChatGpt, CheckCircle, CheckboxDone, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Claude, 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, DeepSeek, DefaultReply, Delay, Delete, DeleteForever, DeleteTag, DoubleChevrotBack, DoubleChevrotCollapse, DoubleChevrotExpand, DoubleChevrotForward, DoubleTick, DragConnector, DragItem, DuplicateSms, Edit, ExitFullscreen, Export, Facebook, FacebookMessenger, Faq, FbChat, Female, Filter, Fitness, Flodesk, Flow, Folder, FolderAdd, FolderAdsCampaign, FolderOpen, Fullscreen, GoToFlow, Google, GoogleAlt, 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, InstagramChannel3, InstagramDmList, Integromat, Italic, Kajabi, Keyboard, Keywords, Klaviyo, Link, LiveChat, Location, Logout, Magento, MagicWand, Magnet, MailChimp, Male, Mention, Menu, MessageBack, MessageOpen, MessageTemplates, Messenger, MessengerList, Mic, Minus, MoreChannels, MoreHor, MoreVert, MosaicView, MoveTo, Nationality, NavCollapse, NavExpand, 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, Property1_EmailChannel, Property1_InstagramChannel, Property1_MessengerChannel, Property1_SmsChannel, Property1_TelegramChannel, Property1_TikTokChannel, Property1_WebChat, Property1_WhatsAppChannel, Protect, PublicChangelog, Publish, Qr, Question, RealEstate, Redo, Reels, Retail, Retry, ReturnKey, Rules, Salesforce, Search, SelectAll, Send, Send2, SendMessage, Sequences, SequencesAdd, SequencesRemove, Settings, Share, Shopify, ShopifyDeprecated, Show, ShowFlow, ShowcaseProducts, Smile, Sms, SolidArrowUnsorted, Sort, SortDown, SortUp, Spacing, Spinner, SponsoredMessages, SponsoredMessages2, Star, Starred, StartFlow, Stop, Stop2, StopRecord, SystemField, TableView, Tap, Telegram, TelegramChannel2, TemplateMediaBg, TemplateStore, TemplateTextMedia, Templates, Text, ThumbDown, ThumbUp, Tick, Ticket, TikTok, TikTokChannel2, Time, TimeAdd, Transgender, TriggerFbAds, TriggerFbComments, TriggerFbComments20, TriggerIgStoryReply, TriggerNewSubscriber, Triggers, TriggersLines, Unassign, Underline, Undo, Unpin, Unprotect, Unread, Unsubscribed, User, UserAdd, Video, VideoCircleTg, Warning, WebsiteRedirect, WelcomeMessage, WhatsAppWidget, Wiseagent, Woocommerce, Zapier, Zillow };
|