@manychat/icons 4.26.0 → 4.27.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 +187 -108
- package/dist/index.js +188 -107
- package/package.json +1 -1
- package/umd/mcicons.js +184 -107
- package/umd/mcicons.min.js +1 -1
package/dist/index.js
CHANGED
|
@@ -9660,13 +9660,61 @@ Google.defaultProps = {
|
|
|
9660
9660
|
|
|
9661
9661
|
const _excluded$4m = ["color", "size"];
|
|
9662
9662
|
|
|
9663
|
-
const
|
|
9663
|
+
const GoogleAlt = props => {
|
|
9664
9664
|
const {
|
|
9665
9665
|
color,
|
|
9666
9666
|
size
|
|
9667
9667
|
} = props,
|
|
9668
9668
|
otherProps = _objectWithoutProperties(props, _excluded$4m);
|
|
9669
9669
|
|
|
9670
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9671
|
+
width: size,
|
|
9672
|
+
height: size,
|
|
9673
|
+
viewBox: "0 0 24 24",
|
|
9674
|
+
fill: "none",
|
|
9675
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9676
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
9677
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
9678
|
+
fillRule: "evenodd",
|
|
9679
|
+
clipRule: "evenodd",
|
|
9680
|
+
d: "M21.6 12.2266C21.6 11.5175 21.5364 10.8357 21.4182 10.1812H12V14.0493H17.3818C17.15 15.2993 16.4455 16.3584 15.3864 17.0675V19.5766H18.6182C20.5091 17.8357 21.6 15.2721 21.6 12.2266Z",
|
|
9681
|
+
fill: color
|
|
9682
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
9683
|
+
fillRule: "evenodd",
|
|
9684
|
+
clipRule: "evenodd",
|
|
9685
|
+
d: "M11.9992 22.0002C14.6992 22.0002 16.9628 21.1048 18.6174 19.5775L15.3856 17.0684C14.4901 17.6684 13.3446 18.023 11.9992 18.023C9.39465 18.023 7.1901 16.2639 6.40374 13.9002H3.06283V16.4911C4.70828 19.7593 8.0901 22.0002 11.9992 22.0002Z",
|
|
9686
|
+
fill: color
|
|
9687
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
9688
|
+
fillRule: "evenodd",
|
|
9689
|
+
clipRule: "evenodd",
|
|
9690
|
+
d: "M6.40455 13.8995C6.20455 13.2995 6.09091 12.6586 6.09091 11.9995C6.09091 11.3404 6.20455 10.6995 6.40455 10.0995V7.50863H3.06364C2.38636 8.85863 2 10.3859 2 11.9995C2 13.6132 2.38636 15.1404 3.06364 16.4904L6.40455 13.8995Z",
|
|
9691
|
+
fill: color
|
|
9692
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
9693
|
+
fillRule: "evenodd",
|
|
9694
|
+
clipRule: "evenodd",
|
|
9695
|
+
d: "M11.9992 5.97727C13.4674 5.97727 14.7856 6.48182 15.8219 7.47273L18.6901 4.60455C16.9583 2.99091 14.6946 2 11.9992 2C8.0901 2 4.70909 4.24044 3.06364 7.50863L6.40455 10.0995C7.19091 7.7359 9.39465 5.97727 11.9992 5.97727Z",
|
|
9696
|
+
fill: color
|
|
9697
|
+
}));
|
|
9698
|
+
};
|
|
9699
|
+
|
|
9700
|
+
GoogleAlt.propTypes = {
|
|
9701
|
+
color: PropTypes.string,
|
|
9702
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
9703
|
+
};
|
|
9704
|
+
GoogleAlt.defaultProps = {
|
|
9705
|
+
color: 'currentColor',
|
|
9706
|
+
size: '24'
|
|
9707
|
+
};
|
|
9708
|
+
|
|
9709
|
+
const _excluded$4n = ["color", "size"];
|
|
9710
|
+
|
|
9711
|
+
const Facebook = props => {
|
|
9712
|
+
const {
|
|
9713
|
+
color,
|
|
9714
|
+
size
|
|
9715
|
+
} = props,
|
|
9716
|
+
otherProps = _objectWithoutProperties(props, _excluded$4n);
|
|
9717
|
+
|
|
9670
9718
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9671
9719
|
width: size,
|
|
9672
9720
|
height: size,
|
|
@@ -9691,14 +9739,14 @@ Facebook.defaultProps = {
|
|
|
9691
9739
|
size: '24'
|
|
9692
9740
|
};
|
|
9693
9741
|
|
|
9694
|
-
const _excluded$
|
|
9742
|
+
const _excluded$4o = ["color", "size"];
|
|
9695
9743
|
|
|
9696
9744
|
const OmnichannelWidget = props => {
|
|
9697
9745
|
const {
|
|
9698
9746
|
color,
|
|
9699
9747
|
size
|
|
9700
9748
|
} = props,
|
|
9701
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9749
|
+
otherProps = _objectWithoutProperties(props, _excluded$4o);
|
|
9702
9750
|
|
|
9703
9751
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9704
9752
|
width: size,
|
|
@@ -9722,14 +9770,14 @@ OmnichannelWidget.defaultProps = {
|
|
|
9722
9770
|
size: '24'
|
|
9723
9771
|
};
|
|
9724
9772
|
|
|
9725
|
-
const _excluded$
|
|
9773
|
+
const _excluded$4p = ["color", "size"];
|
|
9726
9774
|
|
|
9727
9775
|
const IncreaseEngagement = props => {
|
|
9728
9776
|
const {
|
|
9729
9777
|
color,
|
|
9730
9778
|
size
|
|
9731
9779
|
} = props,
|
|
9732
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9780
|
+
otherProps = _objectWithoutProperties(props, _excluded$4p);
|
|
9733
9781
|
|
|
9734
9782
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9735
9783
|
width: size,
|
|
@@ -9753,14 +9801,14 @@ IncreaseEngagement.defaultProps = {
|
|
|
9753
9801
|
size: '24'
|
|
9754
9802
|
};
|
|
9755
9803
|
|
|
9756
|
-
const _excluded$
|
|
9804
|
+
const _excluded$4q = ["color", "size"];
|
|
9757
9805
|
|
|
9758
9806
|
const ShowcaseProducts = props => {
|
|
9759
9807
|
const {
|
|
9760
9808
|
color,
|
|
9761
9809
|
size
|
|
9762
9810
|
} = props,
|
|
9763
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9811
|
+
otherProps = _objectWithoutProperties(props, _excluded$4q);
|
|
9764
9812
|
|
|
9765
9813
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9766
9814
|
width: size,
|
|
@@ -9784,14 +9832,14 @@ ShowcaseProducts.defaultProps = {
|
|
|
9784
9832
|
size: '24'
|
|
9785
9833
|
};
|
|
9786
9834
|
|
|
9787
|
-
const _excluded$
|
|
9835
|
+
const _excluded$4r = ["color", "size"];
|
|
9788
9836
|
|
|
9789
9837
|
const Faq = props => {
|
|
9790
9838
|
const {
|
|
9791
9839
|
color,
|
|
9792
9840
|
size
|
|
9793
9841
|
} = props,
|
|
9794
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9842
|
+
otherProps = _objectWithoutProperties(props, _excluded$4r);
|
|
9795
9843
|
|
|
9796
9844
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9797
9845
|
width: size,
|
|
@@ -9815,14 +9863,14 @@ Faq.defaultProps = {
|
|
|
9815
9863
|
size: '24'
|
|
9816
9864
|
};
|
|
9817
9865
|
|
|
9818
|
-
const _excluded$
|
|
9866
|
+
const _excluded$4s = ["color", "size"];
|
|
9819
9867
|
|
|
9820
9868
|
const WebsiteRedirect = props => {
|
|
9821
9869
|
const {
|
|
9822
9870
|
color,
|
|
9823
9871
|
size
|
|
9824
9872
|
} = props,
|
|
9825
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9873
|
+
otherProps = _objectWithoutProperties(props, _excluded$4s);
|
|
9826
9874
|
|
|
9827
9875
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9828
9876
|
width: size,
|
|
@@ -9846,14 +9894,14 @@ WebsiteRedirect.defaultProps = {
|
|
|
9846
9894
|
size: '24'
|
|
9847
9895
|
};
|
|
9848
9896
|
|
|
9849
|
-
const _excluded$
|
|
9897
|
+
const _excluded$4t = ["color", "size"];
|
|
9850
9898
|
|
|
9851
9899
|
const Telegram = props => {
|
|
9852
9900
|
const {
|
|
9853
9901
|
color,
|
|
9854
9902
|
size
|
|
9855
9903
|
} = props,
|
|
9856
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9904
|
+
otherProps = _objectWithoutProperties(props, _excluded$4t);
|
|
9857
9905
|
|
|
9858
9906
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9859
9907
|
width: size,
|
|
@@ -9879,14 +9927,14 @@ Telegram.defaultProps = {
|
|
|
9879
9927
|
size: '24'
|
|
9880
9928
|
};
|
|
9881
9929
|
|
|
9882
|
-
const _excluded$
|
|
9930
|
+
const _excluded$4u = ["color", "size"];
|
|
9883
9931
|
|
|
9884
9932
|
const Tap = props => {
|
|
9885
9933
|
const {
|
|
9886
9934
|
color,
|
|
9887
9935
|
size
|
|
9888
9936
|
} = props,
|
|
9889
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9937
|
+
otherProps = _objectWithoutProperties(props, _excluded$4u);
|
|
9890
9938
|
|
|
9891
9939
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9892
9940
|
width: size,
|
|
@@ -9915,14 +9963,14 @@ Tap.defaultProps = {
|
|
|
9915
9963
|
size: '24'
|
|
9916
9964
|
};
|
|
9917
9965
|
|
|
9918
|
-
const _excluded$
|
|
9966
|
+
const _excluded$4v = ["color", "size"];
|
|
9919
9967
|
|
|
9920
9968
|
const NewOrphanMobile = props => {
|
|
9921
9969
|
const {
|
|
9922
9970
|
color,
|
|
9923
9971
|
size
|
|
9924
9972
|
} = props,
|
|
9925
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
9973
|
+
otherProps = _objectWithoutProperties(props, _excluded$4v);
|
|
9926
9974
|
|
|
9927
9975
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9928
9976
|
width: size,
|
|
@@ -9954,14 +10002,14 @@ NewOrphanMobile.defaultProps = {
|
|
|
9954
10002
|
size: '24'
|
|
9955
10003
|
};
|
|
9956
10004
|
|
|
9957
|
-
const _excluded$
|
|
10005
|
+
const _excluded$4w = ["color", "size"];
|
|
9958
10006
|
|
|
9959
10007
|
const Export = props => {
|
|
9960
10008
|
const {
|
|
9961
10009
|
color,
|
|
9962
10010
|
size
|
|
9963
10011
|
} = props,
|
|
9964
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10012
|
+
otherProps = _objectWithoutProperties(props, _excluded$4w);
|
|
9965
10013
|
|
|
9966
10014
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
9967
10015
|
width: size,
|
|
@@ -9988,14 +10036,14 @@ Export.defaultProps = {
|
|
|
9988
10036
|
size: '24'
|
|
9989
10037
|
};
|
|
9990
10038
|
|
|
9991
|
-
const _excluded$
|
|
10039
|
+
const _excluded$4x = ["color", "size"];
|
|
9992
10040
|
|
|
9993
10041
|
const Ai = props => {
|
|
9994
10042
|
const {
|
|
9995
10043
|
color,
|
|
9996
10044
|
size
|
|
9997
10045
|
} = props,
|
|
9998
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10046
|
+
otherProps = _objectWithoutProperties(props, _excluded$4x);
|
|
9999
10047
|
|
|
10000
10048
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10001
10049
|
width: size,
|
|
@@ -10022,14 +10070,14 @@ Ai.defaultProps = {
|
|
|
10022
10070
|
size: '24'
|
|
10023
10071
|
};
|
|
10024
10072
|
|
|
10025
|
-
const _excluded$
|
|
10073
|
+
const _excluded$4y = ["color", "size"];
|
|
10026
10074
|
|
|
10027
10075
|
const AiStep = props => {
|
|
10028
10076
|
const {
|
|
10029
10077
|
color,
|
|
10030
10078
|
size
|
|
10031
10079
|
} = props,
|
|
10032
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10080
|
+
otherProps = _objectWithoutProperties(props, _excluded$4y);
|
|
10033
10081
|
|
|
10034
10082
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10035
10083
|
width: size,
|
|
@@ -10063,14 +10111,14 @@ AiStep.defaultProps = {
|
|
|
10063
10111
|
size: '24'
|
|
10064
10112
|
};
|
|
10065
10113
|
|
|
10066
|
-
const _excluded$
|
|
10114
|
+
const _excluded$4z = ["color", "size"];
|
|
10067
10115
|
|
|
10068
10116
|
const AiIntention = props => {
|
|
10069
10117
|
const {
|
|
10070
10118
|
color,
|
|
10071
10119
|
size
|
|
10072
10120
|
} = props,
|
|
10073
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10121
|
+
otherProps = _objectWithoutProperties(props, _excluded$4z);
|
|
10074
10122
|
|
|
10075
10123
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10076
10124
|
width: size,
|
|
@@ -10104,14 +10152,14 @@ AiIntention.defaultProps = {
|
|
|
10104
10152
|
size: '24'
|
|
10105
10153
|
};
|
|
10106
10154
|
|
|
10107
|
-
const _excluded$
|
|
10155
|
+
const _excluded$4A = ["color", "size"];
|
|
10108
10156
|
|
|
10109
10157
|
const AiFilled = props => {
|
|
10110
10158
|
const {
|
|
10111
10159
|
color,
|
|
10112
10160
|
size
|
|
10113
10161
|
} = props,
|
|
10114
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10162
|
+
otherProps = _objectWithoutProperties(props, _excluded$4A);
|
|
10115
10163
|
|
|
10116
10164
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10117
10165
|
width: size,
|
|
@@ -10140,14 +10188,14 @@ AiFilled.defaultProps = {
|
|
|
10140
10188
|
size: '24'
|
|
10141
10189
|
};
|
|
10142
10190
|
|
|
10143
|
-
const _excluded$
|
|
10191
|
+
const _excluded$4B = ["color", "size"];
|
|
10144
10192
|
|
|
10145
10193
|
const Bigcommerce = props => {
|
|
10146
10194
|
const {
|
|
10147
10195
|
color,
|
|
10148
10196
|
size
|
|
10149
10197
|
} = props,
|
|
10150
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10198
|
+
otherProps = _objectWithoutProperties(props, _excluded$4B);
|
|
10151
10199
|
|
|
10152
10200
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10153
10201
|
width: size,
|
|
@@ -10171,14 +10219,14 @@ Bigcommerce.defaultProps = {
|
|
|
10171
10219
|
size: '24'
|
|
10172
10220
|
};
|
|
10173
10221
|
|
|
10174
|
-
const _excluded$
|
|
10222
|
+
const _excluded$4C = ["color", "size"];
|
|
10175
10223
|
|
|
10176
10224
|
const Woocommerce = props => {
|
|
10177
10225
|
const {
|
|
10178
10226
|
color,
|
|
10179
10227
|
size
|
|
10180
10228
|
} = props,
|
|
10181
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10229
|
+
otherProps = _objectWithoutProperties(props, _excluded$4C);
|
|
10182
10230
|
|
|
10183
10231
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10184
10232
|
width: size,
|
|
@@ -10205,14 +10253,14 @@ Woocommerce.defaultProps = {
|
|
|
10205
10253
|
size: '24'
|
|
10206
10254
|
};
|
|
10207
10255
|
|
|
10208
|
-
const _excluded$
|
|
10256
|
+
const _excluded$4D = ["color", "size"];
|
|
10209
10257
|
|
|
10210
10258
|
const Amazon = props => {
|
|
10211
10259
|
const {
|
|
10212
10260
|
color,
|
|
10213
10261
|
size
|
|
10214
10262
|
} = props,
|
|
10215
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10263
|
+
otherProps = _objectWithoutProperties(props, _excluded$4D);
|
|
10216
10264
|
|
|
10217
10265
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10218
10266
|
width: size,
|
|
@@ -10239,14 +10287,14 @@ Amazon.defaultProps = {
|
|
|
10239
10287
|
size: '24'
|
|
10240
10288
|
};
|
|
10241
10289
|
|
|
10242
|
-
const _excluded$
|
|
10290
|
+
const _excluded$4E = ["color", "size"];
|
|
10243
10291
|
|
|
10244
10292
|
const Hotmart = props => {
|
|
10245
10293
|
const {
|
|
10246
10294
|
color,
|
|
10247
10295
|
size
|
|
10248
10296
|
} = props,
|
|
10249
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10297
|
+
otherProps = _objectWithoutProperties(props, _excluded$4E);
|
|
10250
10298
|
|
|
10251
10299
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10252
10300
|
width: size,
|
|
@@ -10270,14 +10318,14 @@ Hotmart.defaultProps = {
|
|
|
10270
10318
|
size: '24'
|
|
10271
10319
|
};
|
|
10272
10320
|
|
|
10273
|
-
const _excluded$
|
|
10321
|
+
const _excluded$4F = ["color", "size"];
|
|
10274
10322
|
|
|
10275
10323
|
const Creator = props => {
|
|
10276
10324
|
const {
|
|
10277
10325
|
color,
|
|
10278
10326
|
size
|
|
10279
10327
|
} = props,
|
|
10280
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10328
|
+
otherProps = _objectWithoutProperties(props, _excluded$4F);
|
|
10281
10329
|
|
|
10282
10330
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10283
10331
|
width: size,
|
|
@@ -10301,14 +10349,14 @@ Creator.defaultProps = {
|
|
|
10301
10349
|
size: '24'
|
|
10302
10350
|
};
|
|
10303
10351
|
|
|
10304
|
-
const _excluded$
|
|
10352
|
+
const _excluded$4G = ["color", "size"];
|
|
10305
10353
|
|
|
10306
10354
|
const InstagramDmList = props => {
|
|
10307
10355
|
const {
|
|
10308
10356
|
color,
|
|
10309
10357
|
size
|
|
10310
10358
|
} = props,
|
|
10311
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10359
|
+
otherProps = _objectWithoutProperties(props, _excluded$4G);
|
|
10312
10360
|
|
|
10313
10361
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10314
10362
|
width: size,
|
|
@@ -10343,14 +10391,14 @@ InstagramDmList.defaultProps = {
|
|
|
10343
10391
|
size: '24'
|
|
10344
10392
|
};
|
|
10345
10393
|
|
|
10346
|
-
const _excluded$
|
|
10394
|
+
const _excluded$4H = ["color", "size"];
|
|
10347
10395
|
|
|
10348
10396
|
const RealEstate = props => {
|
|
10349
10397
|
const {
|
|
10350
10398
|
color,
|
|
10351
10399
|
size
|
|
10352
10400
|
} = props,
|
|
10353
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10401
|
+
otherProps = _objectWithoutProperties(props, _excluded$4H);
|
|
10354
10402
|
|
|
10355
10403
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10356
10404
|
width: size,
|
|
@@ -10374,14 +10422,14 @@ RealEstate.defaultProps = {
|
|
|
10374
10422
|
size: '24'
|
|
10375
10423
|
};
|
|
10376
10424
|
|
|
10377
|
-
const _excluded$
|
|
10425
|
+
const _excluded$4I = ["color", "size"];
|
|
10378
10426
|
|
|
10379
10427
|
const Basics = props => {
|
|
10380
10428
|
const {
|
|
10381
10429
|
color,
|
|
10382
10430
|
size
|
|
10383
10431
|
} = props,
|
|
10384
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10432
|
+
otherProps = _objectWithoutProperties(props, _excluded$4I);
|
|
10385
10433
|
|
|
10386
10434
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10387
10435
|
width: size,
|
|
@@ -10417,14 +10465,14 @@ Basics.defaultProps = {
|
|
|
10417
10465
|
size: '24'
|
|
10418
10466
|
};
|
|
10419
10467
|
|
|
10420
|
-
const _excluded$
|
|
10468
|
+
const _excluded$4J = ["color", "size"];
|
|
10421
10469
|
|
|
10422
10470
|
const Fitness = props => {
|
|
10423
10471
|
const {
|
|
10424
10472
|
color,
|
|
10425
10473
|
size
|
|
10426
10474
|
} = props,
|
|
10427
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10475
|
+
otherProps = _objectWithoutProperties(props, _excluded$4J);
|
|
10428
10476
|
|
|
10429
10477
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10430
10478
|
width: size,
|
|
@@ -10448,14 +10496,14 @@ Fitness.defaultProps = {
|
|
|
10448
10496
|
size: '24'
|
|
10449
10497
|
};
|
|
10450
10498
|
|
|
10451
|
-
const _excluded$
|
|
10499
|
+
const _excluded$4K = ["color", "size"];
|
|
10452
10500
|
|
|
10453
10501
|
const Hotel = props => {
|
|
10454
10502
|
const {
|
|
10455
10503
|
color,
|
|
10456
10504
|
size
|
|
10457
10505
|
} = props,
|
|
10458
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10506
|
+
otherProps = _objectWithoutProperties(props, _excluded$4K);
|
|
10459
10507
|
|
|
10460
10508
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10461
10509
|
width: size,
|
|
@@ -10479,14 +10527,14 @@ Hotel.defaultProps = {
|
|
|
10479
10527
|
size: '24'
|
|
10480
10528
|
};
|
|
10481
10529
|
|
|
10482
|
-
const _excluded$
|
|
10530
|
+
const _excluded$4L = ["color", "size"];
|
|
10483
10531
|
|
|
10484
10532
|
const Organization = props => {
|
|
10485
10533
|
const {
|
|
10486
10534
|
color,
|
|
10487
10535
|
size
|
|
10488
10536
|
} = props,
|
|
10489
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10537
|
+
otherProps = _objectWithoutProperties(props, _excluded$4L);
|
|
10490
10538
|
|
|
10491
10539
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10492
10540
|
width: size,
|
|
@@ -10510,14 +10558,14 @@ Organization.defaultProps = {
|
|
|
10510
10558
|
size: '24'
|
|
10511
10559
|
};
|
|
10512
10560
|
|
|
10513
|
-
const _excluded$
|
|
10561
|
+
const _excluded$4M = ["color", "size"];
|
|
10514
10562
|
|
|
10515
10563
|
const ProfessionalConsulting = props => {
|
|
10516
10564
|
const {
|
|
10517
10565
|
color,
|
|
10518
10566
|
size
|
|
10519
10567
|
} = props,
|
|
10520
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10568
|
+
otherProps = _objectWithoutProperties(props, _excluded$4M);
|
|
10521
10569
|
|
|
10522
10570
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10523
10571
|
width: size,
|
|
@@ -10541,14 +10589,14 @@ ProfessionalConsulting.defaultProps = {
|
|
|
10541
10589
|
size: '24'
|
|
10542
10590
|
};
|
|
10543
10591
|
|
|
10544
|
-
const _excluded$
|
|
10592
|
+
const _excluded$4N = ["color", "size"];
|
|
10545
10593
|
|
|
10546
10594
|
const MessengerList = props => {
|
|
10547
10595
|
const {
|
|
10548
10596
|
color,
|
|
10549
10597
|
size
|
|
10550
10598
|
} = props,
|
|
10551
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10599
|
+
otherProps = _objectWithoutProperties(props, _excluded$4N);
|
|
10552
10600
|
|
|
10553
10601
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10554
10602
|
width: size,
|
|
@@ -10578,14 +10626,14 @@ MessengerList.defaultProps = {
|
|
|
10578
10626
|
size: '24'
|
|
10579
10627
|
};
|
|
10580
10628
|
|
|
10581
|
-
const _excluded$
|
|
10629
|
+
const _excluded$4O = ["color", "size"];
|
|
10582
10630
|
|
|
10583
10631
|
const Integromat = props => {
|
|
10584
10632
|
const {
|
|
10585
10633
|
color,
|
|
10586
10634
|
size
|
|
10587
10635
|
} = props,
|
|
10588
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10636
|
+
otherProps = _objectWithoutProperties(props, _excluded$4O);
|
|
10589
10637
|
|
|
10590
10638
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10591
10639
|
width: size,
|
|
@@ -10609,14 +10657,14 @@ Integromat.defaultProps = {
|
|
|
10609
10657
|
size: '24'
|
|
10610
10658
|
};
|
|
10611
10659
|
|
|
10612
|
-
const _excluded$
|
|
10660
|
+
const _excluded$4P = ["color", "size"];
|
|
10613
10661
|
|
|
10614
10662
|
const Hubspot = props => {
|
|
10615
10663
|
const {
|
|
10616
10664
|
color,
|
|
10617
10665
|
size
|
|
10618
10666
|
} = props,
|
|
10619
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10667
|
+
otherProps = _objectWithoutProperties(props, _excluded$4P);
|
|
10620
10668
|
|
|
10621
10669
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10622
10670
|
width: size,
|
|
@@ -10640,14 +10688,14 @@ Hubspot.defaultProps = {
|
|
|
10640
10688
|
size: '24'
|
|
10641
10689
|
};
|
|
10642
10690
|
|
|
10643
|
-
const _excluded$
|
|
10691
|
+
const _excluded$4Q = ["color", "size"];
|
|
10644
10692
|
|
|
10645
10693
|
const Klaviyo = props => {
|
|
10646
10694
|
const {
|
|
10647
10695
|
color,
|
|
10648
10696
|
size
|
|
10649
10697
|
} = props,
|
|
10650
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10698
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Q);
|
|
10651
10699
|
|
|
10652
10700
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10653
10701
|
width: size,
|
|
@@ -10695,14 +10743,14 @@ Klaviyo.defaultProps = {
|
|
|
10695
10743
|
size: '24'
|
|
10696
10744
|
};
|
|
10697
10745
|
|
|
10698
|
-
const _excluded$
|
|
10746
|
+
const _excluded$4R = ["color", "size"];
|
|
10699
10747
|
|
|
10700
10748
|
const Activecampaign = props => {
|
|
10701
10749
|
const {
|
|
10702
10750
|
color,
|
|
10703
10751
|
size
|
|
10704
10752
|
} = props,
|
|
10705
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10753
|
+
otherProps = _objectWithoutProperties(props, _excluded$4R);
|
|
10706
10754
|
|
|
10707
10755
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10708
10756
|
width: size,
|
|
@@ -10728,14 +10776,14 @@ Activecampaign.defaultProps = {
|
|
|
10728
10776
|
size: '24'
|
|
10729
10777
|
};
|
|
10730
10778
|
|
|
10731
|
-
const _excluded$
|
|
10779
|
+
const _excluded$4S = ["color", "size"];
|
|
10732
10780
|
|
|
10733
10781
|
const ChatGpt = props => {
|
|
10734
10782
|
const {
|
|
10735
10783
|
color,
|
|
10736
10784
|
size
|
|
10737
10785
|
} = props,
|
|
10738
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10786
|
+
otherProps = _objectWithoutProperties(props, _excluded$4S);
|
|
10739
10787
|
|
|
10740
10788
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10741
10789
|
width: size,
|
|
@@ -10759,14 +10807,14 @@ ChatGpt.defaultProps = {
|
|
|
10759
10807
|
size: '24'
|
|
10760
10808
|
};
|
|
10761
10809
|
|
|
10762
|
-
const _excluded$
|
|
10810
|
+
const _excluded$4T = ["color", "size"];
|
|
10763
10811
|
|
|
10764
10812
|
const MailChimp = props => {
|
|
10765
10813
|
const {
|
|
10766
10814
|
color,
|
|
10767
10815
|
size
|
|
10768
10816
|
} = props,
|
|
10769
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10817
|
+
otherProps = _objectWithoutProperties(props, _excluded$4T);
|
|
10770
10818
|
|
|
10771
10819
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10772
10820
|
width: size,
|
|
@@ -10808,14 +10856,14 @@ MailChimp.defaultProps = {
|
|
|
10808
10856
|
size: '24'
|
|
10809
10857
|
};
|
|
10810
10858
|
|
|
10811
|
-
const _excluded$
|
|
10859
|
+
const _excluded$4U = ["color", "size"];
|
|
10812
10860
|
|
|
10813
10861
|
const ConvertKit = props => {
|
|
10814
10862
|
const {
|
|
10815
10863
|
color,
|
|
10816
10864
|
size
|
|
10817
10865
|
} = props,
|
|
10818
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10866
|
+
otherProps = _objectWithoutProperties(props, _excluded$4U);
|
|
10819
10867
|
|
|
10820
10868
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10821
10869
|
width: size,
|
|
@@ -10839,14 +10887,14 @@ ConvertKit.defaultProps = {
|
|
|
10839
10887
|
size: '24'
|
|
10840
10888
|
};
|
|
10841
10889
|
|
|
10842
|
-
const _excluded$
|
|
10890
|
+
const _excluded$4V = ["color", "size"];
|
|
10843
10891
|
|
|
10844
10892
|
const GoogleSheets = props => {
|
|
10845
10893
|
const {
|
|
10846
10894
|
color,
|
|
10847
10895
|
size
|
|
10848
10896
|
} = props,
|
|
10849
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10897
|
+
otherProps = _objectWithoutProperties(props, _excluded$4V);
|
|
10850
10898
|
|
|
10851
10899
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10852
10900
|
width: size,
|
|
@@ -10881,14 +10929,14 @@ GoogleSheets.defaultProps = {
|
|
|
10881
10929
|
size: '24'
|
|
10882
10930
|
};
|
|
10883
10931
|
|
|
10884
|
-
const _excluded$
|
|
10932
|
+
const _excluded$4W = ["color", "size"];
|
|
10885
10933
|
|
|
10886
10934
|
const Salesforce = props => {
|
|
10887
10935
|
const {
|
|
10888
10936
|
color,
|
|
10889
10937
|
size
|
|
10890
10938
|
} = props,
|
|
10891
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10939
|
+
otherProps = _objectWithoutProperties(props, _excluded$4W);
|
|
10892
10940
|
|
|
10893
10941
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10894
10942
|
width: size,
|
|
@@ -10921,14 +10969,14 @@ Salesforce.defaultProps = {
|
|
|
10921
10969
|
size: '24'
|
|
10922
10970
|
};
|
|
10923
10971
|
|
|
10924
|
-
const _excluded$
|
|
10972
|
+
const _excluded$4X = ["color", "size"];
|
|
10925
10973
|
|
|
10926
10974
|
const Pipedrive = props => {
|
|
10927
10975
|
const {
|
|
10928
10976
|
color,
|
|
10929
10977
|
size
|
|
10930
10978
|
} = props,
|
|
10931
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
10979
|
+
otherProps = _objectWithoutProperties(props, _excluded$4X);
|
|
10932
10980
|
|
|
10933
10981
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10934
10982
|
width: size,
|
|
@@ -10955,14 +11003,14 @@ Pipedrive.defaultProps = {
|
|
|
10955
11003
|
size: '24'
|
|
10956
11004
|
};
|
|
10957
11005
|
|
|
10958
|
-
const _excluded$
|
|
11006
|
+
const _excluded$4Y = ["color", "size"];
|
|
10959
11007
|
|
|
10960
11008
|
const Wiseagent = props => {
|
|
10961
11009
|
const {
|
|
10962
11010
|
color,
|
|
10963
11011
|
size
|
|
10964
11012
|
} = props,
|
|
10965
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11013
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Y);
|
|
10966
11014
|
|
|
10967
11015
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
10968
11016
|
width: size,
|
|
@@ -10992,14 +11040,14 @@ Wiseagent.defaultProps = {
|
|
|
10992
11040
|
size: '24'
|
|
10993
11041
|
};
|
|
10994
11042
|
|
|
10995
|
-
const _excluded$
|
|
11043
|
+
const _excluded$4Z = ["color", "size"];
|
|
10996
11044
|
|
|
10997
11045
|
const Flodesk = props => {
|
|
10998
11046
|
const {
|
|
10999
11047
|
color,
|
|
11000
11048
|
size
|
|
11001
11049
|
} = props,
|
|
11002
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11050
|
+
otherProps = _objectWithoutProperties(props, _excluded$4Z);
|
|
11003
11051
|
|
|
11004
11052
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11005
11053
|
width: size,
|
|
@@ -11023,14 +11071,14 @@ Flodesk.defaultProps = {
|
|
|
11023
11071
|
size: '24'
|
|
11024
11072
|
};
|
|
11025
11073
|
|
|
11026
|
-
const _excluded$
|
|
11074
|
+
const _excluded$4_ = ["color", "size"];
|
|
11027
11075
|
|
|
11028
11076
|
const Apptivo = props => {
|
|
11029
11077
|
const {
|
|
11030
11078
|
color,
|
|
11031
11079
|
size
|
|
11032
11080
|
} = props,
|
|
11033
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11081
|
+
otherProps = _objectWithoutProperties(props, _excluded$4_);
|
|
11034
11082
|
|
|
11035
11083
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11036
11084
|
width: size,
|
|
@@ -11057,14 +11105,14 @@ Apptivo.defaultProps = {
|
|
|
11057
11105
|
size: '24'
|
|
11058
11106
|
};
|
|
11059
11107
|
|
|
11060
|
-
const _excluded$
|
|
11108
|
+
const _excluded$4$ = ["color", "size"];
|
|
11061
11109
|
|
|
11062
11110
|
const Zillow = props => {
|
|
11063
11111
|
const {
|
|
11064
11112
|
color,
|
|
11065
11113
|
size
|
|
11066
11114
|
} = props,
|
|
11067
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11115
|
+
otherProps = _objectWithoutProperties(props, _excluded$4$);
|
|
11068
11116
|
|
|
11069
11117
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11070
11118
|
width: size,
|
|
@@ -11090,14 +11138,14 @@ Zillow.defaultProps = {
|
|
|
11090
11138
|
size: '24'
|
|
11091
11139
|
};
|
|
11092
11140
|
|
|
11093
|
-
const _excluded$
|
|
11141
|
+
const _excluded$50 = ["color", "size"];
|
|
11094
11142
|
|
|
11095
11143
|
const Canva = props => {
|
|
11096
11144
|
const {
|
|
11097
11145
|
color,
|
|
11098
11146
|
size
|
|
11099
11147
|
} = props,
|
|
11100
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11148
|
+
otherProps = _objectWithoutProperties(props, _excluded$50);
|
|
11101
11149
|
|
|
11102
11150
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11103
11151
|
width: size,
|
|
@@ -11192,14 +11240,14 @@ Canva.defaultProps = {
|
|
|
11192
11240
|
size: '24'
|
|
11193
11241
|
};
|
|
11194
11242
|
|
|
11195
|
-
const _excluded$
|
|
11243
|
+
const _excluded$51 = ["color", "size"];
|
|
11196
11244
|
|
|
11197
11245
|
const Kajabi = props => {
|
|
11198
11246
|
const {
|
|
11199
11247
|
color,
|
|
11200
11248
|
size
|
|
11201
11249
|
} = props,
|
|
11202
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11250
|
+
otherProps = _objectWithoutProperties(props, _excluded$51);
|
|
11203
11251
|
|
|
11204
11252
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11205
11253
|
width: size,
|
|
@@ -11230,14 +11278,14 @@ Kajabi.defaultProps = {
|
|
|
11230
11278
|
size: '24'
|
|
11231
11279
|
};
|
|
11232
11280
|
|
|
11233
|
-
const _excluded$
|
|
11281
|
+
const _excluded$52 = ["color", "size"];
|
|
11234
11282
|
|
|
11235
11283
|
const Magento = props => {
|
|
11236
11284
|
const {
|
|
11237
11285
|
color,
|
|
11238
11286
|
size
|
|
11239
11287
|
} = props,
|
|
11240
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11288
|
+
otherProps = _objectWithoutProperties(props, _excluded$52);
|
|
11241
11289
|
|
|
11242
11290
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11243
11291
|
width: size,
|
|
@@ -11261,14 +11309,14 @@ Magento.defaultProps = {
|
|
|
11261
11309
|
size: '24'
|
|
11262
11310
|
};
|
|
11263
11311
|
|
|
11264
|
-
const _excluded$
|
|
11312
|
+
const _excluded$53 = ["color", "size"];
|
|
11265
11313
|
|
|
11266
11314
|
const ArrowDownRight = props => {
|
|
11267
11315
|
const {
|
|
11268
11316
|
color,
|
|
11269
11317
|
size
|
|
11270
11318
|
} = props,
|
|
11271
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11319
|
+
otherProps = _objectWithoutProperties(props, _excluded$53);
|
|
11272
11320
|
|
|
11273
11321
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11274
11322
|
width: size,
|
|
@@ -11295,14 +11343,14 @@ ArrowDownRight.defaultProps = {
|
|
|
11295
11343
|
size: '24'
|
|
11296
11344
|
};
|
|
11297
11345
|
|
|
11298
|
-
const _excluded$
|
|
11346
|
+
const _excluded$54 = ["color", "size"];
|
|
11299
11347
|
|
|
11300
11348
|
const ReturnKey = props => {
|
|
11301
11349
|
const {
|
|
11302
11350
|
color,
|
|
11303
11351
|
size
|
|
11304
11352
|
} = props,
|
|
11305
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11353
|
+
otherProps = _objectWithoutProperties(props, _excluded$54);
|
|
11306
11354
|
|
|
11307
11355
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11308
11356
|
width: size,
|
|
@@ -11326,14 +11374,14 @@ ReturnKey.defaultProps = {
|
|
|
11326
11374
|
size: '24'
|
|
11327
11375
|
};
|
|
11328
11376
|
|
|
11329
|
-
const _excluded$
|
|
11377
|
+
const _excluded$55 = ["color", "size"];
|
|
11330
11378
|
|
|
11331
11379
|
const Unread = props => {
|
|
11332
11380
|
const {
|
|
11333
11381
|
color,
|
|
11334
11382
|
size
|
|
11335
11383
|
} = props,
|
|
11336
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11384
|
+
otherProps = _objectWithoutProperties(props, _excluded$55);
|
|
11337
11385
|
|
|
11338
11386
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11339
11387
|
width: size,
|
|
@@ -11359,14 +11407,14 @@ Unread.defaultProps = {
|
|
|
11359
11407
|
size: '24'
|
|
11360
11408
|
};
|
|
11361
11409
|
|
|
11362
|
-
const _excluded$
|
|
11410
|
+
const _excluded$56 = ["color", "size"];
|
|
11363
11411
|
|
|
11364
11412
|
const Privacy = props => {
|
|
11365
11413
|
const {
|
|
11366
11414
|
color,
|
|
11367
11415
|
size
|
|
11368
11416
|
} = props,
|
|
11369
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11417
|
+
otherProps = _objectWithoutProperties(props, _excluded$56);
|
|
11370
11418
|
|
|
11371
11419
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11372
11420
|
width: size,
|
|
@@ -11396,14 +11444,14 @@ Privacy.defaultProps = {
|
|
|
11396
11444
|
size: '24'
|
|
11397
11445
|
};
|
|
11398
11446
|
|
|
11399
|
-
const _excluded$
|
|
11447
|
+
const _excluded$57 = ["color", "size"];
|
|
11400
11448
|
|
|
11401
11449
|
const Location = props => {
|
|
11402
11450
|
const {
|
|
11403
11451
|
color,
|
|
11404
11452
|
size
|
|
11405
11453
|
} = props,
|
|
11406
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11454
|
+
otherProps = _objectWithoutProperties(props, _excluded$57);
|
|
11407
11455
|
|
|
11408
11456
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11409
11457
|
width: size,
|
|
@@ -11434,14 +11482,14 @@ Location.defaultProps = {
|
|
|
11434
11482
|
size: '24'
|
|
11435
11483
|
};
|
|
11436
11484
|
|
|
11437
|
-
const _excluded$
|
|
11485
|
+
const _excluded$58 = ["color", "size"];
|
|
11438
11486
|
|
|
11439
11487
|
const TikTok = props => {
|
|
11440
11488
|
const {
|
|
11441
11489
|
color,
|
|
11442
11490
|
size
|
|
11443
11491
|
} = props,
|
|
11444
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11492
|
+
otherProps = _objectWithoutProperties(props, _excluded$58);
|
|
11445
11493
|
|
|
11446
11494
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11447
11495
|
width: size,
|
|
@@ -11483,14 +11531,14 @@ TikTok.defaultProps = {
|
|
|
11483
11531
|
size: '24'
|
|
11484
11532
|
};
|
|
11485
11533
|
|
|
11486
|
-
const _excluded$
|
|
11534
|
+
const _excluded$59 = ["color", "size"];
|
|
11487
11535
|
|
|
11488
11536
|
const TikTokChannel = props => {
|
|
11489
11537
|
const {
|
|
11490
11538
|
color,
|
|
11491
11539
|
size
|
|
11492
11540
|
} = props,
|
|
11493
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11541
|
+
otherProps = _objectWithoutProperties(props, _excluded$59);
|
|
11494
11542
|
|
|
11495
11543
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11496
11544
|
width: size,
|
|
@@ -11531,14 +11579,14 @@ TikTokChannel.defaultProps = {
|
|
|
11531
11579
|
size: '24'
|
|
11532
11580
|
};
|
|
11533
11581
|
|
|
11534
|
-
const _excluded$
|
|
11582
|
+
const _excluded$5a = ["color", "size"];
|
|
11535
11583
|
|
|
11536
11584
|
const TikTokChannel2 = props => {
|
|
11537
11585
|
const {
|
|
11538
11586
|
color,
|
|
11539
11587
|
size
|
|
11540
11588
|
} = props,
|
|
11541
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11589
|
+
otherProps = _objectWithoutProperties(props, _excluded$5a);
|
|
11542
11590
|
|
|
11543
11591
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11544
11592
|
width: size,
|
|
@@ -11564,14 +11612,14 @@ TikTokChannel2.defaultProps = {
|
|
|
11564
11612
|
size: '24'
|
|
11565
11613
|
};
|
|
11566
11614
|
|
|
11567
|
-
const _excluded$
|
|
11615
|
+
const _excluded$5b = ["color", "size"];
|
|
11568
11616
|
|
|
11569
11617
|
const AutomationsPausedFilled = props => {
|
|
11570
11618
|
const {
|
|
11571
11619
|
color,
|
|
11572
11620
|
size
|
|
11573
11621
|
} = props,
|
|
11574
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11622
|
+
otherProps = _objectWithoutProperties(props, _excluded$5b);
|
|
11575
11623
|
|
|
11576
11624
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11577
11625
|
width: size,
|
|
@@ -11598,14 +11646,14 @@ AutomationsPausedFilled.defaultProps = {
|
|
|
11598
11646
|
size: '24'
|
|
11599
11647
|
};
|
|
11600
11648
|
|
|
11601
|
-
const _excluded$
|
|
11649
|
+
const _excluded$5c = ["color", "size"];
|
|
11602
11650
|
|
|
11603
11651
|
const AutomationsStoppedFilled = props => {
|
|
11604
11652
|
const {
|
|
11605
11653
|
color,
|
|
11606
11654
|
size
|
|
11607
11655
|
} = props,
|
|
11608
|
-
otherProps = _objectWithoutProperties(props, _excluded$
|
|
11656
|
+
otherProps = _objectWithoutProperties(props, _excluded$5c);
|
|
11609
11657
|
|
|
11610
11658
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11611
11659
|
width: size,
|
|
@@ -11629,6 +11677,37 @@ AutomationsStoppedFilled.defaultProps = {
|
|
|
11629
11677
|
size: '24'
|
|
11630
11678
|
};
|
|
11631
11679
|
|
|
11680
|
+
const _excluded$5d = ["color", "size"];
|
|
11681
|
+
|
|
11682
|
+
const Bullet = props => {
|
|
11683
|
+
const {
|
|
11684
|
+
color,
|
|
11685
|
+
size
|
|
11686
|
+
} = props,
|
|
11687
|
+
otherProps = _objectWithoutProperties(props, _excluded$5d);
|
|
11688
|
+
|
|
11689
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
11690
|
+
width: size,
|
|
11691
|
+
height: size,
|
|
11692
|
+
viewBox: "0 0 24 24",
|
|
11693
|
+
fill: "none",
|
|
11694
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11695
|
+
preserveAspectRatio: "xMidYMid meet"
|
|
11696
|
+
}, otherProps), /*#__PURE__*/React.createElement("path", {
|
|
11697
|
+
d: "M12 16.5C14.4853 16.5 16.5 14.4853 16.5 12C16.5 9.51472 14.4853 7.5 12 7.5C9.51472 7.5 7.5 9.51472 7.5 12C7.5 14.4853 9.51472 16.5 12 16.5Z",
|
|
11698
|
+
fill: color
|
|
11699
|
+
}));
|
|
11700
|
+
};
|
|
11701
|
+
|
|
11702
|
+
Bullet.propTypes = {
|
|
11703
|
+
color: PropTypes.string,
|
|
11704
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
11705
|
+
};
|
|
11706
|
+
Bullet.defaultProps = {
|
|
11707
|
+
color: 'currentColor',
|
|
11708
|
+
size: '24'
|
|
11709
|
+
};
|
|
11710
|
+
|
|
11632
11711
|
exports.Action = Action;
|
|
11633
11712
|
exports.ActionMarkConversationAsDone = ActionMarkConversationAsDone;
|
|
11634
11713
|
exports.Activecampaign = Activecampaign;
|
|
@@ -11681,6 +11760,7 @@ exports.BuilderGallery = BuilderGallery;
|
|
|
11681
11760
|
exports.BuilderInput = BuilderInput;
|
|
11682
11761
|
exports.BuilderList = BuilderList;
|
|
11683
11762
|
exports.BuilderText = BuilderText;
|
|
11763
|
+
exports.Bullet = Bullet;
|
|
11684
11764
|
exports.ButtonEmailBlock = ButtonEmailBlock;
|
|
11685
11765
|
exports.Calendar = Calendar;
|
|
11686
11766
|
exports.Camera = Camera;
|
|
@@ -11754,6 +11834,7 @@ exports.FolderOpen = FolderOpen;
|
|
|
11754
11834
|
exports.Fullscreen = Fullscreen;
|
|
11755
11835
|
exports.GoToFlow = GoToFlow;
|
|
11756
11836
|
exports.Google = Google;
|
|
11837
|
+
exports.GoogleAlt = GoogleAlt;
|
|
11757
11838
|
exports.GoogleSheets = GoogleSheets;
|
|
11758
11839
|
exports.GrowthTools = GrowthTools;
|
|
11759
11840
|
exports.GtAdsJson = GtAdsJson;
|