huspy-icons 0.3.21 → 0.3.22
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/fonts/HuspyIcons.css +89 -86
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +83 -82
- package/dist/fonts/HuspyIcons.ts +85 -82
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +83 -82
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +4 -2
- package/dist/react/index.d.ts +4 -2
- package/dist/react/index.js +296 -256
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +257 -217
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +84 -83
- package/src/react/Icon.tsx +4 -1
- package/src/react/Minus.tsx +24 -0
- package/src/react/index.ts +1 -0
- package/src/react/index.tsx +1 -0
package/dist/react/index.js
CHANGED
|
@@ -4737,20 +4737,56 @@ var init_MapPin = __esm({
|
|
|
4737
4737
|
}
|
|
4738
4738
|
});
|
|
4739
4739
|
|
|
4740
|
+
// src/react/Minus.tsx
|
|
4741
|
+
var Minus_exports = {};
|
|
4742
|
+
__export(Minus_exports, {
|
|
4743
|
+
default: () => Minus_default
|
|
4744
|
+
});
|
|
4745
|
+
var React83, SvgMinus, Minus_default;
|
|
4746
|
+
var init_Minus = __esm({
|
|
4747
|
+
"src/react/Minus.tsx"() {
|
|
4748
|
+
"use strict";
|
|
4749
|
+
React83 = __toESM(require("react"));
|
|
4750
|
+
init_types();
|
|
4751
|
+
SvgMinus = ({ size = 16, ...props }) => {
|
|
4752
|
+
const sizeValue = resolveSize(size);
|
|
4753
|
+
return /* @__PURE__ */ React83.createElement(
|
|
4754
|
+
"svg",
|
|
4755
|
+
{
|
|
4756
|
+
width: sizeValue,
|
|
4757
|
+
height: sizeValue,
|
|
4758
|
+
viewBox: "0 0 24 24",
|
|
4759
|
+
fill: "none",
|
|
4760
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4761
|
+
...props
|
|
4762
|
+
},
|
|
4763
|
+
/* @__PURE__ */ React83.createElement(
|
|
4764
|
+
"path",
|
|
4765
|
+
{
|
|
4766
|
+
d: "M19 11C19.5523 11 20 11.4477 20 12C20 12.5523 19.5523 13 19 13H5C4.44772 13 4 12.5523 4 12C4 11.4477 4.44772 11 5 11H19Z",
|
|
4767
|
+
fill: "currentColor"
|
|
4768
|
+
}
|
|
4769
|
+
)
|
|
4770
|
+
);
|
|
4771
|
+
};
|
|
4772
|
+
Minus_default = SvgMinus;
|
|
4773
|
+
}
|
|
4774
|
+
});
|
|
4775
|
+
|
|
4740
4776
|
// src/react/MoreHorizontal.tsx
|
|
4741
4777
|
var MoreHorizontal_exports = {};
|
|
4742
4778
|
__export(MoreHorizontal_exports, {
|
|
4743
4779
|
default: () => MoreHorizontal_default
|
|
4744
4780
|
});
|
|
4745
|
-
var
|
|
4781
|
+
var React84, SvgMoreHorizontal, MoreHorizontal_default;
|
|
4746
4782
|
var init_MoreHorizontal = __esm({
|
|
4747
4783
|
"src/react/MoreHorizontal.tsx"() {
|
|
4748
4784
|
"use strict";
|
|
4749
|
-
|
|
4785
|
+
React84 = __toESM(require("react"));
|
|
4750
4786
|
init_types();
|
|
4751
4787
|
SvgMoreHorizontal = ({ size = 16, ...props }) => {
|
|
4752
4788
|
const sizeValue = resolveSize(size);
|
|
4753
|
-
return /* @__PURE__ */
|
|
4789
|
+
return /* @__PURE__ */ React84.createElement(
|
|
4754
4790
|
"svg",
|
|
4755
4791
|
{
|
|
4756
4792
|
width: sizeValue,
|
|
@@ -4760,7 +4796,7 @@ var init_MoreHorizontal = __esm({
|
|
|
4760
4796
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4761
4797
|
...props
|
|
4762
4798
|
},
|
|
4763
|
-
/* @__PURE__ */
|
|
4799
|
+
/* @__PURE__ */ React84.createElement(
|
|
4764
4800
|
"path",
|
|
4765
4801
|
{
|
|
4766
4802
|
fillRule: "evenodd",
|
|
@@ -4769,7 +4805,7 @@ var init_MoreHorizontal = __esm({
|
|
|
4769
4805
|
fill: "currentColor"
|
|
4770
4806
|
}
|
|
4771
4807
|
),
|
|
4772
|
-
/* @__PURE__ */
|
|
4808
|
+
/* @__PURE__ */ React84.createElement(
|
|
4773
4809
|
"path",
|
|
4774
4810
|
{
|
|
4775
4811
|
fillRule: "evenodd",
|
|
@@ -4778,7 +4814,7 @@ var init_MoreHorizontal = __esm({
|
|
|
4778
4814
|
fill: "currentColor"
|
|
4779
4815
|
}
|
|
4780
4816
|
),
|
|
4781
|
-
/* @__PURE__ */
|
|
4817
|
+
/* @__PURE__ */ React84.createElement(
|
|
4782
4818
|
"path",
|
|
4783
4819
|
{
|
|
4784
4820
|
fillRule: "evenodd",
|
|
@@ -4798,15 +4834,15 @@ var Mortgage_exports = {};
|
|
|
4798
4834
|
__export(Mortgage_exports, {
|
|
4799
4835
|
default: () => Mortgage_default
|
|
4800
4836
|
});
|
|
4801
|
-
var
|
|
4837
|
+
var React85, SvgMortgage, Mortgage_default;
|
|
4802
4838
|
var init_Mortgage = __esm({
|
|
4803
4839
|
"src/react/Mortgage.tsx"() {
|
|
4804
4840
|
"use strict";
|
|
4805
|
-
|
|
4841
|
+
React85 = __toESM(require("react"));
|
|
4806
4842
|
init_types();
|
|
4807
4843
|
SvgMortgage = ({ size = 16, ...props }) => {
|
|
4808
4844
|
const sizeValue = resolveSize(size);
|
|
4809
|
-
return /* @__PURE__ */
|
|
4845
|
+
return /* @__PURE__ */ React85.createElement(
|
|
4810
4846
|
"svg",
|
|
4811
4847
|
{
|
|
4812
4848
|
width: sizeValue,
|
|
@@ -4816,7 +4852,7 @@ var init_Mortgage = __esm({
|
|
|
4816
4852
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4817
4853
|
...props
|
|
4818
4854
|
},
|
|
4819
|
-
/* @__PURE__ */
|
|
4855
|
+
/* @__PURE__ */ React85.createElement(
|
|
4820
4856
|
"path",
|
|
4821
4857
|
{
|
|
4822
4858
|
fillRule: "evenodd",
|
|
@@ -4825,7 +4861,7 @@ var init_Mortgage = __esm({
|
|
|
4825
4861
|
fill: "currentColor"
|
|
4826
4862
|
}
|
|
4827
4863
|
),
|
|
4828
|
-
/* @__PURE__ */
|
|
4864
|
+
/* @__PURE__ */ React85.createElement(
|
|
4829
4865
|
"path",
|
|
4830
4866
|
{
|
|
4831
4867
|
fillRule: "evenodd",
|
|
@@ -4834,7 +4870,7 @@ var init_Mortgage = __esm({
|
|
|
4834
4870
|
fill: "currentColor"
|
|
4835
4871
|
}
|
|
4836
4872
|
),
|
|
4837
|
-
/* @__PURE__ */
|
|
4873
|
+
/* @__PURE__ */ React85.createElement(
|
|
4838
4874
|
"path",
|
|
4839
4875
|
{
|
|
4840
4876
|
fillRule: "evenodd",
|
|
@@ -4843,7 +4879,7 @@ var init_Mortgage = __esm({
|
|
|
4843
4879
|
fill: "currentColor"
|
|
4844
4880
|
}
|
|
4845
4881
|
),
|
|
4846
|
-
/* @__PURE__ */
|
|
4882
|
+
/* @__PURE__ */ React85.createElement(
|
|
4847
4883
|
"path",
|
|
4848
4884
|
{
|
|
4849
4885
|
fillRule: "evenodd",
|
|
@@ -4852,7 +4888,7 @@ var init_Mortgage = __esm({
|
|
|
4852
4888
|
fill: "currentColor"
|
|
4853
4889
|
}
|
|
4854
4890
|
),
|
|
4855
|
-
/* @__PURE__ */
|
|
4891
|
+
/* @__PURE__ */ React85.createElement(
|
|
4856
4892
|
"path",
|
|
4857
4893
|
{
|
|
4858
4894
|
fillRule: "evenodd",
|
|
@@ -4861,7 +4897,7 @@ var init_Mortgage = __esm({
|
|
|
4861
4897
|
fill: "currentColor"
|
|
4862
4898
|
}
|
|
4863
4899
|
),
|
|
4864
|
-
/* @__PURE__ */
|
|
4900
|
+
/* @__PURE__ */ React85.createElement(
|
|
4865
4901
|
"path",
|
|
4866
4902
|
{
|
|
4867
4903
|
fillRule: "evenodd",
|
|
@@ -4870,7 +4906,7 @@ var init_Mortgage = __esm({
|
|
|
4870
4906
|
fill: "currentColor"
|
|
4871
4907
|
}
|
|
4872
4908
|
),
|
|
4873
|
-
/* @__PURE__ */
|
|
4909
|
+
/* @__PURE__ */ React85.createElement(
|
|
4874
4910
|
"path",
|
|
4875
4911
|
{
|
|
4876
4912
|
fillRule: "evenodd",
|
|
@@ -4890,15 +4926,15 @@ var Note_exports = {};
|
|
|
4890
4926
|
__export(Note_exports, {
|
|
4891
4927
|
default: () => Note_default
|
|
4892
4928
|
});
|
|
4893
|
-
var
|
|
4929
|
+
var React86, SvgNote, Note_default;
|
|
4894
4930
|
var init_Note = __esm({
|
|
4895
4931
|
"src/react/Note.tsx"() {
|
|
4896
4932
|
"use strict";
|
|
4897
|
-
|
|
4933
|
+
React86 = __toESM(require("react"));
|
|
4898
4934
|
init_types();
|
|
4899
4935
|
SvgNote = ({ size = 16, ...props }) => {
|
|
4900
4936
|
const sizeValue = resolveSize(size);
|
|
4901
|
-
return /* @__PURE__ */
|
|
4937
|
+
return /* @__PURE__ */ React86.createElement(
|
|
4902
4938
|
"svg",
|
|
4903
4939
|
{
|
|
4904
4940
|
width: sizeValue,
|
|
@@ -4908,7 +4944,7 @@ var init_Note = __esm({
|
|
|
4908
4944
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4909
4945
|
...props
|
|
4910
4946
|
},
|
|
4911
|
-
/* @__PURE__ */
|
|
4947
|
+
/* @__PURE__ */ React86.createElement(
|
|
4912
4948
|
"path",
|
|
4913
4949
|
{
|
|
4914
4950
|
d: "M2.09961 19V5C2.09961 4.23087 2.40536 3.49307 2.94922 2.94922C3.49307 2.40536 4.23087 2.09961 5 2.09961H16L16.0889 2.10449C16.2949 2.12493 16.489 2.21558 16.6367 2.36328L21.6367 7.36328C21.8055 7.53206 21.9004 7.76131 21.9004 8V19C21.9004 19.7691 21.5946 20.5069 21.0508 21.0508C20.5069 21.5946 19.7691 21.9004 19 21.9004H5C4.23087 21.9004 3.49307 21.5946 2.94922 21.0508C2.40536 20.5069 2.09961 19.7691 2.09961 19ZM15.9004 7C15.9004 7.29174 16.0164 7.57105 16.2227 7.77734C16.4289 7.98363 16.7083 8.09961 17 8.09961H19.8262L15.9004 4.17383V7ZM3.90039 19C3.90039 19.2917 4.01637 19.5711 4.22266 19.7773C4.42895 19.9836 4.70826 20.0996 5 20.0996H19C19.2917 20.0996 19.5711 19.9836 19.7773 19.7773C19.9836 19.5711 20.0996 19.2917 20.0996 19V9.90039H17C16.2309 9.90039 15.4931 9.59464 14.9492 9.05078C14.4054 8.50693 14.0996 7.76913 14.0996 7V3.90039H5C4.70826 3.90039 4.42895 4.01637 4.22266 4.22266C4.01637 4.42895 3.90039 4.70826 3.90039 5V19Z",
|
|
@@ -4926,15 +4962,15 @@ var Notes_exports = {};
|
|
|
4926
4962
|
__export(Notes_exports, {
|
|
4927
4963
|
default: () => Notes_default
|
|
4928
4964
|
});
|
|
4929
|
-
var
|
|
4965
|
+
var React87, SvgNotes, Notes_default;
|
|
4930
4966
|
var init_Notes = __esm({
|
|
4931
4967
|
"src/react/Notes.tsx"() {
|
|
4932
4968
|
"use strict";
|
|
4933
|
-
|
|
4969
|
+
React87 = __toESM(require("react"));
|
|
4934
4970
|
init_types();
|
|
4935
4971
|
SvgNotes = ({ size = 16, ...props }) => {
|
|
4936
4972
|
const sizeValue = resolveSize(size);
|
|
4937
|
-
return /* @__PURE__ */
|
|
4973
|
+
return /* @__PURE__ */ React87.createElement(
|
|
4938
4974
|
"svg",
|
|
4939
4975
|
{
|
|
4940
4976
|
width: sizeValue,
|
|
@@ -4944,21 +4980,21 @@ var init_Notes = __esm({
|
|
|
4944
4980
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4945
4981
|
...props
|
|
4946
4982
|
},
|
|
4947
|
-
/* @__PURE__ */
|
|
4983
|
+
/* @__PURE__ */ React87.createElement(
|
|
4948
4984
|
"path",
|
|
4949
4985
|
{
|
|
4950
4986
|
d: "M12.7695 10.749C13.2819 10.749 13.6981 11.1644 13.6982 11.6768C13.698 12.1891 13.2819 12.6045 12.7695 12.6045H7.30273C6.79037 12.6045 6.37423 12.1891 6.37402 11.6768C6.37416 11.1644 6.79033 10.749 7.30273 10.749H12.7695Z",
|
|
4951
4987
|
fill: "currentColor"
|
|
4952
4988
|
}
|
|
4953
4989
|
),
|
|
4954
|
-
/* @__PURE__ */
|
|
4990
|
+
/* @__PURE__ */ React87.createElement(
|
|
4955
4991
|
"path",
|
|
4956
4992
|
{
|
|
4957
4993
|
d: "M15.5039 6.37402C16.0162 6.37422 16.4316 6.79037 16.4316 7.30273C16.4315 7.81499 16.0161 8.23027 15.5039 8.23047H7.30273C6.79033 8.23047 6.37416 7.81511 6.37402 7.30273C6.37402 6.79025 6.79025 6.37402 7.30273 6.37402H15.5039Z",
|
|
4958
4994
|
fill: "currentColor"
|
|
4959
4995
|
}
|
|
4960
4996
|
),
|
|
4961
|
-
/* @__PURE__ */
|
|
4997
|
+
/* @__PURE__ */ React87.createElement(
|
|
4962
4998
|
"path",
|
|
4963
4999
|
{
|
|
4964
5000
|
fillRule: "evenodd",
|
|
@@ -4978,15 +5014,15 @@ var Outside_exports = {};
|
|
|
4978
5014
|
__export(Outside_exports, {
|
|
4979
5015
|
default: () => Outside_default
|
|
4980
5016
|
});
|
|
4981
|
-
var
|
|
5017
|
+
var React88, SvgOutside, Outside_default;
|
|
4982
5018
|
var init_Outside = __esm({
|
|
4983
5019
|
"src/react/Outside.tsx"() {
|
|
4984
5020
|
"use strict";
|
|
4985
|
-
|
|
5021
|
+
React88 = __toESM(require("react"));
|
|
4986
5022
|
init_types();
|
|
4987
5023
|
SvgOutside = ({ size = 16, ...props }) => {
|
|
4988
5024
|
const sizeValue = resolveSize(size);
|
|
4989
|
-
return /* @__PURE__ */
|
|
5025
|
+
return /* @__PURE__ */ React88.createElement(
|
|
4990
5026
|
"svg",
|
|
4991
5027
|
{
|
|
4992
5028
|
width: sizeValue,
|
|
@@ -4996,7 +5032,7 @@ var init_Outside = __esm({
|
|
|
4996
5032
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4997
5033
|
...props
|
|
4998
5034
|
},
|
|
4999
|
-
/* @__PURE__ */
|
|
5035
|
+
/* @__PURE__ */ React88.createElement(
|
|
5000
5036
|
"path",
|
|
5001
5037
|
{
|
|
5002
5038
|
fillRule: "evenodd",
|
|
@@ -5005,7 +5041,7 @@ var init_Outside = __esm({
|
|
|
5005
5041
|
fill: "currentColor"
|
|
5006
5042
|
}
|
|
5007
5043
|
),
|
|
5008
|
-
/* @__PURE__ */
|
|
5044
|
+
/* @__PURE__ */ React88.createElement(
|
|
5009
5045
|
"path",
|
|
5010
5046
|
{
|
|
5011
5047
|
fillRule: "evenodd",
|
|
@@ -5014,7 +5050,7 @@ var init_Outside = __esm({
|
|
|
5014
5050
|
fill: "currentColor"
|
|
5015
5051
|
}
|
|
5016
5052
|
),
|
|
5017
|
-
/* @__PURE__ */
|
|
5053
|
+
/* @__PURE__ */ React88.createElement(
|
|
5018
5054
|
"path",
|
|
5019
5055
|
{
|
|
5020
5056
|
fillRule: "evenodd",
|
|
@@ -5023,7 +5059,7 @@ var init_Outside = __esm({
|
|
|
5023
5059
|
fill: "currentColor"
|
|
5024
5060
|
}
|
|
5025
5061
|
),
|
|
5026
|
-
/* @__PURE__ */
|
|
5062
|
+
/* @__PURE__ */ React88.createElement(
|
|
5027
5063
|
"path",
|
|
5028
5064
|
{
|
|
5029
5065
|
fillRule: "evenodd",
|
|
@@ -5032,7 +5068,7 @@ var init_Outside = __esm({
|
|
|
5032
5068
|
fill: "currentColor"
|
|
5033
5069
|
}
|
|
5034
5070
|
),
|
|
5035
|
-
/* @__PURE__ */
|
|
5071
|
+
/* @__PURE__ */ React88.createElement(
|
|
5036
5072
|
"path",
|
|
5037
5073
|
{
|
|
5038
5074
|
fillRule: "evenodd",
|
|
@@ -5041,7 +5077,7 @@ var init_Outside = __esm({
|
|
|
5041
5077
|
fill: "currentColor"
|
|
5042
5078
|
}
|
|
5043
5079
|
),
|
|
5044
|
-
/* @__PURE__ */
|
|
5080
|
+
/* @__PURE__ */ React88.createElement(
|
|
5045
5081
|
"path",
|
|
5046
5082
|
{
|
|
5047
5083
|
fillRule: "evenodd",
|
|
@@ -5050,7 +5086,7 @@ var init_Outside = __esm({
|
|
|
5050
5086
|
fill: "currentColor"
|
|
5051
5087
|
}
|
|
5052
5088
|
),
|
|
5053
|
-
/* @__PURE__ */
|
|
5089
|
+
/* @__PURE__ */ React88.createElement(
|
|
5054
5090
|
"path",
|
|
5055
5091
|
{
|
|
5056
5092
|
fillRule: "evenodd",
|
|
@@ -5059,7 +5095,7 @@ var init_Outside = __esm({
|
|
|
5059
5095
|
fill: "currentColor"
|
|
5060
5096
|
}
|
|
5061
5097
|
),
|
|
5062
|
-
/* @__PURE__ */
|
|
5098
|
+
/* @__PURE__ */ React88.createElement(
|
|
5063
5099
|
"path",
|
|
5064
5100
|
{
|
|
5065
5101
|
fillRule: "evenodd",
|
|
@@ -5079,15 +5115,15 @@ var Parking_exports = {};
|
|
|
5079
5115
|
__export(Parking_exports, {
|
|
5080
5116
|
default: () => Parking_default
|
|
5081
5117
|
});
|
|
5082
|
-
var
|
|
5118
|
+
var React89, SvgParking, Parking_default;
|
|
5083
5119
|
var init_Parking = __esm({
|
|
5084
5120
|
"src/react/Parking.tsx"() {
|
|
5085
5121
|
"use strict";
|
|
5086
|
-
|
|
5122
|
+
React89 = __toESM(require("react"));
|
|
5087
5123
|
init_types();
|
|
5088
5124
|
SvgParking = ({ size = 16, ...props }) => {
|
|
5089
5125
|
const sizeValue = resolveSize(size);
|
|
5090
|
-
return /* @__PURE__ */
|
|
5126
|
+
return /* @__PURE__ */ React89.createElement(
|
|
5091
5127
|
"svg",
|
|
5092
5128
|
{
|
|
5093
5129
|
width: sizeValue,
|
|
@@ -5097,7 +5133,7 @@ var init_Parking = __esm({
|
|
|
5097
5133
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5098
5134
|
...props
|
|
5099
5135
|
},
|
|
5100
|
-
/* @__PURE__ */
|
|
5136
|
+
/* @__PURE__ */ React89.createElement(
|
|
5101
5137
|
"path",
|
|
5102
5138
|
{
|
|
5103
5139
|
fillRule: "evenodd",
|
|
@@ -5106,7 +5142,7 @@ var init_Parking = __esm({
|
|
|
5106
5142
|
fill: "currentColor"
|
|
5107
5143
|
}
|
|
5108
5144
|
),
|
|
5109
|
-
/* @__PURE__ */
|
|
5145
|
+
/* @__PURE__ */ React89.createElement(
|
|
5110
5146
|
"path",
|
|
5111
5147
|
{
|
|
5112
5148
|
fillRule: "evenodd",
|
|
@@ -5115,7 +5151,7 @@ var init_Parking = __esm({
|
|
|
5115
5151
|
fill: "currentColor"
|
|
5116
5152
|
}
|
|
5117
5153
|
),
|
|
5118
|
-
/* @__PURE__ */
|
|
5154
|
+
/* @__PURE__ */ React89.createElement(
|
|
5119
5155
|
"path",
|
|
5120
5156
|
{
|
|
5121
5157
|
fillRule: "evenodd",
|
|
@@ -5124,7 +5160,7 @@ var init_Parking = __esm({
|
|
|
5124
5160
|
fill: "currentColor"
|
|
5125
5161
|
}
|
|
5126
5162
|
),
|
|
5127
|
-
/* @__PURE__ */
|
|
5163
|
+
/* @__PURE__ */ React89.createElement(
|
|
5128
5164
|
"path",
|
|
5129
5165
|
{
|
|
5130
5166
|
fillRule: "evenodd",
|
|
@@ -5133,7 +5169,7 @@ var init_Parking = __esm({
|
|
|
5133
5169
|
fill: "currentColor"
|
|
5134
5170
|
}
|
|
5135
5171
|
),
|
|
5136
|
-
/* @__PURE__ */
|
|
5172
|
+
/* @__PURE__ */ React89.createElement(
|
|
5137
5173
|
"path",
|
|
5138
5174
|
{
|
|
5139
5175
|
fillRule: "evenodd",
|
|
@@ -5153,15 +5189,15 @@ var Patio_exports = {};
|
|
|
5153
5189
|
__export(Patio_exports, {
|
|
5154
5190
|
default: () => Patio_default
|
|
5155
5191
|
});
|
|
5156
|
-
var
|
|
5192
|
+
var React90, SvgPatio, Patio_default;
|
|
5157
5193
|
var init_Patio = __esm({
|
|
5158
5194
|
"src/react/Patio.tsx"() {
|
|
5159
5195
|
"use strict";
|
|
5160
|
-
|
|
5196
|
+
React90 = __toESM(require("react"));
|
|
5161
5197
|
init_types();
|
|
5162
5198
|
SvgPatio = ({ size = 16, ...props }) => {
|
|
5163
5199
|
const sizeValue = resolveSize(size);
|
|
5164
|
-
return /* @__PURE__ */
|
|
5200
|
+
return /* @__PURE__ */ React90.createElement(
|
|
5165
5201
|
"svg",
|
|
5166
5202
|
{
|
|
5167
5203
|
width: sizeValue,
|
|
@@ -5171,7 +5207,7 @@ var init_Patio = __esm({
|
|
|
5171
5207
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5172
5208
|
...props
|
|
5173
5209
|
},
|
|
5174
|
-
/* @__PURE__ */
|
|
5210
|
+
/* @__PURE__ */ React90.createElement(
|
|
5175
5211
|
"path",
|
|
5176
5212
|
{
|
|
5177
5213
|
fillRule: "evenodd",
|
|
@@ -5180,7 +5216,7 @@ var init_Patio = __esm({
|
|
|
5180
5216
|
fill: "currentColor"
|
|
5181
5217
|
}
|
|
5182
5218
|
),
|
|
5183
|
-
/* @__PURE__ */
|
|
5219
|
+
/* @__PURE__ */ React90.createElement(
|
|
5184
5220
|
"path",
|
|
5185
5221
|
{
|
|
5186
5222
|
fillRule: "evenodd",
|
|
@@ -5189,7 +5225,7 @@ var init_Patio = __esm({
|
|
|
5189
5225
|
fill: "currentColor"
|
|
5190
5226
|
}
|
|
5191
5227
|
),
|
|
5192
|
-
/* @__PURE__ */
|
|
5228
|
+
/* @__PURE__ */ React90.createElement(
|
|
5193
5229
|
"path",
|
|
5194
5230
|
{
|
|
5195
5231
|
fillRule: "evenodd",
|
|
@@ -5198,7 +5234,7 @@ var init_Patio = __esm({
|
|
|
5198
5234
|
fill: "currentColor"
|
|
5199
5235
|
}
|
|
5200
5236
|
),
|
|
5201
|
-
/* @__PURE__ */
|
|
5237
|
+
/* @__PURE__ */ React90.createElement(
|
|
5202
5238
|
"path",
|
|
5203
5239
|
{
|
|
5204
5240
|
fillRule: "evenodd",
|
|
@@ -5207,7 +5243,7 @@ var init_Patio = __esm({
|
|
|
5207
5243
|
fill: "currentColor"
|
|
5208
5244
|
}
|
|
5209
5245
|
),
|
|
5210
|
-
/* @__PURE__ */
|
|
5246
|
+
/* @__PURE__ */ React90.createElement(
|
|
5211
5247
|
"path",
|
|
5212
5248
|
{
|
|
5213
5249
|
fillRule: "evenodd",
|
|
@@ -5216,7 +5252,7 @@ var init_Patio = __esm({
|
|
|
5216
5252
|
fill: "currentColor"
|
|
5217
5253
|
}
|
|
5218
5254
|
),
|
|
5219
|
-
/* @__PURE__ */
|
|
5255
|
+
/* @__PURE__ */ React90.createElement(
|
|
5220
5256
|
"path",
|
|
5221
5257
|
{
|
|
5222
5258
|
fillRule: "evenodd",
|
|
@@ -5225,7 +5261,7 @@ var init_Patio = __esm({
|
|
|
5225
5261
|
fill: "currentColor"
|
|
5226
5262
|
}
|
|
5227
5263
|
),
|
|
5228
|
-
/* @__PURE__ */
|
|
5264
|
+
/* @__PURE__ */ React90.createElement(
|
|
5229
5265
|
"path",
|
|
5230
5266
|
{
|
|
5231
5267
|
fillRule: "evenodd",
|
|
@@ -5234,7 +5270,7 @@ var init_Patio = __esm({
|
|
|
5234
5270
|
fill: "currentColor"
|
|
5235
5271
|
}
|
|
5236
5272
|
),
|
|
5237
|
-
/* @__PURE__ */
|
|
5273
|
+
/* @__PURE__ */ React90.createElement(
|
|
5238
5274
|
"path",
|
|
5239
5275
|
{
|
|
5240
5276
|
fillRule: "evenodd",
|
|
@@ -5243,7 +5279,7 @@ var init_Patio = __esm({
|
|
|
5243
5279
|
fill: "currentColor"
|
|
5244
5280
|
}
|
|
5245
5281
|
),
|
|
5246
|
-
/* @__PURE__ */
|
|
5282
|
+
/* @__PURE__ */ React90.createElement(
|
|
5247
5283
|
"path",
|
|
5248
5284
|
{
|
|
5249
5285
|
fillRule: "evenodd",
|
|
@@ -5263,15 +5299,15 @@ var Payments_exports = {};
|
|
|
5263
5299
|
__export(Payments_exports, {
|
|
5264
5300
|
default: () => Payments_default
|
|
5265
5301
|
});
|
|
5266
|
-
var
|
|
5302
|
+
var React91, SvgPayments, Payments_default;
|
|
5267
5303
|
var init_Payments = __esm({
|
|
5268
5304
|
"src/react/Payments.tsx"() {
|
|
5269
5305
|
"use strict";
|
|
5270
|
-
|
|
5306
|
+
React91 = __toESM(require("react"));
|
|
5271
5307
|
init_types();
|
|
5272
5308
|
SvgPayments = ({ size = 16, ...props }) => {
|
|
5273
5309
|
const sizeValue = resolveSize(size);
|
|
5274
|
-
return /* @__PURE__ */
|
|
5310
|
+
return /* @__PURE__ */ React91.createElement(
|
|
5275
5311
|
"svg",
|
|
5276
5312
|
{
|
|
5277
5313
|
width: sizeValue,
|
|
@@ -5281,7 +5317,7 @@ var init_Payments = __esm({
|
|
|
5281
5317
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5282
5318
|
...props
|
|
5283
5319
|
},
|
|
5284
|
-
/* @__PURE__ */
|
|
5320
|
+
/* @__PURE__ */ React91.createElement(
|
|
5285
5321
|
"path",
|
|
5286
5322
|
{
|
|
5287
5323
|
d: "M14 13C13.1667 13 12.4583 12.7083 11.875 12.125C11.2917 11.5417 11 10.8333 11 10C11 9.16667 11.2917 8.45833 11.875 7.875C12.4583 7.29167 13.1667 7 14 7C14.8333 7 15.5417 7.29167 16.125 7.875C16.7083 8.45833 17 9.16667 17 10C17 10.8333 16.7083 11.5417 16.125 12.125C15.5417 12.7083 14.8333 13 14 13ZM7 16C6.45 16 5.97917 15.8042 5.5875 15.4125C5.19583 15.0208 5 14.55 5 14V6C5 5.45 5.19583 4.97917 5.5875 4.5875C5.97917 4.19583 6.45 4 7 4H21C21.55 4 22.0208 4.19583 22.4125 4.5875C22.8042 4.97917 23 5.45 23 6V14C23 14.55 22.8042 15.0208 22.4125 15.4125C22.0208 15.8042 21.55 16 21 16H7ZM9 14H19C19 13.45 19.1958 12.9792 19.5875 12.5875C19.9792 12.1958 20.45 12 21 12V8C20.45 8 19.9792 7.80417 19.5875 7.4125C19.1958 7.02083 19 6.55 19 6H9C9 6.55 8.80417 7.02083 8.4125 7.4125C8.02083 7.80417 7.55 8 7 8V12C7.55 12 8.02083 12.1958 8.4125 12.5875C8.80417 12.9792 9 13.45 9 14ZM20 20H3C2.45 20 1.97917 19.8042 1.5875 19.4125C1.19583 19.0208 1 18.55 1 18V7H3V18H20V20Z",
|
|
@@ -5299,15 +5335,15 @@ var PencilLine_exports = {};
|
|
|
5299
5335
|
__export(PencilLine_exports, {
|
|
5300
5336
|
default: () => PencilLine_default
|
|
5301
5337
|
});
|
|
5302
|
-
var
|
|
5338
|
+
var React92, SvgPencilLine, PencilLine_default;
|
|
5303
5339
|
var init_PencilLine = __esm({
|
|
5304
5340
|
"src/react/PencilLine.tsx"() {
|
|
5305
5341
|
"use strict";
|
|
5306
|
-
|
|
5342
|
+
React92 = __toESM(require("react"));
|
|
5307
5343
|
init_types();
|
|
5308
5344
|
SvgPencilLine = ({ size = 16, ...props }) => {
|
|
5309
5345
|
const sizeValue = resolveSize(size);
|
|
5310
|
-
return /* @__PURE__ */
|
|
5346
|
+
return /* @__PURE__ */ React92.createElement(
|
|
5311
5347
|
"svg",
|
|
5312
5348
|
{
|
|
5313
5349
|
width: sizeValue,
|
|
@@ -5317,7 +5353,7 @@ var init_PencilLine = __esm({
|
|
|
5317
5353
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5318
5354
|
...props
|
|
5319
5355
|
},
|
|
5320
|
-
/* @__PURE__ */
|
|
5356
|
+
/* @__PURE__ */ React92.createElement(
|
|
5321
5357
|
"path",
|
|
5322
5358
|
{
|
|
5323
5359
|
fillRule: "evenodd",
|
|
@@ -5326,7 +5362,7 @@ var init_PencilLine = __esm({
|
|
|
5326
5362
|
fill: "currentColor"
|
|
5327
5363
|
}
|
|
5328
5364
|
),
|
|
5329
|
-
/* @__PURE__ */
|
|
5365
|
+
/* @__PURE__ */ React92.createElement(
|
|
5330
5366
|
"path",
|
|
5331
5367
|
{
|
|
5332
5368
|
fillRule: "evenodd",
|
|
@@ -5335,7 +5371,7 @@ var init_PencilLine = __esm({
|
|
|
5335
5371
|
fill: "currentColor"
|
|
5336
5372
|
}
|
|
5337
5373
|
),
|
|
5338
|
-
/* @__PURE__ */
|
|
5374
|
+
/* @__PURE__ */ React92.createElement(
|
|
5339
5375
|
"path",
|
|
5340
5376
|
{
|
|
5341
5377
|
fillRule: "evenodd",
|
|
@@ -5355,15 +5391,15 @@ var PentHouse_exports = {};
|
|
|
5355
5391
|
__export(PentHouse_exports, {
|
|
5356
5392
|
default: () => PentHouse_default
|
|
5357
5393
|
});
|
|
5358
|
-
var
|
|
5394
|
+
var React93, SvgPentHouse, PentHouse_default;
|
|
5359
5395
|
var init_PentHouse = __esm({
|
|
5360
5396
|
"src/react/PentHouse.tsx"() {
|
|
5361
5397
|
"use strict";
|
|
5362
|
-
|
|
5398
|
+
React93 = __toESM(require("react"));
|
|
5363
5399
|
init_types();
|
|
5364
5400
|
SvgPentHouse = ({ size = 16, ...props }) => {
|
|
5365
5401
|
const sizeValue = resolveSize(size);
|
|
5366
|
-
return /* @__PURE__ */
|
|
5402
|
+
return /* @__PURE__ */ React93.createElement(
|
|
5367
5403
|
"svg",
|
|
5368
5404
|
{
|
|
5369
5405
|
width: sizeValue,
|
|
@@ -5373,7 +5409,7 @@ var init_PentHouse = __esm({
|
|
|
5373
5409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5374
5410
|
...props
|
|
5375
5411
|
},
|
|
5376
|
-
/* @__PURE__ */
|
|
5412
|
+
/* @__PURE__ */ React93.createElement(
|
|
5377
5413
|
"path",
|
|
5378
5414
|
{
|
|
5379
5415
|
fillRule: "evenodd",
|
|
@@ -5382,7 +5418,7 @@ var init_PentHouse = __esm({
|
|
|
5382
5418
|
fill: "currentColor"
|
|
5383
5419
|
}
|
|
5384
5420
|
),
|
|
5385
|
-
/* @__PURE__ */
|
|
5421
|
+
/* @__PURE__ */ React93.createElement(
|
|
5386
5422
|
"path",
|
|
5387
5423
|
{
|
|
5388
5424
|
fillRule: "evenodd",
|
|
@@ -5391,7 +5427,7 @@ var init_PentHouse = __esm({
|
|
|
5391
5427
|
fill: "currentColor"
|
|
5392
5428
|
}
|
|
5393
5429
|
),
|
|
5394
|
-
/* @__PURE__ */
|
|
5430
|
+
/* @__PURE__ */ React93.createElement(
|
|
5395
5431
|
"path",
|
|
5396
5432
|
{
|
|
5397
5433
|
fillRule: "evenodd",
|
|
@@ -5400,7 +5436,7 @@ var init_PentHouse = __esm({
|
|
|
5400
5436
|
fill: "currentColor"
|
|
5401
5437
|
}
|
|
5402
5438
|
),
|
|
5403
|
-
/* @__PURE__ */
|
|
5439
|
+
/* @__PURE__ */ React93.createElement(
|
|
5404
5440
|
"path",
|
|
5405
5441
|
{
|
|
5406
5442
|
fillRule: "evenodd",
|
|
@@ -5409,7 +5445,7 @@ var init_PentHouse = __esm({
|
|
|
5409
5445
|
fill: "currentColor"
|
|
5410
5446
|
}
|
|
5411
5447
|
),
|
|
5412
|
-
/* @__PURE__ */
|
|
5448
|
+
/* @__PURE__ */ React93.createElement(
|
|
5413
5449
|
"path",
|
|
5414
5450
|
{
|
|
5415
5451
|
fillRule: "evenodd",
|
|
@@ -5418,7 +5454,7 @@ var init_PentHouse = __esm({
|
|
|
5418
5454
|
fill: "currentColor"
|
|
5419
5455
|
}
|
|
5420
5456
|
),
|
|
5421
|
-
/* @__PURE__ */
|
|
5457
|
+
/* @__PURE__ */ React93.createElement(
|
|
5422
5458
|
"path",
|
|
5423
5459
|
{
|
|
5424
5460
|
fillRule: "evenodd",
|
|
@@ -5427,7 +5463,7 @@ var init_PentHouse = __esm({
|
|
|
5427
5463
|
fill: "currentColor"
|
|
5428
5464
|
}
|
|
5429
5465
|
),
|
|
5430
|
-
/* @__PURE__ */
|
|
5466
|
+
/* @__PURE__ */ React93.createElement(
|
|
5431
5467
|
"path",
|
|
5432
5468
|
{
|
|
5433
5469
|
fillRule: "evenodd",
|
|
@@ -5447,15 +5483,15 @@ var Pet_exports = {};
|
|
|
5447
5483
|
__export(Pet_exports, {
|
|
5448
5484
|
default: () => Pet_default
|
|
5449
5485
|
});
|
|
5450
|
-
var
|
|
5486
|
+
var React94, SvgPet, Pet_default;
|
|
5451
5487
|
var init_Pet = __esm({
|
|
5452
5488
|
"src/react/Pet.tsx"() {
|
|
5453
5489
|
"use strict";
|
|
5454
|
-
|
|
5490
|
+
React94 = __toESM(require("react"));
|
|
5455
5491
|
init_types();
|
|
5456
5492
|
SvgPet = ({ size = 16, ...props }) => {
|
|
5457
5493
|
const sizeValue = resolveSize(size);
|
|
5458
|
-
return /* @__PURE__ */
|
|
5494
|
+
return /* @__PURE__ */ React94.createElement(
|
|
5459
5495
|
"svg",
|
|
5460
5496
|
{
|
|
5461
5497
|
width: sizeValue,
|
|
@@ -5465,7 +5501,7 @@ var init_Pet = __esm({
|
|
|
5465
5501
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5466
5502
|
...props
|
|
5467
5503
|
},
|
|
5468
|
-
/* @__PURE__ */
|
|
5504
|
+
/* @__PURE__ */ React94.createElement(
|
|
5469
5505
|
"path",
|
|
5470
5506
|
{
|
|
5471
5507
|
fillRule: "evenodd",
|
|
@@ -5474,7 +5510,7 @@ var init_Pet = __esm({
|
|
|
5474
5510
|
fill: "currentColor"
|
|
5475
5511
|
}
|
|
5476
5512
|
),
|
|
5477
|
-
/* @__PURE__ */
|
|
5513
|
+
/* @__PURE__ */ React94.createElement(
|
|
5478
5514
|
"path",
|
|
5479
5515
|
{
|
|
5480
5516
|
fillRule: "evenodd",
|
|
@@ -5483,7 +5519,7 @@ var init_Pet = __esm({
|
|
|
5483
5519
|
fill: "currentColor"
|
|
5484
5520
|
}
|
|
5485
5521
|
),
|
|
5486
|
-
/* @__PURE__ */
|
|
5522
|
+
/* @__PURE__ */ React94.createElement(
|
|
5487
5523
|
"path",
|
|
5488
5524
|
{
|
|
5489
5525
|
fillRule: "evenodd",
|
|
@@ -5492,7 +5528,7 @@ var init_Pet = __esm({
|
|
|
5492
5528
|
fill: "currentColor"
|
|
5493
5529
|
}
|
|
5494
5530
|
),
|
|
5495
|
-
/* @__PURE__ */
|
|
5531
|
+
/* @__PURE__ */ React94.createElement(
|
|
5496
5532
|
"path",
|
|
5497
5533
|
{
|
|
5498
5534
|
fillRule: "evenodd",
|
|
@@ -5501,7 +5537,7 @@ var init_Pet = __esm({
|
|
|
5501
5537
|
fill: "currentColor"
|
|
5502
5538
|
}
|
|
5503
5539
|
),
|
|
5504
|
-
/* @__PURE__ */
|
|
5540
|
+
/* @__PURE__ */ React94.createElement(
|
|
5505
5541
|
"path",
|
|
5506
5542
|
{
|
|
5507
5543
|
fillRule: "evenodd",
|
|
@@ -5510,7 +5546,7 @@ var init_Pet = __esm({
|
|
|
5510
5546
|
fill: "currentColor"
|
|
5511
5547
|
}
|
|
5512
5548
|
),
|
|
5513
|
-
/* @__PURE__ */
|
|
5549
|
+
/* @__PURE__ */ React94.createElement(
|
|
5514
5550
|
"path",
|
|
5515
5551
|
{
|
|
5516
5552
|
fillRule: "evenodd",
|
|
@@ -5530,15 +5566,15 @@ var PhoneLinear_exports = {};
|
|
|
5530
5566
|
__export(PhoneLinear_exports, {
|
|
5531
5567
|
default: () => PhoneLinear_default
|
|
5532
5568
|
});
|
|
5533
|
-
var
|
|
5569
|
+
var React95, SvgPhoneLinear, PhoneLinear_default;
|
|
5534
5570
|
var init_PhoneLinear = __esm({
|
|
5535
5571
|
"src/react/PhoneLinear.tsx"() {
|
|
5536
5572
|
"use strict";
|
|
5537
|
-
|
|
5573
|
+
React95 = __toESM(require("react"));
|
|
5538
5574
|
init_types();
|
|
5539
5575
|
SvgPhoneLinear = ({ size = 16, ...props }) => {
|
|
5540
5576
|
const sizeValue = resolveSize(size);
|
|
5541
|
-
return /* @__PURE__ */
|
|
5577
|
+
return /* @__PURE__ */ React95.createElement(
|
|
5542
5578
|
"svg",
|
|
5543
5579
|
{
|
|
5544
5580
|
width: sizeValue,
|
|
@@ -5548,7 +5584,7 @@ var init_PhoneLinear = __esm({
|
|
|
5548
5584
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5549
5585
|
...props
|
|
5550
5586
|
},
|
|
5551
|
-
/* @__PURE__ */
|
|
5587
|
+
/* @__PURE__ */ React95.createElement(
|
|
5552
5588
|
"path",
|
|
5553
5589
|
{
|
|
5554
5590
|
d: "M2.03296 7.0498C2.03301 6.32705 2.16087 5.62378 2.42358 4.9668C2.69267 4.28489 3.11486 3.66908 3.68433 3.13184C4.39753 2.43522 5.24516 2.03418 6.18823 2.03418C6.56349 2.03424 6.9463 2.11459 7.29858 2.28125C7.66527 2.45049 8.00211 2.71079 8.26343 3.08496L10.3669 6.04883C10.5611 6.31906 10.715 6.58748 10.8279 6.86328C10.9416 7.13229 11.0221 7.439 11.0222 7.75684C11.0222 8.15556 10.9049 8.53405 10.7009 8.86914L10.7 8.86816C10.536 9.15169 10.3181 9.42026 10.072 9.66797L9.55444 10.2061C9.68722 10.4205 9.90014 10.714 10.2136 11.085L10.8308 11.7793C11.0394 12.0074 11.2549 12.2359 11.4783 12.4639L12.1843 13.1396C12.4148 13.3537 12.6419 13.5573 12.8699 13.751C13.2453 14.0686 13.5438 14.2787 13.7654 14.4102L14.2761 13.9062C14.5236 13.6592 14.7967 13.4343 15.0935 13.2705L15.2195 13.1992C15.518 13.041 15.845 12.9492 16.2048 12.9492C16.5089 12.9492 16.8058 13.0141 17.0984 13.1338C17.3733 13.2462 17.6383 13.3994 17.8982 13.5762L17.906 13.5811L17.9138 13.5869L20.9138 15.7168C21.2179 15.9288 21.4689 16.1936 21.6443 16.5225L21.7156 16.6689L21.7214 16.6826L21.7273 16.6973C21.8508 17.006 21.9373 17.3467 21.9373 17.7383C21.9372 18.1995 21.8337 18.6658 21.6238 19.1104C21.434 19.5123 21.1859 19.8954 20.8601 20.2549C20.3378 20.8305 19.7416 21.2675 19.0525 21.5508C18.3948 21.8248 17.6879 21.9648 16.9392 21.9648C15.8724 21.9648 14.7643 21.714 13.6316 21.2314C12.5201 20.7579 11.4182 20.1241 10.3357 19.3359L10.3347 19.335C9.25516 18.5464 8.2325 17.6746 7.25854 16.71L7.25269 16.7031C6.28835 15.7294 5.41555 14.7071 4.6355 13.6357L4.63257 13.6318C3.85754 12.5544 3.22319 11.4624 2.75757 10.3662L2.75659 10.3643C2.28356 9.24081 2.03296 8.13301 2.03296 7.0498ZM3.83374 7.0498C3.83374 7.85158 4.01818 8.72047 4.41479 9.66309L4.57397 10.0205C4.9619 10.8577 5.46914 11.7118 6.09058 12.5762L6.36597 12.9473C7.01956 13.8092 7.74178 14.6386 8.53198 15.4365C9.4415 16.3367 10.3924 17.1482 11.3953 17.8809L11.7644 18.1426C12.6253 18.7361 13.4849 19.2123 14.3367 19.5752C15.2888 19.9809 16.1569 20.165 16.9392 20.165C17.4595 20.165 17.931 20.0689 18.3611 19.8896L18.366 19.8877C18.7807 19.7176 19.1623 19.448 19.5271 19.0459C19.7269 18.8253 19.8775 18.5923 19.9958 18.3418C20.0941 18.1337 20.1365 17.9296 20.1365 17.7383C20.1365 17.6275 20.1154 17.52 20.0632 17.3848C20.039 17.3335 19.9937 17.2687 19.8806 17.1904L19.8718 17.1846L16.8787 15.0596C16.6891 14.9312 16.539 14.8498 16.4167 14.7998C16.3109 14.7565 16.2451 14.749 16.2048 14.749C16.1628 14.749 16.1141 14.7568 16.0291 14.8086L16.0037 14.8242L15.9773 14.8379C15.8791 14.8892 15.7346 14.9936 15.5447 15.1836L15.5408 15.1875L14.8523 15.8682L14.8513 15.8672C14.5927 16.1239 14.2516 16.2811 13.8484 16.2812C13.6971 16.2812 13.5095 16.264 13.3054 16.1875L13.2859 16.1807L13.2664 16.1719C13.2224 16.153 13.1818 16.134 13.158 16.123C13.1328 16.1115 13.1238 16.1084 13.1238 16.1084L13.0798 16.0898L13.0369 16.0674C12.6503 15.8627 12.2055 15.5471 11.7078 15.126L11.7058 15.124C11.2021 14.6963 10.7132 14.2355 10.2166 13.748L10.2048 13.7363C9.71738 13.2395 9.26936 12.7446 8.85229 12.2627L8.84546 12.2549C8.43086 11.7649 8.10584 11.3213 7.90015 10.9443L7.86108 10.874L7.83569 10.7979C7.83405 10.7939 7.83126 10.7883 7.82788 10.7803C7.81747 10.7557 7.79565 10.7047 7.77417 10.6475L7.75659 10.5996L7.7439 10.5498C7.7275 10.4842 7.71422 10.417 7.70483 10.3467L7.69019 10.123L7.69604 9.9873C7.72414 9.67259 7.85138 9.37104 8.09839 9.12402L8.77515 8.4209L8.78784 8.4082C8.9646 8.23144 9.08062 8.07757 9.14819 7.95801L9.15503 7.94531L9.16284 7.93262C9.21259 7.85081 9.22241 7.79321 9.22241 7.75684C9.2223 7.73497 9.21389 7.66631 9.16772 7.55859L9.16187 7.54492C9.11221 7.42362 9.03257 7.27691 8.9021 7.0957L8.89819 7.09082L6.79565 4.12598L6.78979 4.11816C6.72557 4.02539 6.64667 3.96211 6.54468 3.91504L6.53296 3.90918C6.43566 3.86248 6.31587 3.83502 6.18823 3.83496C5.79566 3.83496 5.37766 3.99039 4.93335 4.42773L4.91968 4.44141C4.52964 4.80939 4.26353 5.20778 4.09741 5.62988L4.09546 5.63477C3.92328 6.06522 3.83379 6.54018 3.83374 7.0498Z",
|
|
@@ -5566,15 +5602,15 @@ var PinMapSolid_exports = {};
|
|
|
5566
5602
|
__export(PinMapSolid_exports, {
|
|
5567
5603
|
default: () => PinMapSolid_default
|
|
5568
5604
|
});
|
|
5569
|
-
var
|
|
5605
|
+
var React96, SvgPinMapSolid, PinMapSolid_default;
|
|
5570
5606
|
var init_PinMapSolid = __esm({
|
|
5571
5607
|
"src/react/PinMapSolid.tsx"() {
|
|
5572
5608
|
"use strict";
|
|
5573
|
-
|
|
5609
|
+
React96 = __toESM(require("react"));
|
|
5574
5610
|
init_types();
|
|
5575
5611
|
SvgPinMapSolid = ({ size = 16, ...props }) => {
|
|
5576
5612
|
const sizeValue = resolveSize(size);
|
|
5577
|
-
return /* @__PURE__ */
|
|
5613
|
+
return /* @__PURE__ */ React96.createElement(
|
|
5578
5614
|
"svg",
|
|
5579
5615
|
{
|
|
5580
5616
|
width: sizeValue,
|
|
@@ -5584,7 +5620,7 @@ var init_PinMapSolid = __esm({
|
|
|
5584
5620
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5585
5621
|
...props
|
|
5586
5622
|
},
|
|
5587
|
-
/* @__PURE__ */
|
|
5623
|
+
/* @__PURE__ */ React96.createElement(
|
|
5588
5624
|
"path",
|
|
5589
5625
|
{
|
|
5590
5626
|
fillRule: "evenodd",
|
|
@@ -5604,15 +5640,15 @@ var Plus_exports = {};
|
|
|
5604
5640
|
__export(Plus_exports, {
|
|
5605
5641
|
default: () => Plus_default
|
|
5606
5642
|
});
|
|
5607
|
-
var
|
|
5643
|
+
var React97, SvgPlus, Plus_default;
|
|
5608
5644
|
var init_Plus = __esm({
|
|
5609
5645
|
"src/react/Plus.tsx"() {
|
|
5610
5646
|
"use strict";
|
|
5611
|
-
|
|
5647
|
+
React97 = __toESM(require("react"));
|
|
5612
5648
|
init_types();
|
|
5613
5649
|
SvgPlus = ({ size = 16, ...props }) => {
|
|
5614
5650
|
const sizeValue = resolveSize(size);
|
|
5615
|
-
return /* @__PURE__ */
|
|
5651
|
+
return /* @__PURE__ */ React97.createElement(
|
|
5616
5652
|
"svg",
|
|
5617
5653
|
{
|
|
5618
5654
|
width: sizeValue,
|
|
@@ -5622,7 +5658,7 @@ var init_Plus = __esm({
|
|
|
5622
5658
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5623
5659
|
...props
|
|
5624
5660
|
},
|
|
5625
|
-
/* @__PURE__ */
|
|
5661
|
+
/* @__PURE__ */ React97.createElement(
|
|
5626
5662
|
"path",
|
|
5627
5663
|
{
|
|
5628
5664
|
d: "M11 19V13H5C4.44772 13 4 12.5523 4 12C4 11.4477 4.44772 11 5 11H11V5C11 4.44772 11.4477 4 12 4C12.5523 4 13 4.44772 13 5V11H19C19.5523 11 20 11.4477 20 12C20 12.5523 19.5523 13 19 13H13V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19Z",
|
|
@@ -5640,15 +5676,15 @@ var Promotion_exports = {};
|
|
|
5640
5676
|
__export(Promotion_exports, {
|
|
5641
5677
|
default: () => Promotion_default
|
|
5642
5678
|
});
|
|
5643
|
-
var
|
|
5679
|
+
var React98, SvgPromotion, Promotion_default;
|
|
5644
5680
|
var init_Promotion = __esm({
|
|
5645
5681
|
"src/react/Promotion.tsx"() {
|
|
5646
5682
|
"use strict";
|
|
5647
|
-
|
|
5683
|
+
React98 = __toESM(require("react"));
|
|
5648
5684
|
init_types();
|
|
5649
5685
|
SvgPromotion = ({ size = 16, ...props }) => {
|
|
5650
5686
|
const sizeValue = resolveSize(size);
|
|
5651
|
-
return /* @__PURE__ */
|
|
5687
|
+
return /* @__PURE__ */ React98.createElement(
|
|
5652
5688
|
"svg",
|
|
5653
5689
|
{
|
|
5654
5690
|
width: sizeValue,
|
|
@@ -5658,7 +5694,7 @@ var init_Promotion = __esm({
|
|
|
5658
5694
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5659
5695
|
...props
|
|
5660
5696
|
},
|
|
5661
|
-
/* @__PURE__ */
|
|
5697
|
+
/* @__PURE__ */ React98.createElement(
|
|
5662
5698
|
"path",
|
|
5663
5699
|
{
|
|
5664
5700
|
fillRule: "evenodd",
|
|
@@ -5667,7 +5703,7 @@ var init_Promotion = __esm({
|
|
|
5667
5703
|
fill: "currentColor"
|
|
5668
5704
|
}
|
|
5669
5705
|
),
|
|
5670
|
-
/* @__PURE__ */
|
|
5706
|
+
/* @__PURE__ */ React98.createElement(
|
|
5671
5707
|
"path",
|
|
5672
5708
|
{
|
|
5673
5709
|
fillRule: "evenodd",
|
|
@@ -5676,7 +5712,7 @@ var init_Promotion = __esm({
|
|
|
5676
5712
|
fill: "currentColor"
|
|
5677
5713
|
}
|
|
5678
5714
|
),
|
|
5679
|
-
/* @__PURE__ */
|
|
5715
|
+
/* @__PURE__ */ React98.createElement(
|
|
5680
5716
|
"path",
|
|
5681
5717
|
{
|
|
5682
5718
|
fillRule: "evenodd",
|
|
@@ -5685,7 +5721,7 @@ var init_Promotion = __esm({
|
|
|
5685
5721
|
fill: "currentColor"
|
|
5686
5722
|
}
|
|
5687
5723
|
),
|
|
5688
|
-
/* @__PURE__ */
|
|
5724
|
+
/* @__PURE__ */ React98.createElement(
|
|
5689
5725
|
"path",
|
|
5690
5726
|
{
|
|
5691
5727
|
fillRule: "evenodd",
|
|
@@ -5705,15 +5741,15 @@ var PropertiesFilled_exports = {};
|
|
|
5705
5741
|
__export(PropertiesFilled_exports, {
|
|
5706
5742
|
default: () => PropertiesFilled_default
|
|
5707
5743
|
});
|
|
5708
|
-
var
|
|
5744
|
+
var React99, SvgPropertiesFilled, PropertiesFilled_default;
|
|
5709
5745
|
var init_PropertiesFilled = __esm({
|
|
5710
5746
|
"src/react/PropertiesFilled.tsx"() {
|
|
5711
5747
|
"use strict";
|
|
5712
|
-
|
|
5748
|
+
React99 = __toESM(require("react"));
|
|
5713
5749
|
init_types();
|
|
5714
5750
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
5715
5751
|
const sizeValue = resolveSize(size);
|
|
5716
|
-
return /* @__PURE__ */
|
|
5752
|
+
return /* @__PURE__ */ React99.createElement(
|
|
5717
5753
|
"svg",
|
|
5718
5754
|
{
|
|
5719
5755
|
width: sizeValue,
|
|
@@ -5723,7 +5759,7 @@ var init_PropertiesFilled = __esm({
|
|
|
5723
5759
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5724
5760
|
...props
|
|
5725
5761
|
},
|
|
5726
|
-
/* @__PURE__ */
|
|
5762
|
+
/* @__PURE__ */ React99.createElement(
|
|
5727
5763
|
"path",
|
|
5728
5764
|
{
|
|
5729
5765
|
fillRule: "evenodd",
|
|
@@ -5732,7 +5768,7 @@ var init_PropertiesFilled = __esm({
|
|
|
5732
5768
|
fill: "currentColor"
|
|
5733
5769
|
}
|
|
5734
5770
|
),
|
|
5735
|
-
/* @__PURE__ */
|
|
5771
|
+
/* @__PURE__ */ React99.createElement(
|
|
5736
5772
|
"path",
|
|
5737
5773
|
{
|
|
5738
5774
|
fillRule: "evenodd",
|
|
@@ -5741,7 +5777,7 @@ var init_PropertiesFilled = __esm({
|
|
|
5741
5777
|
fill: "currentColor"
|
|
5742
5778
|
}
|
|
5743
5779
|
),
|
|
5744
|
-
/* @__PURE__ */
|
|
5780
|
+
/* @__PURE__ */ React99.createElement(
|
|
5745
5781
|
"path",
|
|
5746
5782
|
{
|
|
5747
5783
|
d: "M16.0356 0.902344C17.6923 0.902608 19.0356 2.24565 19.0356 3.90234V19.999C19.0356 21.6559 17.6915 22.999 16.0347 22.999H8.00049C6.34363 22.999 5.00049 21.6559 5.00049 19.999V3.90234C5.00049 2.24549 6.34363 0.902344 8.00049 0.902344H16.0356ZM10.0005 17C9.4482 17 9.00049 17.4477 9.00049 18C9.00051 18.5523 9.44822 19 10.0005 19H14.0005C14.5525 18.9997 15.0005 18.5521 15.0005 18C15.0005 17.4479 14.5525 17.0003 14.0005 17H10.0005ZM10.0005 13C9.4482 13 9.00049 13.4477 9.00049 14C9.00051 14.5523 9.44822 15 10.0005 15H14.0005C14.5525 14.9997 15.0005 14.5521 15.0005 14C15.0005 13.4479 14.5525 13.0003 14.0005 13H10.0005ZM10.0005 9C9.4482 9 9.00049 9.44771 9.00049 10C9.00051 10.5523 9.44822 11 10.0005 11H14.0005C14.5525 10.9997 15.0005 10.5521 15.0005 10C15.0005 9.44788 14.5525 9.00026 14.0005 9H10.0005ZM10.0005 5C9.4482 5 9.00049 5.44772 9.00049 6C9.00051 6.55226 9.44822 7 10.0005 7H14.0005C14.5525 6.99974 15.0005 6.5521 15.0005 6C15.0005 5.44788 14.5525 5.00026 14.0005 5H10.0005Z",
|
|
@@ -5759,15 +5795,15 @@ var PropertiesLinear_exports = {};
|
|
|
5759
5795
|
__export(PropertiesLinear_exports, {
|
|
5760
5796
|
default: () => PropertiesLinear_default
|
|
5761
5797
|
});
|
|
5762
|
-
var
|
|
5798
|
+
var React100, SvgPropertiesLinear, PropertiesLinear_default;
|
|
5763
5799
|
var init_PropertiesLinear = __esm({
|
|
5764
5800
|
"src/react/PropertiesLinear.tsx"() {
|
|
5765
5801
|
"use strict";
|
|
5766
|
-
|
|
5802
|
+
React100 = __toESM(require("react"));
|
|
5767
5803
|
init_types();
|
|
5768
5804
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
5769
5805
|
const sizeValue = resolveSize(size);
|
|
5770
|
-
return /* @__PURE__ */
|
|
5806
|
+
return /* @__PURE__ */ React100.createElement(
|
|
5771
5807
|
"svg",
|
|
5772
5808
|
{
|
|
5773
5809
|
width: sizeValue,
|
|
@@ -5777,7 +5813,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5777
5813
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5778
5814
|
...props
|
|
5779
5815
|
},
|
|
5780
|
-
/* @__PURE__ */
|
|
5816
|
+
/* @__PURE__ */ React100.createElement(
|
|
5781
5817
|
"path",
|
|
5782
5818
|
{
|
|
5783
5819
|
fillRule: "evenodd",
|
|
@@ -5786,7 +5822,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5786
5822
|
fill: "currentColor"
|
|
5787
5823
|
}
|
|
5788
5824
|
),
|
|
5789
|
-
/* @__PURE__ */
|
|
5825
|
+
/* @__PURE__ */ React100.createElement(
|
|
5790
5826
|
"path",
|
|
5791
5827
|
{
|
|
5792
5828
|
fillRule: "evenodd",
|
|
@@ -5795,7 +5831,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5795
5831
|
fill: "currentColor"
|
|
5796
5832
|
}
|
|
5797
5833
|
),
|
|
5798
|
-
/* @__PURE__ */
|
|
5834
|
+
/* @__PURE__ */ React100.createElement(
|
|
5799
5835
|
"path",
|
|
5800
5836
|
{
|
|
5801
5837
|
fillRule: "evenodd",
|
|
@@ -5804,7 +5840,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5804
5840
|
fill: "currentColor"
|
|
5805
5841
|
}
|
|
5806
5842
|
),
|
|
5807
|
-
/* @__PURE__ */
|
|
5843
|
+
/* @__PURE__ */ React100.createElement(
|
|
5808
5844
|
"path",
|
|
5809
5845
|
{
|
|
5810
5846
|
fillRule: "evenodd",
|
|
@@ -5813,7 +5849,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5813
5849
|
fill: "currentColor"
|
|
5814
5850
|
}
|
|
5815
5851
|
),
|
|
5816
|
-
/* @__PURE__ */
|
|
5852
|
+
/* @__PURE__ */ React100.createElement(
|
|
5817
5853
|
"path",
|
|
5818
5854
|
{
|
|
5819
5855
|
fillRule: "evenodd",
|
|
@@ -5822,7 +5858,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5822
5858
|
fill: "currentColor"
|
|
5823
5859
|
}
|
|
5824
5860
|
),
|
|
5825
|
-
/* @__PURE__ */
|
|
5861
|
+
/* @__PURE__ */ React100.createElement(
|
|
5826
5862
|
"path",
|
|
5827
5863
|
{
|
|
5828
5864
|
fillRule: "evenodd",
|
|
@@ -5831,7 +5867,7 @@ var init_PropertiesLinear = __esm({
|
|
|
5831
5867
|
fill: "currentColor"
|
|
5832
5868
|
}
|
|
5833
5869
|
),
|
|
5834
|
-
/* @__PURE__ */
|
|
5870
|
+
/* @__PURE__ */ React100.createElement(
|
|
5835
5871
|
"path",
|
|
5836
5872
|
{
|
|
5837
5873
|
fillRule: "evenodd",
|
|
@@ -5851,15 +5887,15 @@ var Rent_exports = {};
|
|
|
5851
5887
|
__export(Rent_exports, {
|
|
5852
5888
|
default: () => Rent_default
|
|
5853
5889
|
});
|
|
5854
|
-
var
|
|
5890
|
+
var React101, SvgRent, Rent_default;
|
|
5855
5891
|
var init_Rent = __esm({
|
|
5856
5892
|
"src/react/Rent.tsx"() {
|
|
5857
5893
|
"use strict";
|
|
5858
|
-
|
|
5894
|
+
React101 = __toESM(require("react"));
|
|
5859
5895
|
init_types();
|
|
5860
5896
|
SvgRent = ({ size = 16, ...props }) => {
|
|
5861
5897
|
const sizeValue = resolveSize(size);
|
|
5862
|
-
return /* @__PURE__ */
|
|
5898
|
+
return /* @__PURE__ */ React101.createElement(
|
|
5863
5899
|
"svg",
|
|
5864
5900
|
{
|
|
5865
5901
|
width: sizeValue,
|
|
@@ -5869,7 +5905,7 @@ var init_Rent = __esm({
|
|
|
5869
5905
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5870
5906
|
...props
|
|
5871
5907
|
},
|
|
5872
|
-
/* @__PURE__ */
|
|
5908
|
+
/* @__PURE__ */ React101.createElement(
|
|
5873
5909
|
"path",
|
|
5874
5910
|
{
|
|
5875
5911
|
fillRule: "evenodd",
|
|
@@ -5878,7 +5914,7 @@ var init_Rent = __esm({
|
|
|
5878
5914
|
fill: "currentColor"
|
|
5879
5915
|
}
|
|
5880
5916
|
),
|
|
5881
|
-
/* @__PURE__ */
|
|
5917
|
+
/* @__PURE__ */ React101.createElement(
|
|
5882
5918
|
"path",
|
|
5883
5919
|
{
|
|
5884
5920
|
fillRule: "evenodd",
|
|
@@ -5887,7 +5923,7 @@ var init_Rent = __esm({
|
|
|
5887
5923
|
fill: "currentColor"
|
|
5888
5924
|
}
|
|
5889
5925
|
),
|
|
5890
|
-
/* @__PURE__ */
|
|
5926
|
+
/* @__PURE__ */ React101.createElement(
|
|
5891
5927
|
"path",
|
|
5892
5928
|
{
|
|
5893
5929
|
fillRule: "evenodd",
|
|
@@ -5907,15 +5943,15 @@ var Restaurant_exports = {};
|
|
|
5907
5943
|
__export(Restaurant_exports, {
|
|
5908
5944
|
default: () => Restaurant_default
|
|
5909
5945
|
});
|
|
5910
|
-
var
|
|
5946
|
+
var React102, SvgRestaurant, Restaurant_default;
|
|
5911
5947
|
var init_Restaurant = __esm({
|
|
5912
5948
|
"src/react/Restaurant.tsx"() {
|
|
5913
5949
|
"use strict";
|
|
5914
|
-
|
|
5950
|
+
React102 = __toESM(require("react"));
|
|
5915
5951
|
init_types();
|
|
5916
5952
|
SvgRestaurant = ({ size = 16, ...props }) => {
|
|
5917
5953
|
const sizeValue = resolveSize(size);
|
|
5918
|
-
return /* @__PURE__ */
|
|
5954
|
+
return /* @__PURE__ */ React102.createElement(
|
|
5919
5955
|
"svg",
|
|
5920
5956
|
{
|
|
5921
5957
|
width: sizeValue,
|
|
@@ -5925,7 +5961,7 @@ var init_Restaurant = __esm({
|
|
|
5925
5961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5926
5962
|
...props
|
|
5927
5963
|
},
|
|
5928
|
-
/* @__PURE__ */
|
|
5964
|
+
/* @__PURE__ */ React102.createElement(
|
|
5929
5965
|
"path",
|
|
5930
5966
|
{
|
|
5931
5967
|
fillRule: "evenodd",
|
|
@@ -5934,7 +5970,7 @@ var init_Restaurant = __esm({
|
|
|
5934
5970
|
fill: "currentColor"
|
|
5935
5971
|
}
|
|
5936
5972
|
),
|
|
5937
|
-
/* @__PURE__ */
|
|
5973
|
+
/* @__PURE__ */ React102.createElement(
|
|
5938
5974
|
"path",
|
|
5939
5975
|
{
|
|
5940
5976
|
fillRule: "evenodd",
|
|
@@ -5954,15 +5990,15 @@ var Sale_exports = {};
|
|
|
5954
5990
|
__export(Sale_exports, {
|
|
5955
5991
|
default: () => Sale_default
|
|
5956
5992
|
});
|
|
5957
|
-
var
|
|
5993
|
+
var React103, SvgSale, Sale_default;
|
|
5958
5994
|
var init_Sale = __esm({
|
|
5959
5995
|
"src/react/Sale.tsx"() {
|
|
5960
5996
|
"use strict";
|
|
5961
|
-
|
|
5997
|
+
React103 = __toESM(require("react"));
|
|
5962
5998
|
init_types();
|
|
5963
5999
|
SvgSale = ({ size = 16, ...props }) => {
|
|
5964
6000
|
const sizeValue = resolveSize(size);
|
|
5965
|
-
return /* @__PURE__ */
|
|
6001
|
+
return /* @__PURE__ */ React103.createElement(
|
|
5966
6002
|
"svg",
|
|
5967
6003
|
{
|
|
5968
6004
|
width: sizeValue,
|
|
@@ -5972,7 +6008,7 @@ var init_Sale = __esm({
|
|
|
5972
6008
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5973
6009
|
...props
|
|
5974
6010
|
},
|
|
5975
|
-
/* @__PURE__ */
|
|
6011
|
+
/* @__PURE__ */ React103.createElement(
|
|
5976
6012
|
"path",
|
|
5977
6013
|
{
|
|
5978
6014
|
fillRule: "evenodd",
|
|
@@ -5981,7 +6017,7 @@ var init_Sale = __esm({
|
|
|
5981
6017
|
fill: "currentColor"
|
|
5982
6018
|
}
|
|
5983
6019
|
),
|
|
5984
|
-
/* @__PURE__ */
|
|
6020
|
+
/* @__PURE__ */ React103.createElement(
|
|
5985
6021
|
"path",
|
|
5986
6022
|
{
|
|
5987
6023
|
fillRule: "evenodd",
|
|
@@ -5990,7 +6026,7 @@ var init_Sale = __esm({
|
|
|
5990
6026
|
fill: "currentColor"
|
|
5991
6027
|
}
|
|
5992
6028
|
),
|
|
5993
|
-
/* @__PURE__ */
|
|
6029
|
+
/* @__PURE__ */ React103.createElement(
|
|
5994
6030
|
"path",
|
|
5995
6031
|
{
|
|
5996
6032
|
fillRule: "evenodd",
|
|
@@ -6010,15 +6046,15 @@ var Search_exports = {};
|
|
|
6010
6046
|
__export(Search_exports, {
|
|
6011
6047
|
default: () => Search_default
|
|
6012
6048
|
});
|
|
6013
|
-
var
|
|
6049
|
+
var React104, SvgSearch, Search_default;
|
|
6014
6050
|
var init_Search = __esm({
|
|
6015
6051
|
"src/react/Search.tsx"() {
|
|
6016
6052
|
"use strict";
|
|
6017
|
-
|
|
6053
|
+
React104 = __toESM(require("react"));
|
|
6018
6054
|
init_types();
|
|
6019
6055
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
6020
6056
|
const sizeValue = resolveSize(size);
|
|
6021
|
-
return /* @__PURE__ */
|
|
6057
|
+
return /* @__PURE__ */ React104.createElement(
|
|
6022
6058
|
"svg",
|
|
6023
6059
|
{
|
|
6024
6060
|
width: sizeValue,
|
|
@@ -6028,7 +6064,7 @@ var init_Search = __esm({
|
|
|
6028
6064
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6029
6065
|
...props
|
|
6030
6066
|
},
|
|
6031
|
-
/* @__PURE__ */
|
|
6067
|
+
/* @__PURE__ */ React104.createElement(
|
|
6032
6068
|
"path",
|
|
6033
6069
|
{
|
|
6034
6070
|
fillRule: "evenodd",
|
|
@@ -6037,7 +6073,7 @@ var init_Search = __esm({
|
|
|
6037
6073
|
fill: "currentColor"
|
|
6038
6074
|
}
|
|
6039
6075
|
),
|
|
6040
|
-
/* @__PURE__ */
|
|
6076
|
+
/* @__PURE__ */ React104.createElement(
|
|
6041
6077
|
"path",
|
|
6042
6078
|
{
|
|
6043
6079
|
fillRule: "evenodd",
|
|
@@ -6057,15 +6093,15 @@ var SearchX_exports = {};
|
|
|
6057
6093
|
__export(SearchX_exports, {
|
|
6058
6094
|
default: () => SearchX_default
|
|
6059
6095
|
});
|
|
6060
|
-
var
|
|
6096
|
+
var React105, SvgSearchX, SearchX_default;
|
|
6061
6097
|
var init_SearchX = __esm({
|
|
6062
6098
|
"src/react/SearchX.tsx"() {
|
|
6063
6099
|
"use strict";
|
|
6064
|
-
|
|
6100
|
+
React105 = __toESM(require("react"));
|
|
6065
6101
|
init_types();
|
|
6066
6102
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
6067
6103
|
const sizeValue = resolveSize(size);
|
|
6068
|
-
return /* @__PURE__ */
|
|
6104
|
+
return /* @__PURE__ */ React105.createElement(
|
|
6069
6105
|
"svg",
|
|
6070
6106
|
{
|
|
6071
6107
|
width: sizeValue,
|
|
@@ -6075,7 +6111,7 @@ var init_SearchX = __esm({
|
|
|
6075
6111
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6076
6112
|
...props
|
|
6077
6113
|
},
|
|
6078
|
-
/* @__PURE__ */
|
|
6114
|
+
/* @__PURE__ */ React105.createElement(
|
|
6079
6115
|
"path",
|
|
6080
6116
|
{
|
|
6081
6117
|
fillRule: "evenodd",
|
|
@@ -6084,7 +6120,7 @@ var init_SearchX = __esm({
|
|
|
6084
6120
|
fill: "currentColor"
|
|
6085
6121
|
}
|
|
6086
6122
|
),
|
|
6087
|
-
/* @__PURE__ */
|
|
6123
|
+
/* @__PURE__ */ React105.createElement(
|
|
6088
6124
|
"path",
|
|
6089
6125
|
{
|
|
6090
6126
|
fillRule: "evenodd",
|
|
@@ -6093,7 +6129,7 @@ var init_SearchX = __esm({
|
|
|
6093
6129
|
fill: "currentColor"
|
|
6094
6130
|
}
|
|
6095
6131
|
),
|
|
6096
|
-
/* @__PURE__ */
|
|
6132
|
+
/* @__PURE__ */ React105.createElement(
|
|
6097
6133
|
"path",
|
|
6098
6134
|
{
|
|
6099
6135
|
fillRule: "evenodd",
|
|
@@ -6102,7 +6138,7 @@ var init_SearchX = __esm({
|
|
|
6102
6138
|
fill: "currentColor"
|
|
6103
6139
|
}
|
|
6104
6140
|
),
|
|
6105
|
-
/* @__PURE__ */
|
|
6141
|
+
/* @__PURE__ */ React105.createElement(
|
|
6106
6142
|
"path",
|
|
6107
6143
|
{
|
|
6108
6144
|
fillRule: "evenodd",
|
|
@@ -6122,15 +6158,15 @@ var Share_exports = {};
|
|
|
6122
6158
|
__export(Share_exports, {
|
|
6123
6159
|
default: () => Share_default
|
|
6124
6160
|
});
|
|
6125
|
-
var
|
|
6161
|
+
var React106, SvgShare, Share_default;
|
|
6126
6162
|
var init_Share = __esm({
|
|
6127
6163
|
"src/react/Share.tsx"() {
|
|
6128
6164
|
"use strict";
|
|
6129
|
-
|
|
6165
|
+
React106 = __toESM(require("react"));
|
|
6130
6166
|
init_types();
|
|
6131
6167
|
SvgShare = ({ size = 16, ...props }) => {
|
|
6132
6168
|
const sizeValue = resolveSize(size);
|
|
6133
|
-
return /* @__PURE__ */
|
|
6169
|
+
return /* @__PURE__ */ React106.createElement(
|
|
6134
6170
|
"svg",
|
|
6135
6171
|
{
|
|
6136
6172
|
width: sizeValue,
|
|
@@ -6140,7 +6176,7 @@ var init_Share = __esm({
|
|
|
6140
6176
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6141
6177
|
...props
|
|
6142
6178
|
},
|
|
6143
|
-
/* @__PURE__ */
|
|
6179
|
+
/* @__PURE__ */ React106.createElement(
|
|
6144
6180
|
"path",
|
|
6145
6181
|
{
|
|
6146
6182
|
fillRule: "evenodd",
|
|
@@ -6149,7 +6185,7 @@ var init_Share = __esm({
|
|
|
6149
6185
|
fill: "currentColor"
|
|
6150
6186
|
}
|
|
6151
6187
|
),
|
|
6152
|
-
/* @__PURE__ */
|
|
6188
|
+
/* @__PURE__ */ React106.createElement(
|
|
6153
6189
|
"path",
|
|
6154
6190
|
{
|
|
6155
6191
|
fillRule: "evenodd",
|
|
@@ -6158,7 +6194,7 @@ var init_Share = __esm({
|
|
|
6158
6194
|
fill: "currentColor"
|
|
6159
6195
|
}
|
|
6160
6196
|
),
|
|
6161
|
-
/* @__PURE__ */
|
|
6197
|
+
/* @__PURE__ */ React106.createElement(
|
|
6162
6198
|
"path",
|
|
6163
6199
|
{
|
|
6164
6200
|
fillRule: "evenodd",
|
|
@@ -6178,15 +6214,15 @@ var Size3D_exports = {};
|
|
|
6178
6214
|
__export(Size3D_exports, {
|
|
6179
6215
|
default: () => Size3D_default
|
|
6180
6216
|
});
|
|
6181
|
-
var
|
|
6217
|
+
var React107, SvgSize3D, Size3D_default;
|
|
6182
6218
|
var init_Size3D = __esm({
|
|
6183
6219
|
"src/react/Size3D.tsx"() {
|
|
6184
6220
|
"use strict";
|
|
6185
|
-
|
|
6221
|
+
React107 = __toESM(require("react"));
|
|
6186
6222
|
init_types();
|
|
6187
6223
|
SvgSize3D = ({ size = 16, ...props }) => {
|
|
6188
6224
|
const sizeValue = resolveSize(size);
|
|
6189
|
-
return /* @__PURE__ */
|
|
6225
|
+
return /* @__PURE__ */ React107.createElement(
|
|
6190
6226
|
"svg",
|
|
6191
6227
|
{
|
|
6192
6228
|
width: sizeValue,
|
|
@@ -6196,7 +6232,7 @@ var init_Size3D = __esm({
|
|
|
6196
6232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6197
6233
|
...props
|
|
6198
6234
|
},
|
|
6199
|
-
/* @__PURE__ */
|
|
6235
|
+
/* @__PURE__ */ React107.createElement(
|
|
6200
6236
|
"path",
|
|
6201
6237
|
{
|
|
6202
6238
|
fillRule: "evenodd",
|
|
@@ -6205,7 +6241,7 @@ var init_Size3D = __esm({
|
|
|
6205
6241
|
fill: "currentColor"
|
|
6206
6242
|
}
|
|
6207
6243
|
),
|
|
6208
|
-
/* @__PURE__ */
|
|
6244
|
+
/* @__PURE__ */ React107.createElement(
|
|
6209
6245
|
"path",
|
|
6210
6246
|
{
|
|
6211
6247
|
fillRule: "evenodd",
|
|
@@ -6214,7 +6250,7 @@ var init_Size3D = __esm({
|
|
|
6214
6250
|
fill: "currentColor"
|
|
6215
6251
|
}
|
|
6216
6252
|
),
|
|
6217
|
-
/* @__PURE__ */
|
|
6253
|
+
/* @__PURE__ */ React107.createElement(
|
|
6218
6254
|
"path",
|
|
6219
6255
|
{
|
|
6220
6256
|
fillRule: "evenodd",
|
|
@@ -6223,7 +6259,7 @@ var init_Size3D = __esm({
|
|
|
6223
6259
|
fill: "currentColor"
|
|
6224
6260
|
}
|
|
6225
6261
|
),
|
|
6226
|
-
/* @__PURE__ */
|
|
6262
|
+
/* @__PURE__ */ React107.createElement(
|
|
6227
6263
|
"path",
|
|
6228
6264
|
{
|
|
6229
6265
|
fillRule: "evenodd",
|
|
@@ -6243,15 +6279,15 @@ var StatusDot_exports = {};
|
|
|
6243
6279
|
__export(StatusDot_exports, {
|
|
6244
6280
|
default: () => StatusDot_default
|
|
6245
6281
|
});
|
|
6246
|
-
var
|
|
6282
|
+
var React108, SvgStatusDot, StatusDot_default;
|
|
6247
6283
|
var init_StatusDot = __esm({
|
|
6248
6284
|
"src/react/StatusDot.tsx"() {
|
|
6249
6285
|
"use strict";
|
|
6250
|
-
|
|
6286
|
+
React108 = __toESM(require("react"));
|
|
6251
6287
|
init_types();
|
|
6252
6288
|
SvgStatusDot = ({ size = 16, ...props }) => {
|
|
6253
6289
|
const sizeValue = resolveSize(size);
|
|
6254
|
-
return /* @__PURE__ */
|
|
6290
|
+
return /* @__PURE__ */ React108.createElement(
|
|
6255
6291
|
"svg",
|
|
6256
6292
|
{
|
|
6257
6293
|
width: sizeValue,
|
|
@@ -6261,7 +6297,7 @@ var init_StatusDot = __esm({
|
|
|
6261
6297
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6262
6298
|
...props
|
|
6263
6299
|
},
|
|
6264
|
-
/* @__PURE__ */
|
|
6300
|
+
/* @__PURE__ */ React108.createElement(
|
|
6265
6301
|
"path",
|
|
6266
6302
|
{
|
|
6267
6303
|
d: "M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z",
|
|
@@ -6279,15 +6315,15 @@ var Storage_exports = {};
|
|
|
6279
6315
|
__export(Storage_exports, {
|
|
6280
6316
|
default: () => Storage_default
|
|
6281
6317
|
});
|
|
6282
|
-
var
|
|
6318
|
+
var React109, SvgStorage, Storage_default;
|
|
6283
6319
|
var init_Storage = __esm({
|
|
6284
6320
|
"src/react/Storage.tsx"() {
|
|
6285
6321
|
"use strict";
|
|
6286
|
-
|
|
6322
|
+
React109 = __toESM(require("react"));
|
|
6287
6323
|
init_types();
|
|
6288
6324
|
SvgStorage = ({ size = 16, ...props }) => {
|
|
6289
6325
|
const sizeValue = resolveSize(size);
|
|
6290
|
-
return /* @__PURE__ */
|
|
6326
|
+
return /* @__PURE__ */ React109.createElement(
|
|
6291
6327
|
"svg",
|
|
6292
6328
|
{
|
|
6293
6329
|
width: sizeValue,
|
|
@@ -6297,7 +6333,7 @@ var init_Storage = __esm({
|
|
|
6297
6333
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6298
6334
|
...props
|
|
6299
6335
|
},
|
|
6300
|
-
/* @__PURE__ */
|
|
6336
|
+
/* @__PURE__ */ React109.createElement(
|
|
6301
6337
|
"path",
|
|
6302
6338
|
{
|
|
6303
6339
|
d: "M15.4409 1.4502C16.1602 1.46435 16.8446 1.76362 17.3433 2.28223C17.8384 2.79713 18.11 3.48636 18.1001 4.2002V11.2002H21.4409C22.1602 11.2143 22.8446 11.5136 23.3433 12.0322C23.8384 12.5471 24.11 13.2364 24.1001 13.9502V19.7842C24.1141 20.5035 23.8419 21.1992 23.3433 21.7178C22.8446 22.2364 22.1602 22.5357 21.4409 22.5498H13.9087C13.2093 22.5356 12.5448 22.2504 12.0503 21.7578C11.5555 22.2505 10.8906 22.536 10.1909 22.5498H2.65966C1.94072 22.5353 1.25678 22.236 0.758296 21.7178C0.259869 21.1994 -0.0130903 20.5041 0.000483051 19.7852V13.9502C-0.00914487 13.2364 0.263254 12.5471 0.758296 12.0322C1.25678 11.514 1.94072 11.2147 2.65966 11.2002H5.25048V4.2002C5.24085 3.48643 5.51228 2.79707 6.00732 2.28223C6.50573 1.76389 7.18976 1.46484 7.90869 1.4502H15.4409ZM12.8511 19.7998H12.8501C12.8502 19.8047 12.8491 19.8096 12.8491 19.8145L12.8501 19.8154C12.8445 20.1108 12.9565 20.3959 13.1606 20.6084C13.3653 20.8212 13.6467 20.9442 13.9419 20.9502H21.4097C21.7047 20.9444 21.9854 20.8211 22.1899 20.6084C22.3944 20.3957 22.5062 20.1104 22.5005 19.8154V13.9346C22.5062 13.6396 22.3944 13.3543 22.1899 13.1416C22.0108 12.9553 21.7734 12.8379 21.519 12.8076L21.4097 12.7998H20.3501V18.0498H15.0005V12.7998H12.8511V19.7998ZM2.58154 12.8076C2.32746 12.8381 2.09056 12.9555 1.91162 13.1416C1.70705 13.3544 1.59454 13.6395 1.60009 13.9346L1.60107 13.9424V19.8076L1.60009 19.8154C1.59454 20.1105 1.70705 20.3956 1.91162 20.6084C2.11623 20.8211 2.39678 20.9442 2.69189 20.9502H10.1597C10.4548 20.9444 10.7354 20.8212 10.9399 20.6084C11.1445 20.3956 11.2562 20.1105 11.2505 19.8154L11.2515 19.8145C11.2515 19.8047 11.2503 19.7949 11.2505 19.7852V12.7998H9.10009V18.0498H3.75048V12.7998H2.69189L2.58154 12.8076ZM16.6001 16.4502H18.7505V12.7998H16.6001V16.4502ZM5.35009 16.4502H7.50048V12.7998H5.35009V16.4502ZM7.83154 3.05762C7.57728 3.08805 7.33968 3.2054 7.16064 3.3916C6.9562 3.60433 6.84454 3.88957 6.85009 4.18457V11.2002H16.5005V4.18457C16.5062 3.88956 16.3944 3.60434 16.1899 3.3916C16.0108 3.20535 15.7734 3.08785 15.519 3.05762L15.4097 3.0498H14.3501V8.2998H9.00048V3.0498H7.94189L7.83154 3.05762ZM10.6001 6.7002H12.7505V3.0498H10.6001V6.7002Z",
|
|
@@ -6315,15 +6351,15 @@ var Store_exports = {};
|
|
|
6315
6351
|
__export(Store_exports, {
|
|
6316
6352
|
default: () => Store_default
|
|
6317
6353
|
});
|
|
6318
|
-
var
|
|
6354
|
+
var React110, SvgStore, Store_default;
|
|
6319
6355
|
var init_Store = __esm({
|
|
6320
6356
|
"src/react/Store.tsx"() {
|
|
6321
6357
|
"use strict";
|
|
6322
|
-
|
|
6358
|
+
React110 = __toESM(require("react"));
|
|
6323
6359
|
init_types();
|
|
6324
6360
|
SvgStore = ({ size = 16, ...props }) => {
|
|
6325
6361
|
const sizeValue = resolveSize(size);
|
|
6326
|
-
return /* @__PURE__ */
|
|
6362
|
+
return /* @__PURE__ */ React110.createElement(
|
|
6327
6363
|
"svg",
|
|
6328
6364
|
{
|
|
6329
6365
|
width: sizeValue,
|
|
@@ -6333,7 +6369,7 @@ var init_Store = __esm({
|
|
|
6333
6369
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6334
6370
|
...props
|
|
6335
6371
|
},
|
|
6336
|
-
/* @__PURE__ */
|
|
6372
|
+
/* @__PURE__ */ React110.createElement(
|
|
6337
6373
|
"path",
|
|
6338
6374
|
{
|
|
6339
6375
|
fillRule: "evenodd",
|
|
@@ -6353,15 +6389,15 @@ var SwimmingPool_exports = {};
|
|
|
6353
6389
|
__export(SwimmingPool_exports, {
|
|
6354
6390
|
default: () => SwimmingPool_default
|
|
6355
6391
|
});
|
|
6356
|
-
var
|
|
6392
|
+
var React111, SvgSwimmingPool, SwimmingPool_default;
|
|
6357
6393
|
var init_SwimmingPool = __esm({
|
|
6358
6394
|
"src/react/SwimmingPool.tsx"() {
|
|
6359
6395
|
"use strict";
|
|
6360
|
-
|
|
6396
|
+
React111 = __toESM(require("react"));
|
|
6361
6397
|
init_types();
|
|
6362
6398
|
SvgSwimmingPool = ({ size = 16, ...props }) => {
|
|
6363
6399
|
const sizeValue = resolveSize(size);
|
|
6364
|
-
return /* @__PURE__ */
|
|
6400
|
+
return /* @__PURE__ */ React111.createElement(
|
|
6365
6401
|
"svg",
|
|
6366
6402
|
{
|
|
6367
6403
|
width: sizeValue,
|
|
@@ -6371,7 +6407,7 @@ var init_SwimmingPool = __esm({
|
|
|
6371
6407
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6372
6408
|
...props
|
|
6373
6409
|
},
|
|
6374
|
-
/* @__PURE__ */
|
|
6410
|
+
/* @__PURE__ */ React111.createElement(
|
|
6375
6411
|
"path",
|
|
6376
6412
|
{
|
|
6377
6413
|
fillRule: "evenodd",
|
|
@@ -6380,7 +6416,7 @@ var init_SwimmingPool = __esm({
|
|
|
6380
6416
|
fill: "currentColor"
|
|
6381
6417
|
}
|
|
6382
6418
|
),
|
|
6383
|
-
/* @__PURE__ */
|
|
6419
|
+
/* @__PURE__ */ React111.createElement(
|
|
6384
6420
|
"path",
|
|
6385
6421
|
{
|
|
6386
6422
|
fillRule: "evenodd",
|
|
@@ -6389,7 +6425,7 @@ var init_SwimmingPool = __esm({
|
|
|
6389
6425
|
fill: "currentColor"
|
|
6390
6426
|
}
|
|
6391
6427
|
),
|
|
6392
|
-
/* @__PURE__ */
|
|
6428
|
+
/* @__PURE__ */ React111.createElement(
|
|
6393
6429
|
"path",
|
|
6394
6430
|
{
|
|
6395
6431
|
fillRule: "evenodd",
|
|
@@ -6398,7 +6434,7 @@ var init_SwimmingPool = __esm({
|
|
|
6398
6434
|
fill: "currentColor"
|
|
6399
6435
|
}
|
|
6400
6436
|
),
|
|
6401
|
-
/* @__PURE__ */
|
|
6437
|
+
/* @__PURE__ */ React111.createElement(
|
|
6402
6438
|
"path",
|
|
6403
6439
|
{
|
|
6404
6440
|
fillRule: "evenodd",
|
|
@@ -6407,7 +6443,7 @@ var init_SwimmingPool = __esm({
|
|
|
6407
6443
|
fill: "currentColor"
|
|
6408
6444
|
}
|
|
6409
6445
|
),
|
|
6410
|
-
/* @__PURE__ */
|
|
6446
|
+
/* @__PURE__ */ React111.createElement(
|
|
6411
6447
|
"path",
|
|
6412
6448
|
{
|
|
6413
6449
|
fillRule: "evenodd",
|
|
@@ -6416,7 +6452,7 @@ var init_SwimmingPool = __esm({
|
|
|
6416
6452
|
fill: "currentColor"
|
|
6417
6453
|
}
|
|
6418
6454
|
),
|
|
6419
|
-
/* @__PURE__ */
|
|
6455
|
+
/* @__PURE__ */ React111.createElement(
|
|
6420
6456
|
"path",
|
|
6421
6457
|
{
|
|
6422
6458
|
fillRule: "evenodd",
|
|
@@ -6436,15 +6472,15 @@ var Tasks_exports = {};
|
|
|
6436
6472
|
__export(Tasks_exports, {
|
|
6437
6473
|
default: () => Tasks_default
|
|
6438
6474
|
});
|
|
6439
|
-
var
|
|
6475
|
+
var React112, SvgTasks, Tasks_default;
|
|
6440
6476
|
var init_Tasks = __esm({
|
|
6441
6477
|
"src/react/Tasks.tsx"() {
|
|
6442
6478
|
"use strict";
|
|
6443
|
-
|
|
6479
|
+
React112 = __toESM(require("react"));
|
|
6444
6480
|
init_types();
|
|
6445
6481
|
SvgTasks = ({ size = 16, ...props }) => {
|
|
6446
6482
|
const sizeValue = resolveSize(size);
|
|
6447
|
-
return /* @__PURE__ */
|
|
6483
|
+
return /* @__PURE__ */ React112.createElement(
|
|
6448
6484
|
"svg",
|
|
6449
6485
|
{
|
|
6450
6486
|
width: sizeValue,
|
|
@@ -6454,7 +6490,7 @@ var init_Tasks = __esm({
|
|
|
6454
6490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6455
6491
|
...props
|
|
6456
6492
|
},
|
|
6457
|
-
/* @__PURE__ */
|
|
6493
|
+
/* @__PURE__ */ React112.createElement(
|
|
6458
6494
|
"path",
|
|
6459
6495
|
{
|
|
6460
6496
|
fillRule: "evenodd",
|
|
@@ -6463,7 +6499,7 @@ var init_Tasks = __esm({
|
|
|
6463
6499
|
fill: "currentColor"
|
|
6464
6500
|
}
|
|
6465
6501
|
),
|
|
6466
|
-
/* @__PURE__ */
|
|
6502
|
+
/* @__PURE__ */ React112.createElement(
|
|
6467
6503
|
"path",
|
|
6468
6504
|
{
|
|
6469
6505
|
fillRule: "evenodd",
|
|
@@ -6472,7 +6508,7 @@ var init_Tasks = __esm({
|
|
|
6472
6508
|
fill: "currentColor"
|
|
6473
6509
|
}
|
|
6474
6510
|
),
|
|
6475
|
-
/* @__PURE__ */
|
|
6511
|
+
/* @__PURE__ */ React112.createElement(
|
|
6476
6512
|
"path",
|
|
6477
6513
|
{
|
|
6478
6514
|
fillRule: "evenodd",
|
|
@@ -6481,7 +6517,7 @@ var init_Tasks = __esm({
|
|
|
6481
6517
|
fill: "currentColor"
|
|
6482
6518
|
}
|
|
6483
6519
|
),
|
|
6484
|
-
/* @__PURE__ */
|
|
6520
|
+
/* @__PURE__ */ React112.createElement(
|
|
6485
6521
|
"path",
|
|
6486
6522
|
{
|
|
6487
6523
|
fillRule: "evenodd",
|
|
@@ -6490,7 +6526,7 @@ var init_Tasks = __esm({
|
|
|
6490
6526
|
fill: "currentColor"
|
|
6491
6527
|
}
|
|
6492
6528
|
),
|
|
6493
|
-
/* @__PURE__ */
|
|
6529
|
+
/* @__PURE__ */ React112.createElement(
|
|
6494
6530
|
"path",
|
|
6495
6531
|
{
|
|
6496
6532
|
fillRule: "evenodd",
|
|
@@ -6499,7 +6535,7 @@ var init_Tasks = __esm({
|
|
|
6499
6535
|
fill: "currentColor"
|
|
6500
6536
|
}
|
|
6501
6537
|
),
|
|
6502
|
-
/* @__PURE__ */
|
|
6538
|
+
/* @__PURE__ */ React112.createElement(
|
|
6503
6539
|
"path",
|
|
6504
6540
|
{
|
|
6505
6541
|
fillRule: "evenodd",
|
|
@@ -6519,15 +6555,15 @@ var Terrace_exports = {};
|
|
|
6519
6555
|
__export(Terrace_exports, {
|
|
6520
6556
|
default: () => Terrace_default
|
|
6521
6557
|
});
|
|
6522
|
-
var
|
|
6558
|
+
var React113, SvgTerrace, Terrace_default;
|
|
6523
6559
|
var init_Terrace = __esm({
|
|
6524
6560
|
"src/react/Terrace.tsx"() {
|
|
6525
6561
|
"use strict";
|
|
6526
|
-
|
|
6562
|
+
React113 = __toESM(require("react"));
|
|
6527
6563
|
init_types();
|
|
6528
6564
|
SvgTerrace = ({ size = 16, ...props }) => {
|
|
6529
6565
|
const sizeValue = resolveSize(size);
|
|
6530
|
-
return /* @__PURE__ */
|
|
6566
|
+
return /* @__PURE__ */ React113.createElement(
|
|
6531
6567
|
"svg",
|
|
6532
6568
|
{
|
|
6533
6569
|
width: sizeValue,
|
|
@@ -6537,7 +6573,7 @@ var init_Terrace = __esm({
|
|
|
6537
6573
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6538
6574
|
...props
|
|
6539
6575
|
},
|
|
6540
|
-
/* @__PURE__ */
|
|
6576
|
+
/* @__PURE__ */ React113.createElement(
|
|
6541
6577
|
"path",
|
|
6542
6578
|
{
|
|
6543
6579
|
d: "M19.2676 10.7392C19.9333 10.2802 20.7544 10.1041 21.5498 10.25C22.2459 10.3777 22.8726 10.7431 23.3262 11.2783L23.5098 11.5176L23.668 11.7744C24.007 12.3881 24.1265 13.1031 23.999 13.7988C23.8539 14.591 23.4002 15.2922 22.7393 15.7519L22.7402 15.7529L17.7539 19.2871C17.6752 19.3567 17.5936 19.4218 17.5088 19.4824L18.7139 21.8926C18.9111 22.2877 18.7505 22.7683 18.3555 22.9658C17.9604 23.1631 17.4798 23.0025 17.2822 22.6074L15.9971 20.0371C15.9152 20.0438 15.8327 20.0498 15.75 20.0498H6.62305L6.02441 22.4443C5.91716 22.8728 5.48227 23.1335 5.05371 23.0264C4.62519 22.9191 4.36454 22.4842 4.47168 22.0556L4.97559 20.0361C4.26734 19.9721 3.60066 19.6631 3.09375 19.1562C2.52176 18.5842 2.2002 17.8089 2.2002 17C2.2002 16.1911 2.52176 15.4157 3.09375 14.8437C3.66574 14.2717 4.44109 13.9502 5.25 13.9502H14.7451L19.2588 10.7461L19.2676 10.7392ZM4.80762 9.69334C5.02854 9.31071 5.51776 9.17945 5.90039 9.40037C6.28273 9.6214 6.41323 10.1106 6.19238 10.4931L5.44238 11.792C5.22142 12.1745 4.73218 12.3058 4.34961 12.0849C3.96715 11.864 3.83674 11.3747 4.05762 10.9922L4.80762 9.69334ZM9.59961 9.40037C9.98224 9.17945 10.4715 9.31071 10.6924 9.69334L11.4424 10.9922C11.6633 11.3747 11.5329 11.864 11.1504 12.0849C10.7678 12.3058 10.2786 12.1745 10.0576 11.792L9.30762 10.4931C9.08677 10.1106 9.21727 9.6214 9.59961 9.40037ZM9.2002 6.19627C9.2002 5.81178 9.04723 5.4428 8.77539 5.17088C8.50346 4.89895 8.13456 4.74608 7.75 4.74608C7.36544 4.74608 6.99654 4.89895 6.72461 5.17088C6.45277 5.4428 6.2998 5.81178 6.2998 6.19627C6.29988 6.58073 6.45275 6.9498 6.72461 7.22166C6.99652 7.4935 7.3655 7.64647 7.75 7.64647C8.1345 7.64647 8.50348 7.4935 8.77539 7.22166C9.04725 6.9498 9.20012 6.58073 9.2002 6.19627ZM3.25 5.39647C3.69183 5.39647 4.0498 5.75444 4.0498 6.19627C4.04965 6.63797 3.69173 6.99608 3.25 6.99608H1.75C1.30827 6.99608 0.950351 6.63797 0.950195 6.19627C0.950195 5.75444 1.30817 5.39647 1.75 5.39647H3.25ZM13.75 5.39647C14.1918 5.39647 14.5498 5.75444 14.5498 6.19627C14.5496 6.63797 14.1917 6.99608 13.75 6.99608H12.25C11.8083 6.99608 11.4504 6.63797 11.4502 6.19627C11.4502 5.75444 11.8082 5.39647 12.25 5.39647H13.75ZM4.34961 0.3076C4.73208 0.0867727 5.22133 0.217327 5.44238 0.599592L6.19238 1.8994C6.41317 2.28197 6.28288 2.77124 5.90039 2.99217C5.51787 3.21302 5.02863 3.08157 4.80762 2.6992L4.05762 1.40037C3.83679 1.0179 3.96734 0.528649 4.34961 0.3076ZM10.0576 0.599592C10.2787 0.217326 10.7679 0.0867727 11.1504 0.3076C11.5327 0.528649 11.6632 1.0179 11.4424 1.40037L10.6924 2.6992C10.4714 3.08157 9.98213 3.21302 9.59961 2.99217C9.21712 2.77124 9.08683 2.28197 9.30762 1.8994L10.0576 0.599592ZM3.7998 17C3.7998 17.3845 3.95268 17.7534 4.22461 18.0254C4.49654 18.2973 4.86544 18.4502 5.25 18.4502H15.75L15.8848 18.4433C16.1975 18.4136 16.4931 18.2814 16.7246 18.0654L16.7646 18.0283L16.8086 17.9971L21.8154 14.4472L21.8232 14.4414C22.1391 14.2229 22.3555 13.8884 22.4248 13.5107C22.494 13.1328 22.4105 12.7421 22.1924 12.4258C21.974 12.1097 21.6386 11.8935 21.2607 11.8242C20.8862 11.7556 20.4994 11.8361 20.1846 12.0498L15.2549 15.5498H5.25C4.86544 15.5498 4.49654 15.7027 4.22461 15.9746C3.95268 16.2465 3.7998 16.6154 3.7998 17ZM10.7998 6.19627C10.7997 7.00508 10.4782 7.7806 9.90625 8.35252C9.33428 8.92442 8.55884 9.24608 7.75 9.24608C6.94116 9.24608 6.16572 8.92442 5.59375 8.35252C5.02183 7.7806 4.70027 7.00508 4.7002 6.19627C4.7002 5.38736 5.02176 4.61103 5.59375 4.03905C6.1657 3.46727 6.94125 3.14647 7.75 3.14647C8.55875 3.14647 9.3343 3.46727 9.90625 4.03905C10.4782 4.61103 10.7998 5.38736 10.7998 6.19627Z",
|
|
@@ -6555,15 +6591,15 @@ var ThermometerSnowflake_exports = {};
|
|
|
6555
6591
|
__export(ThermometerSnowflake_exports, {
|
|
6556
6592
|
default: () => ThermometerSnowflake_default
|
|
6557
6593
|
});
|
|
6558
|
-
var
|
|
6594
|
+
var React114, SvgThermometerSnowflake, ThermometerSnowflake_default;
|
|
6559
6595
|
var init_ThermometerSnowflake = __esm({
|
|
6560
6596
|
"src/react/ThermometerSnowflake.tsx"() {
|
|
6561
6597
|
"use strict";
|
|
6562
|
-
|
|
6598
|
+
React114 = __toESM(require("react"));
|
|
6563
6599
|
init_types();
|
|
6564
6600
|
SvgThermometerSnowflake = ({ size = 16, ...props }) => {
|
|
6565
6601
|
const sizeValue = resolveSize(size);
|
|
6566
|
-
return /* @__PURE__ */
|
|
6602
|
+
return /* @__PURE__ */ React114.createElement(
|
|
6567
6603
|
"svg",
|
|
6568
6604
|
{
|
|
6569
6605
|
width: sizeValue,
|
|
@@ -6573,7 +6609,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6573
6609
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6574
6610
|
...props
|
|
6575
6611
|
},
|
|
6576
|
-
/* @__PURE__ */
|
|
6612
|
+
/* @__PURE__ */ React114.createElement(
|
|
6577
6613
|
"path",
|
|
6578
6614
|
{
|
|
6579
6615
|
fillRule: "evenodd",
|
|
@@ -6582,7 +6618,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6582
6618
|
fill: "currentColor"
|
|
6583
6619
|
}
|
|
6584
6620
|
),
|
|
6585
|
-
/* @__PURE__ */
|
|
6621
|
+
/* @__PURE__ */ React114.createElement(
|
|
6586
6622
|
"path",
|
|
6587
6623
|
{
|
|
6588
6624
|
fillRule: "evenodd",
|
|
@@ -6591,7 +6627,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6591
6627
|
fill: "currentColor"
|
|
6592
6628
|
}
|
|
6593
6629
|
),
|
|
6594
|
-
/* @__PURE__ */
|
|
6630
|
+
/* @__PURE__ */ React114.createElement(
|
|
6595
6631
|
"path",
|
|
6596
6632
|
{
|
|
6597
6633
|
fillRule: "evenodd",
|
|
@@ -6600,7 +6636,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6600
6636
|
fill: "currentColor"
|
|
6601
6637
|
}
|
|
6602
6638
|
),
|
|
6603
|
-
/* @__PURE__ */
|
|
6639
|
+
/* @__PURE__ */ React114.createElement(
|
|
6604
6640
|
"path",
|
|
6605
6641
|
{
|
|
6606
6642
|
fillRule: "evenodd",
|
|
@@ -6609,7 +6645,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6609
6645
|
fill: "currentColor"
|
|
6610
6646
|
}
|
|
6611
6647
|
),
|
|
6612
|
-
/* @__PURE__ */
|
|
6648
|
+
/* @__PURE__ */ React114.createElement(
|
|
6613
6649
|
"path",
|
|
6614
6650
|
{
|
|
6615
6651
|
fillRule: "evenodd",
|
|
@@ -6618,7 +6654,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
6618
6654
|
fill: "currentColor"
|
|
6619
6655
|
}
|
|
6620
6656
|
),
|
|
6621
|
-
/* @__PURE__ */
|
|
6657
|
+
/* @__PURE__ */ React114.createElement(
|
|
6622
6658
|
"path",
|
|
6623
6659
|
{
|
|
6624
6660
|
fillRule: "evenodd",
|
|
@@ -6638,15 +6674,15 @@ var Time_exports = {};
|
|
|
6638
6674
|
__export(Time_exports, {
|
|
6639
6675
|
default: () => Time_default
|
|
6640
6676
|
});
|
|
6641
|
-
var
|
|
6677
|
+
var React115, SvgTime, Time_default;
|
|
6642
6678
|
var init_Time = __esm({
|
|
6643
6679
|
"src/react/Time.tsx"() {
|
|
6644
6680
|
"use strict";
|
|
6645
|
-
|
|
6681
|
+
React115 = __toESM(require("react"));
|
|
6646
6682
|
init_types();
|
|
6647
6683
|
SvgTime = ({ size = 16, ...props }) => {
|
|
6648
6684
|
const sizeValue = resolveSize(size);
|
|
6649
|
-
return /* @__PURE__ */
|
|
6685
|
+
return /* @__PURE__ */ React115.createElement(
|
|
6650
6686
|
"svg",
|
|
6651
6687
|
{
|
|
6652
6688
|
width: sizeValue,
|
|
@@ -6656,7 +6692,7 @@ var init_Time = __esm({
|
|
|
6656
6692
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6657
6693
|
...props
|
|
6658
6694
|
},
|
|
6659
|
-
/* @__PURE__ */
|
|
6695
|
+
/* @__PURE__ */ React115.createElement(
|
|
6660
6696
|
"path",
|
|
6661
6697
|
{
|
|
6662
6698
|
fillRule: "evenodd",
|
|
@@ -6665,7 +6701,7 @@ var init_Time = __esm({
|
|
|
6665
6701
|
fill: "currentColor"
|
|
6666
6702
|
}
|
|
6667
6703
|
),
|
|
6668
|
-
/* @__PURE__ */
|
|
6704
|
+
/* @__PURE__ */ React115.createElement(
|
|
6669
6705
|
"path",
|
|
6670
6706
|
{
|
|
6671
6707
|
fillRule: "evenodd",
|
|
@@ -6685,15 +6721,15 @@ var TouchAndroid_exports = {};
|
|
|
6685
6721
|
__export(TouchAndroid_exports, {
|
|
6686
6722
|
default: () => TouchAndroid_default
|
|
6687
6723
|
});
|
|
6688
|
-
var
|
|
6724
|
+
var React116, SvgTouchAndroid, TouchAndroid_default;
|
|
6689
6725
|
var init_TouchAndroid = __esm({
|
|
6690
6726
|
"src/react/TouchAndroid.tsx"() {
|
|
6691
6727
|
"use strict";
|
|
6692
|
-
|
|
6728
|
+
React116 = __toESM(require("react"));
|
|
6693
6729
|
init_types();
|
|
6694
6730
|
SvgTouchAndroid = ({ size = 16, ...props }) => {
|
|
6695
6731
|
const sizeValue = resolveSize(size);
|
|
6696
|
-
return /* @__PURE__ */
|
|
6732
|
+
return /* @__PURE__ */ React116.createElement(
|
|
6697
6733
|
"svg",
|
|
6698
6734
|
{
|
|
6699
6735
|
width: sizeValue,
|
|
@@ -6703,7 +6739,7 @@ var init_TouchAndroid = __esm({
|
|
|
6703
6739
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6704
6740
|
...props
|
|
6705
6741
|
},
|
|
6706
|
-
/* @__PURE__ */
|
|
6742
|
+
/* @__PURE__ */ React116.createElement(
|
|
6707
6743
|
"path",
|
|
6708
6744
|
{
|
|
6709
6745
|
d: "M18.3069 4.55233C18.2243 4.55233 18.1416 4.53167 18.0693 4.49033C16.0853 3.46733 14.3699 3.03333 12.3136 3.03333C10.2676 3.03333 8.32493 3.519 6.55793 4.49033C6.30993 4.62467 5.99993 4.53167 5.85526 4.28367C5.72093 4.03567 5.81393 3.71533 6.06193 3.581C7.98393 2.53733 10.0919 2 12.3136 2C14.5146 2 16.4366 2.48567 18.5446 3.57067C18.8029 3.705 18.8959 4.015 18.7616 4.263C18.6686 4.449 18.4929 4.55233 18.3069 4.55233ZM3.51993 9.97733C3.4166 9.97733 3.31326 9.94633 3.22026 9.88433C2.9826 9.719 2.93093 9.39867 3.09626 9.161C4.11926 7.71433 5.42126 6.57767 6.97126 5.782C10.2159 4.108 14.3699 4.09767 17.6249 5.77167C19.1749 6.56733 20.4769 7.69367 21.4999 9.13C21.6653 9.35733 21.6136 9.688 21.3759 9.85333C21.1383 10.0187 20.8179 9.967 20.6526 9.72933C19.7226 8.42733 18.5446 7.40433 17.1496 6.69133C14.1839 5.17233 10.3916 5.17233 7.43626 6.70167C6.03093 7.425 4.85293 8.45833 3.92293 9.76033C3.84026 9.905 3.68526 9.97733 3.51993 9.97733ZM9.97826 22.4497C9.84393 22.4497 9.7096 22.398 9.6166 22.2947C8.7176 21.3957 8.23193 20.817 7.5396 19.5667C6.8266 18.2957 6.4546 16.7457 6.4546 15.082C6.4546 12.013 9.07926 9.51233 12.3033 9.51233C15.5273 9.51233 18.1519 12.013 18.1519 15.082C18.1519 15.3713 17.9246 15.5987 17.6353 15.5987C17.3459 15.5987 17.1186 15.3713 17.1186 15.082C17.1186 12.5813 14.9589 10.5457 12.3033 10.5457C9.6476 10.5457 7.48793 12.5813 7.48793 15.082C7.48793 16.57 7.8186 17.9443 8.44893 19.0603C9.11027 20.2487 9.56493 20.755 10.3606 21.561C10.5569 21.7677 10.5569 22.088 10.3606 22.2947C10.2469 22.398 10.1126 22.4497 9.97826 22.4497ZM17.3873 20.538C16.1576 20.538 15.0726 20.228 14.1839 19.6183C12.6443 18.5747 11.7246 16.88 11.7246 15.082C11.7246 14.7927 11.9519 14.5653 12.2413 14.5653C12.5306 14.5653 12.7579 14.7927 12.7579 15.082C12.7579 16.539 13.5019 17.9133 14.7626 18.7607C15.4963 19.2567 16.3539 19.4943 17.3873 19.4943C17.6353 19.4943 18.0486 19.4633 18.4619 19.391C18.7409 19.3393 19.0096 19.5253 19.0613 19.8147C19.1129 20.0937 18.9269 20.3623 18.6376 20.414C18.0486 20.5277 17.5319 20.538 17.3873 20.538ZM15.3103 22.6667C15.2689 22.6667 15.2173 22.6563 15.1759 22.646C13.5329 22.1913 12.4583 21.5817 11.3319 20.476C9.88526 19.0397 9.0896 17.128 9.0896 15.082C9.0896 13.408 10.5156 12.044 12.2723 12.044C14.0289 12.044 15.4549 13.408 15.4549 15.082C15.4549 16.1877 16.4159 17.0867 17.6043 17.0867C18.7926 17.0867 19.7536 16.1877 19.7536 15.082C19.7536 11.1863 16.3953 8.02433 12.2619 8.02433C9.32726 8.02433 6.6406 9.657 5.4316 12.1887C5.0286 13.0257 4.82193 14.0073 4.82193 15.082C4.82193 15.888 4.89426 17.159 5.51426 18.8123C5.6176 19.081 5.48326 19.3807 5.2146 19.4737C4.94593 19.577 4.64626 19.4323 4.55326 19.174C4.04693 17.8203 3.79893 16.477 3.79893 15.082C3.79893 13.842 4.0366 12.7157 4.5016 11.734C5.87593 8.851 8.92426 6.98067 12.2619 6.98067C16.9636 6.98067 20.7869 10.6077 20.7869 15.0717C20.7869 16.7457 19.3609 18.1097 17.6043 18.1097C15.8476 18.1097 14.4216 16.7457 14.4216 15.0717C14.4216 13.966 13.4606 13.067 12.2723 13.067C11.0839 13.067 10.1229 13.966 10.1229 15.0717C10.1229 16.8387 10.8049 18.492 12.0553 19.732C13.0369 20.7033 13.9773 21.2407 15.4343 21.6437C15.7133 21.716 15.8683 22.0053 15.7959 22.274C15.7443 22.5117 15.5273 22.6667 15.3103 22.6667Z",
|
|
@@ -6721,15 +6757,15 @@ var TouchIos_exports = {};
|
|
|
6721
6757
|
__export(TouchIos_exports, {
|
|
6722
6758
|
default: () => TouchIos_default
|
|
6723
6759
|
});
|
|
6724
|
-
var
|
|
6760
|
+
var React117, SvgTouchIos, TouchIos_default;
|
|
6725
6761
|
var init_TouchIos = __esm({
|
|
6726
6762
|
"src/react/TouchIos.tsx"() {
|
|
6727
6763
|
"use strict";
|
|
6728
|
-
|
|
6764
|
+
React117 = __toESM(require("react"));
|
|
6729
6765
|
init_types();
|
|
6730
6766
|
SvgTouchIos = ({ size = 16, ...props }) => {
|
|
6731
6767
|
const sizeValue = resolveSize(size);
|
|
6732
|
-
return /* @__PURE__ */
|
|
6768
|
+
return /* @__PURE__ */ React117.createElement(
|
|
6733
6769
|
"svg",
|
|
6734
6770
|
{
|
|
6735
6771
|
width: sizeValue,
|
|
@@ -6739,7 +6775,7 @@ var init_TouchIos = __esm({
|
|
|
6739
6775
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6740
6776
|
...props
|
|
6741
6777
|
},
|
|
6742
|
-
/* @__PURE__ */
|
|
6778
|
+
/* @__PURE__ */ React117.createElement(
|
|
6743
6779
|
"path",
|
|
6744
6780
|
{
|
|
6745
6781
|
d: "M15.126 16.078c0.245 0.036 0.327 0.227 0.327 0.445 -0.172 1.399 -0.499 2.734 -0.998 4.024 -0.408 1.045 -0.907 2.044 -1.534 2.979 -0.063 0.1 -0.127 0.209 -0.209 0.3 -0.163 0.191 -0.372 0.227 -0.563 0.1 -0.209 -0.136 -0.172 -0.336 -0.063 -0.527 0.19 -0.327 0.408 -0.636 0.599 -0.963 1.025 -1.78 1.688 -3.679 1.951 -5.722 0.009 -0.109 0.036 -0.209 0.063 -0.309 0.054 -0.218 0.191 -0.354 0.426 -0.327M11.751 10.21c0.989 -0.182 1.896 0.527 2.105 1.653 0.064 0.345 0.127 0.681 0.154 1.026 0.045 0.581 0.136 1.172 0.1 1.762 -0.045 3.306 -1.034 6.294 -3.012 8.956 -0.163 0.218 -0.345 0.49 -0.662 0.263 -0.299 -0.218 -0.154 -0.472 0.018 -0.708 1.497 -2.016 2.432 -4.269 2.758 -6.767 0.2 -1.535 0.136 -3.043 -0.163 -4.55 -0.127 -0.645 -0.69 -0.981 -1.325 -0.845 -0.535 0.118 -0.871 0.654 -0.753 1.262 0.281 1.49 0.318 2.97 0.046 4.46 -0.054 0.3 -0.054 0.736 -0.499 0.672 -0.454 -0.063 -0.318 -0.463 -0.263 -0.772 0.236 -1.371 0.245 -2.734 -0.027 -4.096 -0.236 -1.19 0.381 -2.107 1.524 -2.316m2.059 -2.171c0.118 -0.2 0.299 -0.245 0.508 -0.145 0.508 0.254 0.925 0.609 1.297 1.044 0.735 0.863 1.052 1.889 1.198 2.988 0.109 0.89 0.227 1.771 0.2 2.407 -0.009 3.388 -0.771 6.303 -2.295 9.028 -0.027 0.054 -0.054 0.109 -0.091 0.154 -0.145 0.236 -0.336 0.382 -0.599 0.218 -0.245 -0.145 -0.2 -0.381 -0.073 -0.599 0.309 -0.536 0.581 -1.09 0.835 -1.662 1.007 -2.261 1.47 -4.632 1.452 -7.103 -0.009 -1.099 -0.127 -2.207 -0.381 -3.279 -0.209 -0.917 -0.699 -1.662 -1.452 -2.234 -0.154 -0.118 -0.326 -0.227 -0.472 -0.345 -0.154 -0.127 -0.245 -0.281 -0.127 -0.472m-1.86 3.624c0.263 -0.045 0.39 0.118 0.436 0.354 0.181 0.881 0.281 1.771 0.272 2.661 -0.064 3.224 -1.089 6.094 -3.158 8.592 -0.045 0.055 -0.091 0.118 -0.145 0.173 -0.172 0.191 -0.381 0.282 -0.59 0.1 -0.2 -0.164 -0.154 -0.382 -0.009 -0.572 0.245 -0.327 0.508 -0.636 0.744 -0.972C11.034 19.865 11.796 17.467 11.896 14.843c0.027 -0.817 -0.082 -1.626 -0.209 -2.434 -0.018 -0.091 -0.036 -0.182 -0.045 -0.272 -0.018 -0.236 0.045 -0.436 0.309 -0.472M17.032 19.52c0.064 -0.245 0.191 -0.418 0.481 -0.364 0.209 0.045 0.291 0.2 0.291 0.409 -0.027 0.109 -0.045 0.227 -0.082 0.345 -0.299 1.017 -0.653 2.007 -1.125 2.961 -0.118 0.245 -0.281 0.472 -0.59 0.327 -0.29 -0.136 -0.218 -0.399 -0.109 -0.627 0.454 -0.99 0.844 -2.007 1.134 -3.052m-7.422 -0.7c0.091 -0.218 0.227 -0.409 0.508 -0.327 0.209 0.064 0.272 0.227 0.245 0.509 -0.091 0.209 -0.209 0.481 -0.336 0.754 -0.544 1.153 -1.243 2.207 -2.132 3.124 -0.191 0.191 -0.399 0.372 -0.653 0.127 -0.236 -0.227 -0.091 -0.445 0.082 -0.627 0.98 -1.044 1.733 -2.234 2.287 -3.56M9.255 12.908c0.29 -0.027 0.381 0.191 0.417 0.436 0.027 0.182 0.064 0.354 0.073 0.536 0 0.254 -0.009 0.509 -0.009 0.772 -0.036 2.861 -1.062 5.322 -3.031 7.402l-0.19 0.191c-0.19 0.181 -0.417 0.29 -0.635 0.073 -0.236 -0.227 -0.1 -0.445 0.091 -0.627A10.02 10.02 0 0 0 7.64 19.557c1.016 -1.762 1.479 -3.651 1.297 -5.695 -0.009 -0.154 -0.018 -0.3 -0.018 -0.454 -0.009 -0.245 0.054 -0.482 0.336 -0.5M17.685 7.44c0.227 -0.163 0.399 -0.036 0.544 0.145 0.671 0.89 1.071 1.898 1.288 2.97 0.263 1.353 0.426 2.698 0.399 3.815 0.009 2.607 -0.39 4.886 -1.17 7.103 -0.054 0.145 -0.109 0.282 -0.163 0.427 -0.091 0.236 -0.245 0.409 -0.517 0.309 -0.263 -0.1 -0.29 -0.318 -0.2 -0.563 0.118 -0.345 0.236 -0.681 0.345 -1.036 0.671 -2.089 1.007 -4.242 0.926 -6.44 -0.073 -1.853 -0.173 -3.724 -1.08 -5.422 -0.136 -0.254 -0.299 -0.491 -0.445 -0.745 -0.118 -0.209 -0.136 -0.418 0.073 -0.563m-5.862 -0.181c0.181 0 0.245 -0.009 0.299 0 0.263 0.027 0.563 0.073 0.572 0.4 0.009 0.363 -0.299 0.409 -0.59 0.409 -1.524 -0.027 -2.686 0.609 -3.493 1.889 -0.535 0.854 -0.708 1.789 -0.517 2.788 0.608 3.279 -0.281 6.104 -2.622 8.465 -0.082 0.082 -0.173 0.173 -0.272 0.245 -0.2 0.164 -0.417 0.218 -0.599 0 -0.172 -0.2 -0.082 -0.399 0.082 -0.563 0.49 -0.472 0.962 -0.963 1.343 -1.526 1.261 -1.88 1.787 -3.942 1.334 -6.167 -0.608 -3.052 1.443 -5.813 4.464 -5.94M5.545 17.222c0.1 -0.227 0.227 -0.4 0.508 -0.345 0.181 0.054 0.272 0.191 0.281 0.427a5.2 5.2 0 0 1 -0.118 0.336c-0.463 1.09 -1.161 1.998 -2.042 2.779 -0.209 0.191 -0.454 0.3 -0.671 0.036 -0.209 -0.245 -0.036 -0.463 0.154 -0.618 0.844 -0.717 1.461 -1.598 1.887 -2.616m15.334 -4.314c0.372 -0.045 0.445 0.254 0.454 0.545 0.027 0.427 0.018 0.854 0.018 1.281 0.027 1.753 -0.209 3.47 -0.617 5.168 -0.018 0.055 -0.027 0.118 -0.045 0.173 -0.081 0.263 -0.145 0.59 -0.517 0.49 -0.354 -0.091 -0.318 -0.391 -0.245 -0.672 0.191 -0.736 0.345 -1.471 0.436 -2.225 0.181 -1.381 0.317 -2.761 0.181 -4.16 -0.027 -0.282 0.009 -0.554 0.336 -0.6M7.187 6.078c0.172 -0.109 0.345 -0.109 0.49 0.045 0.154 0.154 0.127 0.336 0 0.49 -0.118 0.136 -0.254 0.264 -0.381 0.391 -1.806 1.78 -2.486 3.914 -2.033 6.412 0.381 2.098 -0.19 3.924 -1.597 5.495 -0.181 0.2 -0.399 0.372 -0.617 0.536 -0.163 0.118 -0.345 0.127 -0.49 -0.036 -0.154 -0.182 -0.118 -0.363 0.036 -0.527 0.136 -0.145 0.281 -0.272 0.417 -0.418 1.043 -1.072 1.561 -2.352 1.606 -4.005a105.2 105.2 0 0 1 -0.172 -1.226c-0.381 -2.752 0.463 -5.068 2.495 -6.957 0.073 -0.073 0.163 -0.136 0.245 -0.2M3.258 12.009c0.209 -0.009 0.354 0.118 0.381 0.318 0.079 0.799 0.309 1.452 0.309 2.207 -0.054 1.489 -0.572 2.67 -1.606 3.624 -0.172 0.154 -0.363 0.245 -0.563 0.063 -0.209 -0.191 -0.181 -0.427 0.009 -0.599 1.37 -1.244 1.549 -3.088 1.202 -4.311 -0.084 -0.298 -0.141 -0.886 -0.081 -1.032 0.056 -0.136 0.14 -0.27 0.349 -0.27m8.711 -6.204c2.922 -0.018 5.544 2.135 6.115 5.032 0.245 1.244 0.399 2.507 0.372 3.86 0.036 0.845 -0.081 1.762 -0.19 2.68a1.24 1.24 0 0 1 -0.054 0.263c-0.054 0.236 -0.173 0.445 -0.454 0.4 -0.281 -0.054 -0.345 -0.281 -0.299 -0.527 0.091 -0.6 0.136 -1.199 0.191 -1.798 0.154 -1.735 0 -3.451 -0.427 -5.132C16.533 7.885 13.802 6.178 11.089 6.668c-2.804 0.509 -4.754 3.006 -4.5 5.804 0.073 0.799 0.299 1.581 0.245 2.389 -0.009 0.163 -0.009 0.336 -0.045 0.5 -0.045 0.218 -0.154 0.418 -0.417 0.39 -0.281 -0.027 -0.381 -0.245 -0.354 -0.49 0.036 -0.391 0.064 -0.781 0.009 -1.172 -0.136 -1.044 -0.336 -2.089 -0.136 -3.151 0.553 -2.934 3.112 -5.114 6.079 -5.132M14.754 2.236c0.091 -0.272 0.317 -0.3 0.562 -0.227 0.626 0.191 1.225 0.445 1.788 0.772 3.166 1.825 4.927 4.596 5.435 8.192 0.172 1.217 0.309 2.434 0.272 3.733 0.045 0.799 -0.036 1.653 -0.127 2.507 -0.027 0.282 -0.036 0.69 -0.472 0.627 -0.417 -0.064 -0.336 -0.436 -0.299 -0.736 0.299 -2.507 0.191 -4.996 -0.426 -7.43 -0.844 -3.37 -2.967 -5.64 -6.206 -6.885 -0.073 -0.027 -0.145 -0.045 -0.218 -0.073 -0.218 -0.091 -0.39 -0.227 -0.308 -0.481m-4.192 -0.672c0.88 -0.136 1.778 -0.173 2.667 -0.027 0.254 0.045 0.508 0.109 0.49 0.427 -0.027 0.354 -0.299 0.345 -0.572 0.336 -0.336 -0.027 -0.671 -0.018 -1.007 -0.018 -4.945 -0.173 -9.409 3.588 -9.908 8.965 -0.091 0.99 0.045 1.962 0.2 2.934 0.154 0.936 -0.127 1.762 -0.708 2.498 -0.163 0.209 -0.372 0.418 -0.644 0.191 -0.281 -0.227 -0.118 -0.463 0.055 -0.672 0.553 -0.672 0.626 -1.444 0.481 -2.271 -1.007 -6.031 2.885 -11.426 8.947 -12.362M1.439 6.432c0.098 -0.08 0.219 -0.105 0.349 -0.036 0.191 0.091 0.263 0.254 0.191 0.454 -0.091 0.254 -0.209 0.499 -0.318 0.754 -0.916 2.162 -1.143 4.396 -0.662 6.703 0.064 0.3 0.29 0.718 -0.2 0.836 -0.49 0.118 -0.49 -0.354 -0.554 -0.654C0.095 13.731 -0.017 12.967 0.003 12.281a12.114 12.114 0 0 1 0.022 -1.029c0.085 -1.569 0.483 -2.998 1.128 -4.375 0.046 -0.108 0.099 -0.209 0.164 -0.304l0.008 -0.015c0.027 -0.053 0.067 -0.096 0.114 -0.126m9.613 2.452c1.914 -0.563 3.756 0.563 4.192 2.543 0.19 0.863 0.263 1.753 0.309 2.643v0.409c-0.009 0.245 -0.091 0.472 -0.381 0.472s-0.363 -0.218 -0.372 -0.472c-0.045 -0.917 -0.118 -1.835 -0.281 -2.743 -0.336 -1.835 -2.16 -2.77 -3.738 -1.908 -0.526 0.291 -0.925 0.727 -1.134 1.308 -0.027 0.073 -0.055 0.145 -0.073 0.218 -0.082 0.254 -0.181 0.527 -0.517 0.427 -0.363 -0.109 -0.29 -0.418 -0.209 -0.681 0.363 -1.108 1.08 -1.889 2.205 -2.216m7.34 -6.595a0.333 0.333 0 0 1 0.44 -0.099c0.119 0.051 0.236 0.146 0.341 0.227 2.106 1.594 3.498 3.565 4.231 5.882a11.88 11.88 0 0 1 0.57 2.96q0.015 0.178 0.025 0.358v0.545c0 0.236 -0.063 0.436 -0.345 0.445 -0.281 0.009 -0.39 -0.191 -0.408 -0.445 -0.018 -0.454 -0.027 -0.908 -0.082 -1.353 -0.381 -3.215 -1.878 -5.804 -4.427 -7.784 -0.208 -0.166 -0.537 -0.325 -0.396 -0.623 0.009 -0.04 0.026 -0.078 0.051 -0.114m-7.268 0.655c4.609 -0.454 9.037 2.743 9.863 7.593 0.045 0.236 0.082 0.463 0.109 0.608 0.009 0.327 0.027 0.6 -0.309 0.636 -0.317 0.036 -0.399 -0.218 -0.445 -0.472 -0.209 -1.426 -0.599 -2.788 -1.452 -3.969 -2.114 -2.934 -4.981 -4.087 -8.511 -3.497 -3.212 0.536 -5.825 3.161 -6.533 6.376 -0.063 0.291 -0.054 0.736 -0.517 0.636 -0.49 -0.1 -0.299 -0.518 -0.227 -0.827 0.889 -3.878 4.146 -6.703 8.021 -7.085m0.789 1.399c1.751 0.064 3.257 0.518 4.591 1.489 0.045 0.036 0.1 0.073 0.145 0.109 0.2 0.182 0.481 0.363 0.236 0.672 -0.236 0.309 -0.481 0.1 -0.708 -0.064 -2.105 -1.544 -4.382 -1.798 -6.814 -0.89 -0.054 0.018 -0.109 0.045 -0.172 0.063 -0.218 0.082 -0.436 0.082 -0.545 -0.154 -0.127 -0.263 0.027 -0.436 0.254 -0.545 0.681 -0.318 1.388 -0.5 2.123 -0.6 0.336 -0.036 0.663 -0.054 0.889 -0.082M12.184 0c1.557 0 3.196 0.374 4.766 1.073 0.045 0.018 0.082 0.036 0.127 0.055 0.263 0.109 0.481 0.263 0.354 0.581 -0.136 0.327 -0.408 0.236 -0.653 0.118 -0.792 -0.371 -2.328 -0.83 -3.284 -1.002a11.4 11.4 0 0 0 -1.494 -0.097c-0.935 0 -1.843 0.113 -2.712 0.326 -2.195 0.575 -4.338 1.88 -6.121 4.026 -0.182 0.226 -0.348 0.61 -0.696 0.395a0.334 0.334 0 0 1 -0.2 -0.195c-0.13 -0.244 0.141 -0.481 0.297 -0.682C4.628 2.027 7.305 0.528 10.571 0.092 11.043 0.029 11.694 0 12.184 0",
|
|
@@ -6757,15 +6793,15 @@ var Trash2_exports = {};
|
|
|
6757
6793
|
__export(Trash2_exports, {
|
|
6758
6794
|
default: () => Trash2_default
|
|
6759
6795
|
});
|
|
6760
|
-
var
|
|
6796
|
+
var React118, SvgTrash2, Trash2_default;
|
|
6761
6797
|
var init_Trash2 = __esm({
|
|
6762
6798
|
"src/react/Trash2.tsx"() {
|
|
6763
6799
|
"use strict";
|
|
6764
|
-
|
|
6800
|
+
React118 = __toESM(require("react"));
|
|
6765
6801
|
init_types();
|
|
6766
6802
|
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
6767
6803
|
const sizeValue = resolveSize(size);
|
|
6768
|
-
return /* @__PURE__ */
|
|
6804
|
+
return /* @__PURE__ */ React118.createElement(
|
|
6769
6805
|
"svg",
|
|
6770
6806
|
{
|
|
6771
6807
|
width: sizeValue,
|
|
@@ -6775,7 +6811,7 @@ var init_Trash2 = __esm({
|
|
|
6775
6811
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6776
6812
|
...props
|
|
6777
6813
|
},
|
|
6778
|
-
/* @__PURE__ */
|
|
6814
|
+
/* @__PURE__ */ React118.createElement(
|
|
6779
6815
|
"path",
|
|
6780
6816
|
{
|
|
6781
6817
|
fillRule: "evenodd",
|
|
@@ -6784,7 +6820,7 @@ var init_Trash2 = __esm({
|
|
|
6784
6820
|
fill: "currentColor"
|
|
6785
6821
|
}
|
|
6786
6822
|
),
|
|
6787
|
-
/* @__PURE__ */
|
|
6823
|
+
/* @__PURE__ */ React118.createElement(
|
|
6788
6824
|
"path",
|
|
6789
6825
|
{
|
|
6790
6826
|
fillRule: "evenodd",
|
|
@@ -6793,7 +6829,7 @@ var init_Trash2 = __esm({
|
|
|
6793
6829
|
fill: "currentColor"
|
|
6794
6830
|
}
|
|
6795
6831
|
),
|
|
6796
|
-
/* @__PURE__ */
|
|
6832
|
+
/* @__PURE__ */ React118.createElement(
|
|
6797
6833
|
"path",
|
|
6798
6834
|
{
|
|
6799
6835
|
fillRule: "evenodd",
|
|
@@ -6802,7 +6838,7 @@ var init_Trash2 = __esm({
|
|
|
6802
6838
|
fill: "currentColor"
|
|
6803
6839
|
}
|
|
6804
6840
|
),
|
|
6805
|
-
/* @__PURE__ */
|
|
6841
|
+
/* @__PURE__ */ React118.createElement(
|
|
6806
6842
|
"path",
|
|
6807
6843
|
{
|
|
6808
6844
|
fillRule: "evenodd",
|
|
@@ -6811,7 +6847,7 @@ var init_Trash2 = __esm({
|
|
|
6811
6847
|
fill: "currentColor"
|
|
6812
6848
|
}
|
|
6813
6849
|
),
|
|
6814
|
-
/* @__PURE__ */
|
|
6850
|
+
/* @__PURE__ */ React118.createElement(
|
|
6815
6851
|
"path",
|
|
6816
6852
|
{
|
|
6817
6853
|
fillRule: "evenodd",
|
|
@@ -6831,15 +6867,15 @@ var User_exports = {};
|
|
|
6831
6867
|
__export(User_exports, {
|
|
6832
6868
|
default: () => User_default
|
|
6833
6869
|
});
|
|
6834
|
-
var
|
|
6870
|
+
var React119, SvgUser, User_default;
|
|
6835
6871
|
var init_User = __esm({
|
|
6836
6872
|
"src/react/User.tsx"() {
|
|
6837
6873
|
"use strict";
|
|
6838
|
-
|
|
6874
|
+
React119 = __toESM(require("react"));
|
|
6839
6875
|
init_types();
|
|
6840
6876
|
SvgUser = ({ size = 16, ...props }) => {
|
|
6841
6877
|
const sizeValue = resolveSize(size);
|
|
6842
|
-
return /* @__PURE__ */
|
|
6878
|
+
return /* @__PURE__ */ React119.createElement(
|
|
6843
6879
|
"svg",
|
|
6844
6880
|
{
|
|
6845
6881
|
width: sizeValue,
|
|
@@ -6849,7 +6885,7 @@ var init_User = __esm({
|
|
|
6849
6885
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6850
6886
|
...props
|
|
6851
6887
|
},
|
|
6852
|
-
/* @__PURE__ */
|
|
6888
|
+
/* @__PURE__ */ React119.createElement(
|
|
6853
6889
|
"path",
|
|
6854
6890
|
{
|
|
6855
6891
|
fillRule: "evenodd",
|
|
@@ -6858,7 +6894,7 @@ var init_User = __esm({
|
|
|
6858
6894
|
fill: "currentColor"
|
|
6859
6895
|
}
|
|
6860
6896
|
),
|
|
6861
|
-
/* @__PURE__ */
|
|
6897
|
+
/* @__PURE__ */ React119.createElement(
|
|
6862
6898
|
"path",
|
|
6863
6899
|
{
|
|
6864
6900
|
fillRule: "evenodd",
|
|
@@ -6878,15 +6914,15 @@ var UserPlus_exports = {};
|
|
|
6878
6914
|
__export(UserPlus_exports, {
|
|
6879
6915
|
default: () => UserPlus_default
|
|
6880
6916
|
});
|
|
6881
|
-
var
|
|
6917
|
+
var React120, SvgUserPlus, UserPlus_default;
|
|
6882
6918
|
var init_UserPlus = __esm({
|
|
6883
6919
|
"src/react/UserPlus.tsx"() {
|
|
6884
6920
|
"use strict";
|
|
6885
|
-
|
|
6921
|
+
React120 = __toESM(require("react"));
|
|
6886
6922
|
init_types();
|
|
6887
6923
|
SvgUserPlus = ({ size = 16, ...props }) => {
|
|
6888
6924
|
const sizeValue = resolveSize(size);
|
|
6889
|
-
return /* @__PURE__ */
|
|
6925
|
+
return /* @__PURE__ */ React120.createElement(
|
|
6890
6926
|
"svg",
|
|
6891
6927
|
{
|
|
6892
6928
|
width: sizeValue,
|
|
@@ -6896,7 +6932,7 @@ var init_UserPlus = __esm({
|
|
|
6896
6932
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6897
6933
|
...props
|
|
6898
6934
|
},
|
|
6899
|
-
/* @__PURE__ */
|
|
6935
|
+
/* @__PURE__ */ React120.createElement(
|
|
6900
6936
|
"path",
|
|
6901
6937
|
{
|
|
6902
6938
|
fillRule: "evenodd",
|
|
@@ -6905,7 +6941,7 @@ var init_UserPlus = __esm({
|
|
|
6905
6941
|
fill: "currentColor"
|
|
6906
6942
|
}
|
|
6907
6943
|
),
|
|
6908
|
-
/* @__PURE__ */
|
|
6944
|
+
/* @__PURE__ */ React120.createElement(
|
|
6909
6945
|
"path",
|
|
6910
6946
|
{
|
|
6911
6947
|
fillRule: "evenodd",
|
|
@@ -6914,7 +6950,7 @@ var init_UserPlus = __esm({
|
|
|
6914
6950
|
fill: "currentColor"
|
|
6915
6951
|
}
|
|
6916
6952
|
),
|
|
6917
|
-
/* @__PURE__ */
|
|
6953
|
+
/* @__PURE__ */ React120.createElement(
|
|
6918
6954
|
"path",
|
|
6919
6955
|
{
|
|
6920
6956
|
fillRule: "evenodd",
|
|
@@ -6923,7 +6959,7 @@ var init_UserPlus = __esm({
|
|
|
6923
6959
|
fill: "currentColor"
|
|
6924
6960
|
}
|
|
6925
6961
|
),
|
|
6926
|
-
/* @__PURE__ */
|
|
6962
|
+
/* @__PURE__ */ React120.createElement(
|
|
6927
6963
|
"path",
|
|
6928
6964
|
{
|
|
6929
6965
|
fillRule: "evenodd",
|
|
@@ -6943,15 +6979,15 @@ var Warehouse_exports = {};
|
|
|
6943
6979
|
__export(Warehouse_exports, {
|
|
6944
6980
|
default: () => Warehouse_default
|
|
6945
6981
|
});
|
|
6946
|
-
var
|
|
6982
|
+
var React121, SvgWarehouse, Warehouse_default;
|
|
6947
6983
|
var init_Warehouse = __esm({
|
|
6948
6984
|
"src/react/Warehouse.tsx"() {
|
|
6949
6985
|
"use strict";
|
|
6950
|
-
|
|
6986
|
+
React121 = __toESM(require("react"));
|
|
6951
6987
|
init_types();
|
|
6952
6988
|
SvgWarehouse = ({ size = 16, ...props }) => {
|
|
6953
6989
|
const sizeValue = resolveSize(size);
|
|
6954
|
-
return /* @__PURE__ */
|
|
6990
|
+
return /* @__PURE__ */ React121.createElement(
|
|
6955
6991
|
"svg",
|
|
6956
6992
|
{
|
|
6957
6993
|
width: sizeValue,
|
|
@@ -6961,7 +6997,7 @@ var init_Warehouse = __esm({
|
|
|
6961
6997
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6962
6998
|
...props
|
|
6963
6999
|
},
|
|
6964
|
-
/* @__PURE__ */
|
|
7000
|
+
/* @__PURE__ */ React121.createElement(
|
|
6965
7001
|
"path",
|
|
6966
7002
|
{
|
|
6967
7003
|
fillRule: "evenodd",
|
|
@@ -6970,7 +7006,7 @@ var init_Warehouse = __esm({
|
|
|
6970
7006
|
fill: "currentColor"
|
|
6971
7007
|
}
|
|
6972
7008
|
),
|
|
6973
|
-
/* @__PURE__ */
|
|
7009
|
+
/* @__PURE__ */ React121.createElement(
|
|
6974
7010
|
"path",
|
|
6975
7011
|
{
|
|
6976
7012
|
fillRule: "evenodd",
|
|
@@ -6979,7 +7015,7 @@ var init_Warehouse = __esm({
|
|
|
6979
7015
|
fill: "currentColor"
|
|
6980
7016
|
}
|
|
6981
7017
|
),
|
|
6982
|
-
/* @__PURE__ */
|
|
7018
|
+
/* @__PURE__ */ React121.createElement(
|
|
6983
7019
|
"path",
|
|
6984
7020
|
{
|
|
6985
7021
|
fillRule: "evenodd",
|
|
@@ -6988,7 +7024,7 @@ var init_Warehouse = __esm({
|
|
|
6988
7024
|
fill: "currentColor"
|
|
6989
7025
|
}
|
|
6990
7026
|
),
|
|
6991
|
-
/* @__PURE__ */
|
|
7027
|
+
/* @__PURE__ */ React121.createElement(
|
|
6992
7028
|
"path",
|
|
6993
7029
|
{
|
|
6994
7030
|
fillRule: "evenodd",
|
|
@@ -7008,15 +7044,15 @@ var Whatsapp_exports = {};
|
|
|
7008
7044
|
__export(Whatsapp_exports, {
|
|
7009
7045
|
default: () => Whatsapp_default
|
|
7010
7046
|
});
|
|
7011
|
-
var
|
|
7047
|
+
var React122, SvgWhatsapp, Whatsapp_default;
|
|
7012
7048
|
var init_Whatsapp = __esm({
|
|
7013
7049
|
"src/react/Whatsapp.tsx"() {
|
|
7014
7050
|
"use strict";
|
|
7015
|
-
|
|
7051
|
+
React122 = __toESM(require("react"));
|
|
7016
7052
|
init_types();
|
|
7017
7053
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
7018
7054
|
const sizeValue = resolveSize(size);
|
|
7019
|
-
return /* @__PURE__ */
|
|
7055
|
+
return /* @__PURE__ */ React122.createElement(
|
|
7020
7056
|
"svg",
|
|
7021
7057
|
{
|
|
7022
7058
|
width: sizeValue,
|
|
@@ -7026,7 +7062,7 @@ var init_Whatsapp = __esm({
|
|
|
7026
7062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7027
7063
|
...props
|
|
7028
7064
|
},
|
|
7029
|
-
/* @__PURE__ */
|
|
7065
|
+
/* @__PURE__ */ React122.createElement(
|
|
7030
7066
|
"path",
|
|
7031
7067
|
{
|
|
7032
7068
|
fillRule: "evenodd",
|
|
@@ -7128,6 +7164,7 @@ __export(react_exports, {
|
|
|
7128
7164
|
MagicWand: () => MagicWand_default,
|
|
7129
7165
|
Mail: () => Mail_default,
|
|
7130
7166
|
MapPin: () => MapPin_default,
|
|
7167
|
+
Minus: () => Minus_default,
|
|
7131
7168
|
MoreHorizontal: () => MoreHorizontal_default,
|
|
7132
7169
|
Mortgage: () => Mortgage_default,
|
|
7133
7170
|
Note: () => Note_default,
|
|
@@ -7252,6 +7289,7 @@ init_Logout();
|
|
|
7252
7289
|
init_MagicWand();
|
|
7253
7290
|
init_Mail();
|
|
7254
7291
|
init_MapPin();
|
|
7292
|
+
init_Minus();
|
|
7255
7293
|
init_MoreHorizontal();
|
|
7256
7294
|
init_Mortgage();
|
|
7257
7295
|
init_Note();
|
|
@@ -7293,7 +7331,7 @@ init_Warehouse();
|
|
|
7293
7331
|
init_Whatsapp();
|
|
7294
7332
|
|
|
7295
7333
|
// src/react/Icon.tsx
|
|
7296
|
-
var
|
|
7334
|
+
var React123 = __toESM(require("react"));
|
|
7297
7335
|
function loadIcon(name) {
|
|
7298
7336
|
switch (name) {
|
|
7299
7337
|
case "accessibility":
|
|
@@ -7460,6 +7498,8 @@ function loadIcon(name) {
|
|
|
7460
7498
|
return Promise.resolve().then(() => (init_Mail(), Mail_exports)).then((m) => m.default);
|
|
7461
7499
|
case "map-pin":
|
|
7462
7500
|
return Promise.resolve().then(() => (init_MapPin(), MapPin_exports)).then((m) => m.default);
|
|
7501
|
+
case "minus":
|
|
7502
|
+
return Promise.resolve().then(() => (init_Minus(), Minus_exports)).then((m) => m.default);
|
|
7463
7503
|
case "more-horizontal":
|
|
7464
7504
|
return Promise.resolve().then(() => (init_MoreHorizontal(), MoreHorizontal_exports)).then((m) => m.default);
|
|
7465
7505
|
case "mortgage":
|
|
@@ -7543,10 +7583,10 @@ function loadIcon(name) {
|
|
|
7543
7583
|
}
|
|
7544
7584
|
}
|
|
7545
7585
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
7546
|
-
const [IconComponent, setIconComponent] =
|
|
7547
|
-
const [loading, setLoading] =
|
|
7548
|
-
const [error, setError] =
|
|
7549
|
-
|
|
7586
|
+
const [IconComponent, setIconComponent] = React123.useState(null);
|
|
7587
|
+
const [loading, setLoading] = React123.useState(true);
|
|
7588
|
+
const [error, setError] = React123.useState(null);
|
|
7589
|
+
React123.useEffect(() => {
|
|
7550
7590
|
setLoading(true);
|
|
7551
7591
|
setError(null);
|
|
7552
7592
|
loadIcon(name).then((Component) => {
|
|
@@ -7565,7 +7605,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
7565
7605
|
return null;
|
|
7566
7606
|
}
|
|
7567
7607
|
const style = color ? { ...props.style, color } : props.style;
|
|
7568
|
-
return /* @__PURE__ */
|
|
7608
|
+
return /* @__PURE__ */ React123.createElement(IconComponent, { size, ...props, style });
|
|
7569
7609
|
};
|
|
7570
7610
|
var Icon_default = Icon;
|
|
7571
7611
|
|