@wikicasa-dev/svg-icons 0.1.6 → 0.1.8
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/DishwasherIcon.js +39 -0
- package/dist/FridgeIcon.js +28 -0
- package/dist/HobIcon.js +36 -0
- package/dist/PhotoAlbumIcon.js +168 -0
- package/dist/UploadIcon.js +40 -0
- package/dist/WashingMachineIcon.js +33 -0
- package/dist/index.js +130 -118
- package/dist/lib/index.d.ts +6 -0
- package/dist/lib/svgIcons/DishwasherIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FridgeIcon.d.ts +7 -0
- package/dist/lib/svgIcons/HobIcon.d.ts +7 -0
- package/dist/lib/svgIcons/PhotoAlbumIcon.d.ts +7 -0
- package/dist/lib/svgIcons/UploadIcon.d.ts +7 -0
- package/dist/lib/svgIcons/WashingMachineIcon.d.ts +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const d = (h) => o({
|
|
4
|
+
props: h,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 14.672 17",
|
|
8
|
+
width: h.width ?? 14,
|
|
9
|
+
height: h.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: h["stroke-color"] ?? "#222",
|
|
16
|
+
"stroke-width": h["stroke-width"] ?? 1,
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round"
|
|
19
|
+
},
|
|
20
|
+
[
|
|
21
|
+
t("path", {
|
|
22
|
+
d: "M.5 4.139h13.672v9.131a1.87 1.87 0 0 1-1.864 1.875H2.363A1.869 1.869 0 0 1 .5 13.27Z"
|
|
23
|
+
}),
|
|
24
|
+
t("path", {
|
|
25
|
+
d: "M2.363.5h9.945a1.869 1.869 0 0 1 1.863 1.875v1.864H.5V2.375A1.869 1.869 0 0 1 2.363.5Z"
|
|
26
|
+
}),
|
|
27
|
+
t("path", { d: "M2.118 2.37H3.44" }),
|
|
28
|
+
t("path", { d: "M5.196 2.37h1.322" }),
|
|
29
|
+
t("path", { d: "M9.159 4.121 9.5 2.999h2.769l.269 1.045" }),
|
|
30
|
+
t("path", {
|
|
31
|
+
d: "M1.543 15.145h11.464a1.351 1.351 0 0 1-1.346 1.355H2.888a1.35 1.35 0 0 1-1.345-1.355Z"
|
|
32
|
+
}),
|
|
33
|
+
t("path", { d: "M2.987 5.695h9.098v1.523H2.987z" })
|
|
34
|
+
]
|
|
35
|
+
)
|
|
36
|
+
});
|
|
37
|
+
export {
|
|
38
|
+
d as DishwasherIcon
|
|
39
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const i = (o) => e({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 10.474 17",
|
|
8
|
+
width: o.width ?? 10,
|
|
9
|
+
height: o.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{ fill: "none", stroke: "#222", "stroke-linecap": "round", "stroke-linejoin": "round" },
|
|
14
|
+
[
|
|
15
|
+
t("path", {
|
|
16
|
+
d: "M.5 6.065h9.474v8.49a1.945 1.945 0 0 1-1.944 1.942H2.444A1.945 1.945 0 0 1 .5 14.555Z"
|
|
17
|
+
}),
|
|
18
|
+
t("path", {
|
|
19
|
+
d: "M2.444.5H8.03a1.944 1.944 0 0 1 1.944 1.945V6.07H.5V2.445A1.944 1.944 0 0 1 2.444.5Z"
|
|
20
|
+
}),
|
|
21
|
+
t("path", { d: "M1.846 2.864v1.483" }),
|
|
22
|
+
t("path", { d: "M1.846 7.724v1.483" })
|
|
23
|
+
]
|
|
24
|
+
)
|
|
25
|
+
});
|
|
26
|
+
export {
|
|
27
|
+
i as FridgeIcon
|
|
28
|
+
};
|
package/dist/HobIcon.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { h as r } from "vue";
|
|
2
|
+
import { s as c } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const n = (t) => c({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 17 17",
|
|
8
|
+
width: t.width ?? 17,
|
|
9
|
+
height: t.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: r(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
16
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round",
|
|
19
|
+
transform: "translate(.5 .5)"
|
|
20
|
+
},
|
|
21
|
+
[
|
|
22
|
+
r("path", {
|
|
23
|
+
d: "M1.882 0h12.235A1.883 1.883 0 0 1 16 1.883v12.234A1.883 1.883 0 0 1 14.117 16H1.882A1.882 1.882 0 0 1 0 14.118V1.882A1.882 1.882 0 0 1 1.882 0Z"
|
|
24
|
+
}),
|
|
25
|
+
r("circle", { cx: "1.86", cy: "1.86", r: "1.86", transform: "translate(2.713 1.921)" }),
|
|
26
|
+
r("circle", { cx: "1.86", cy: "1.86", r: "1.86", transform: "translate(9.567 1.921)" }),
|
|
27
|
+
r("circle", { cx: "1.86", cy: "1.86", r: "1.86", transform: "translate(2.713 7.895)" }),
|
|
28
|
+
r("circle", { cx: "1.86", cy: "1.86", r: "1.86", transform: "translate(9.567 7.895)" }),
|
|
29
|
+
r("circle", { cx: ".409", cy: ".409", r: ".409", transform: "translate(9.756 13.453)" }),
|
|
30
|
+
r("circle", { cx: ".409", cy: ".409", r: ".409", transform: "translate(12.171 13.453)" })
|
|
31
|
+
]
|
|
32
|
+
)
|
|
33
|
+
});
|
|
34
|
+
export {
|
|
35
|
+
n as HobIcon
|
|
36
|
+
};
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as r } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const a = (t) => r({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 58.976 51.992",
|
|
8
|
+
width: t.width ?? 58,
|
|
9
|
+
height: t.height ?? 51
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: [
|
|
12
|
+
o(
|
|
13
|
+
"defs",
|
|
14
|
+
o(
|
|
15
|
+
"clipPath",
|
|
16
|
+
{ id: "clip-path" },
|
|
17
|
+
o("rect", { id: "Rettangolo_885", width: "58.976", height: "51.992", fill: "none" })
|
|
18
|
+
)
|
|
19
|
+
),
|
|
20
|
+
o("g", { id: "Raggruppa_1059-2" }, [
|
|
21
|
+
o("path", {
|
|
22
|
+
id: "Tracciato_713",
|
|
23
|
+
d: "M37.224,28.627l-27.065,6a3.9,3.9,0,0,1-4.651-2.963L1.093,11.742A3.9,3.9,0,0,1,4.057,7.091l27.064-6a3.9,3.9,0,0,1,4.651,2.963l4.415,19.921a3.9,3.9,0,0,1-2.963,4.651",
|
|
24
|
+
transform: "translate(-0.137 -0.137)",
|
|
25
|
+
fill: "#fff"
|
|
26
|
+
}),
|
|
27
|
+
o("rect", {
|
|
28
|
+
id: "Rettangolo_883",
|
|
29
|
+
width: "35.52",
|
|
30
|
+
height: "28.202",
|
|
31
|
+
rx: "4.519",
|
|
32
|
+
transform: "translate(0.112 7.798) rotate(-12.496)",
|
|
33
|
+
fill: "none",
|
|
34
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
35
|
+
"stroke-linecap": "round",
|
|
36
|
+
"stroke-linejoin": "round",
|
|
37
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
38
|
+
}),
|
|
39
|
+
o("path", {
|
|
40
|
+
id: "Tracciato_714",
|
|
41
|
+
d: "M11.474,14.873A2.161,2.161,0,1,1,8.9,13.231,2.161,2.161,0,0,1,11.474,14.873Z",
|
|
42
|
+
transform: "translate(-0.988 -1.808)",
|
|
43
|
+
fill: "none",
|
|
44
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
45
|
+
"stroke-linecap": "round",
|
|
46
|
+
"stroke-linejoin": "round",
|
|
47
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
48
|
+
}),
|
|
49
|
+
o("path", {
|
|
50
|
+
id: "Tracciato_715",
|
|
51
|
+
d: "M6.581,34.141l5.026-6.793a4.837,4.837,0,0,1,6.673-1.079l10.649,7.494",
|
|
52
|
+
transform: "translate(-0.903 -3.483)",
|
|
53
|
+
fill: "none",
|
|
54
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
55
|
+
"stroke-linecap": "round",
|
|
56
|
+
"stroke-linejoin": "round",
|
|
57
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
58
|
+
}),
|
|
59
|
+
o("path", {
|
|
60
|
+
id: "Tracciato_716",
|
|
61
|
+
d: "M19.252,24.1l5.026-6.793a4.837,4.837,0,0,1,6.673-1.079L41.6,23.724",
|
|
62
|
+
transform: "translate(-2.641 -2.105)",
|
|
63
|
+
fill: "none",
|
|
64
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
65
|
+
"stroke-linecap": "round",
|
|
66
|
+
"stroke-linejoin": "round",
|
|
67
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
68
|
+
}),
|
|
69
|
+
o("path", {
|
|
70
|
+
id: "Tracciato_717",
|
|
71
|
+
d: "M52.343,43.152,25.191,37.563a3.9,3.9,0,0,1-3.034-4.6L26.27,12.974A3.9,3.9,0,0,1,30.876,9.94l27.152,5.588a3.9,3.9,0,0,1,3.034,4.606L56.949,40.118a3.9,3.9,0,0,1-4.606,3.034",
|
|
72
|
+
transform: "translate(-3.029 -1.352)",
|
|
73
|
+
fill: "#fff"
|
|
74
|
+
}),
|
|
75
|
+
o("path", {
|
|
76
|
+
id: "Tracciato_718",
|
|
77
|
+
d: "M52.343,43.152,25.191,37.563a3.9,3.9,0,0,1-3.034-4.6L26.27,12.974A3.9,3.9,0,0,1,30.876,9.94l27.152,5.588a3.9,3.9,0,0,1,3.034,4.606L56.949,40.118A3.9,3.9,0,0,1,52.343,43.152Z",
|
|
78
|
+
transform: "translate(-3.029 -1.352)",
|
|
79
|
+
fill: "none",
|
|
80
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
81
|
+
"stroke-linecap": "round",
|
|
82
|
+
"stroke-linejoin": "round",
|
|
83
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
84
|
+
}),
|
|
85
|
+
o("path", {
|
|
86
|
+
id: "Tracciato_719",
|
|
87
|
+
d: "M35.646,19.114a2.161,2.161,0,1,1-1.681-2.552A2.161,2.161,0,0,1,35.646,19.114Z",
|
|
88
|
+
transform: "translate(-4.303 -2.266)",
|
|
89
|
+
fill: "none",
|
|
90
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
91
|
+
"stroke-linecap": "round",
|
|
92
|
+
"stroke-linejoin": "round",
|
|
93
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
94
|
+
}),
|
|
95
|
+
o("path", {
|
|
96
|
+
id: "Tracciato_720",
|
|
97
|
+
d: "M22.906,35.1l7.363-4.146A4.838,4.838,0,0,1,36.8,32.7l6.655,11.192",
|
|
98
|
+
transform: "translate(-3.142 -4.161)",
|
|
99
|
+
fill: "none",
|
|
100
|
+
stroke: "#2a7ec3",
|
|
101
|
+
"stroke-linecap": "round",
|
|
102
|
+
"stroke-linejoin": "round",
|
|
103
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
104
|
+
}),
|
|
105
|
+
o("path", {
|
|
106
|
+
id: "Tracciato_721",
|
|
107
|
+
d: "M38.573,31.118l7.363-4.146a4.838,4.838,0,0,1,6.532,1.743l6.655,11.192",
|
|
108
|
+
transform: "translate(-5.292 -3.615)",
|
|
109
|
+
fill: "none",
|
|
110
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
111
|
+
"stroke-linecap": "round",
|
|
112
|
+
"stroke-linejoin": "round",
|
|
113
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
114
|
+
}),
|
|
115
|
+
o("path", {
|
|
116
|
+
id: "Tracciato_722",
|
|
117
|
+
d: "M45.923,54.774H18.2a3.9,3.9,0,0,1-3.9-3.9v-20.4a3.9,3.9,0,0,1,3.9-3.9H45.923a3.9,3.9,0,0,1,3.9,3.9v20.4a3.9,3.9,0,0,1-3.9,3.9",
|
|
118
|
+
transform: "translate(-1.962 -3.645)",
|
|
119
|
+
fill: "#fff"
|
|
120
|
+
}),
|
|
121
|
+
o("path", {
|
|
122
|
+
id: "Rettangolo_884",
|
|
123
|
+
d: "M4.519,0H31A4.519,4.519,0,0,1,35.52,4.519V23.684A4.519,4.519,0,0,1,31,28.2H4.52A4.52,4.52,0,0,1,0,23.683V4.519A4.519,4.519,0,0,1,4.519,0Z",
|
|
124
|
+
transform: "translate(12.34 22.926)",
|
|
125
|
+
fill: "none",
|
|
126
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
127
|
+
"stroke-linecap": "round",
|
|
128
|
+
"stroke-linejoin": "round",
|
|
129
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
130
|
+
}),
|
|
131
|
+
o("circle", {
|
|
132
|
+
id: "Ellisse_62",
|
|
133
|
+
cx: "2.161",
|
|
134
|
+
cy: "2.161",
|
|
135
|
+
r: "2.161",
|
|
136
|
+
transform: "translate(17.006 28.151)",
|
|
137
|
+
fill: "none",
|
|
138
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
139
|
+
"stroke-linecap": "round",
|
|
140
|
+
"stroke-linejoin": "round",
|
|
141
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
142
|
+
}),
|
|
143
|
+
o("path", {
|
|
144
|
+
id: "Tracciato_723",
|
|
145
|
+
d: "M14.867,52.764l6.376-5.544a4.838,4.838,0,0,1,6.749.39l8.775,9.621",
|
|
146
|
+
transform: "translate(-2.039 -6.315)",
|
|
147
|
+
fill: "none",
|
|
148
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
149
|
+
"stroke-linecap": "round",
|
|
150
|
+
"stroke-linejoin": "round",
|
|
151
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
152
|
+
}),
|
|
153
|
+
o("path", {
|
|
154
|
+
id: "Tracciato_724",
|
|
155
|
+
d: "M29.41,45.7l6.376-5.544a4.838,4.838,0,0,1,6.749.39l8.775,9.621",
|
|
156
|
+
transform: "translate(-4.035 -5.346)",
|
|
157
|
+
fill: "none",
|
|
158
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
159
|
+
"stroke-linecap": "round",
|
|
160
|
+
"stroke-linejoin": "round",
|
|
161
|
+
"stroke-width": t["stroke-width"] ?? 2
|
|
162
|
+
})
|
|
163
|
+
])
|
|
164
|
+
]
|
|
165
|
+
});
|
|
166
|
+
export {
|
|
167
|
+
a as PhotoAlbumIcon
|
|
168
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as r } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const s = (t) => r({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 16.344 17.274",
|
|
8
|
+
width: t.width ?? 16,
|
|
9
|
+
height: t.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: [
|
|
12
|
+
o(
|
|
13
|
+
"g",
|
|
14
|
+
{ transform: "translate(0.75 0.75)" },
|
|
15
|
+
o("g", { transform: "translate(0 0)" }, [
|
|
16
|
+
o("path", {
|
|
17
|
+
d: "M15.835,8.831V14.8A2.014,2.014,0,0,1,13.8,16.792H3.026A2.015,2.015,0,0,1,.991,14.8V8.831",
|
|
18
|
+
transform: "translate(-0.991 -1.018)",
|
|
19
|
+
fill: "none",
|
|
20
|
+
stroke: t["stroke-color"] ?? "#2b5dff",
|
|
21
|
+
"stroke-linecap": "round",
|
|
22
|
+
"stroke-linejoin": "round",
|
|
23
|
+
"stroke-width": t["stroke-width"] ?? "1.5"
|
|
24
|
+
}),
|
|
25
|
+
o("path", {
|
|
26
|
+
d: "M11.631,4.212,8.342.991,5.055,4.212,8.342.991V12.173",
|
|
27
|
+
transform: "translate(-0.92 -0.991)",
|
|
28
|
+
fill: "none",
|
|
29
|
+
stroke: "#2b5dff",
|
|
30
|
+
"stroke-linecap": "round",
|
|
31
|
+
"stroke-linejoin": "round",
|
|
32
|
+
"stroke-width": "1.5"
|
|
33
|
+
})
|
|
34
|
+
])
|
|
35
|
+
)
|
|
36
|
+
]
|
|
37
|
+
});
|
|
38
|
+
export {
|
|
39
|
+
s as UploadIcon
|
|
40
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const n = (r) => o({
|
|
4
|
+
props: r,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 14.507 17.001",
|
|
8
|
+
width: r.width ?? 14,
|
|
9
|
+
height: r.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: r["stroke-color"] ?? "#222",
|
|
16
|
+
"stroke-width": r["stroke-width"] ?? 1,
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round",
|
|
19
|
+
transform: "translate(.5 .5)"
|
|
20
|
+
},
|
|
21
|
+
[
|
|
22
|
+
t("path", { d: "M0 3.67h13.507V13.9A2.1 2.1 0 0 1 11.4 16H2.1A2.1 2.1 0 0 1 0 13.9Z" }),
|
|
23
|
+
t("path", { d: "M2.1 0h9.3a2.1 2.1 0 0 1 2.105 2.1v1.571H0V2.1A2.1 2.1 0 0 1 2.1 0Z" }),
|
|
24
|
+
t("circle", { cx: "4.193", cy: "4.193", r: "4.193", transform: "translate(2.559 5.642)" }),
|
|
25
|
+
t("path", { d: "M4.401 0v3.671" }),
|
|
26
|
+
t("path", { d: "M9.992 1.835h1.298" }),
|
|
27
|
+
t("path", { d: "M9.582 6.748s-3.031 3.084 0 6.174" })
|
|
28
|
+
]
|
|
29
|
+
)
|
|
30
|
+
});
|
|
31
|
+
export {
|
|
32
|
+
n as WashingMachineIcon
|
|
33
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -6,17 +6,17 @@ import { BulbIcon as x } from "./BulbIcon.js";
|
|
|
6
6
|
import { CheckActiveIcon as i } from "./CheckActiveIcon.js";
|
|
7
7
|
import { CheckInactiveIcon as l } from "./CheckInactiveIcon.js";
|
|
8
8
|
import { CloseIcon as g } from "./CloseIcon.js";
|
|
9
|
-
import { DashboardIcon as
|
|
9
|
+
import { DashboardIcon as k } from "./DashboardIcon.js";
|
|
10
10
|
import { DeleteIcon as W } from "./DeleteIcon.js";
|
|
11
11
|
import { DrawIcon as S } from "./DrawIcon.js";
|
|
12
12
|
import { EditIcon as w } from "./EditIcon.js";
|
|
13
|
-
import { GermanyFlagIcon as
|
|
13
|
+
import { GermanyFlagIcon as C } from "./GermanyFlagIcon.js";
|
|
14
14
|
import { HeartIcon as y } from "./HeartIcon.js";
|
|
15
|
-
import { HidePswIcon as
|
|
16
|
-
import { HomeIcon as
|
|
17
|
-
import { ItalyFlagIcon as
|
|
18
|
-
import { LayersIcon as
|
|
19
|
-
import { LocationIcon as
|
|
15
|
+
import { HidePswIcon as H } from "./HidePswIcon.js";
|
|
16
|
+
import { HomeIcon as v } from "./HomeIcon.js";
|
|
17
|
+
import { ItalyFlagIcon as M } from "./ItalyFlagIcon.js";
|
|
18
|
+
import { LayersIcon as V } from "./LayersIcon.js";
|
|
19
|
+
import { LocationIcon as G } from "./LocationIcon.js";
|
|
20
20
|
import { LogoutIcon as U } from "./LogoutIcon.js";
|
|
21
21
|
import { MailIcon as E } from "./MailIcon.js";
|
|
22
22
|
import { MapIcon as K } from "./MapIcon.js";
|
|
@@ -32,18 +32,18 @@ import { ProfileIcon as Io } from "./ProfileIcon.js";
|
|
|
32
32
|
import { QuotesIcon as xo } from "./QuotesIcon.js";
|
|
33
33
|
import { RequestIcon as io } from "./RequestIcon.js";
|
|
34
34
|
import { SearchIcon as so } from "./SearchIcon.js";
|
|
35
|
-
import { ShareIcon as
|
|
35
|
+
import { ShareIcon as uo } from "./ShareIcon.js";
|
|
36
36
|
import { SuitcaseIcon as ho } from "./SuitcaseIcon.js";
|
|
37
37
|
import { TieIcon as Po } from "./TieIcon.js";
|
|
38
38
|
import { TourIcon as Ao } from "./TourIcon.js";
|
|
39
|
-
import { UkFlagIcon as
|
|
40
|
-
import { ValuationIcon as
|
|
41
|
-
import { VideoIcon as
|
|
42
|
-
import { ViewPswIcon as
|
|
43
|
-
import { WalletIcon as
|
|
44
|
-
import { WarningIcon as
|
|
45
|
-
import { WarningIconRounded as
|
|
46
|
-
import { WkAppIcon as
|
|
39
|
+
import { UkFlagIcon as bo } from "./UkFlagIcon.js";
|
|
40
|
+
import { ValuationIcon as No } from "./ValuationIcon.js";
|
|
41
|
+
import { VideoIcon as Do } from "./VideoIcon.js";
|
|
42
|
+
import { ViewPswIcon as Lo } from "./ViewPswIcon.js";
|
|
43
|
+
import { WalletIcon as Bo } from "./WalletIcon.js";
|
|
44
|
+
import { WarningIcon as Ro } from "./WarningIcon.js";
|
|
45
|
+
import { WarningIconRounded as Fo } from "./WarningIconRounded.js";
|
|
46
|
+
import { WkAppIcon as To } from "./WkAppIcon.js";
|
|
47
47
|
import { AnalyticsIcon as qo } from "./AnalyticsIcon.js";
|
|
48
48
|
import { WikicasaIcon as zo } from "./WikicasaIcon.js";
|
|
49
49
|
import { GearIcon as Qo } from "./GearIcon.js";
|
|
@@ -59,18 +59,18 @@ import { ArrowIndicatorIcon as fr } from "./ArrowIndicatorIcon.js";
|
|
|
59
59
|
import { PrincipalIcon as ar } from "./PrincipalIcon.js";
|
|
60
60
|
import { PinShadowedIcon as dr } from "./PinShadowedIcon.js";
|
|
61
61
|
import { HouseValuationIcon as sr } from "./HouseValuationIcon.js";
|
|
62
|
-
import { CheckRoundedIcon as
|
|
62
|
+
import { CheckRoundedIcon as ur } from "./CheckRoundedIcon.js";
|
|
63
63
|
import { DownloadIcon as hr } from "./DownloadIcon.js";
|
|
64
64
|
import { SquareMeterIcon as Pr } from "./SquareMeterIcon.js";
|
|
65
65
|
import { PriceIcon as Ar } from "./PriceIcon.js";
|
|
66
|
-
import { DemandIcon as
|
|
67
|
-
import { TransactionIcon as
|
|
68
|
-
import { InfoIcon as
|
|
69
|
-
import { CheckIcon as
|
|
70
|
-
import { ExternalLinkIcon as
|
|
71
|
-
import { BathroomIcon as
|
|
72
|
-
import { EnergyClassIcon as
|
|
73
|
-
import { AuctionHammerIcon as
|
|
66
|
+
import { DemandIcon as br } from "./DemandIcon.js";
|
|
67
|
+
import { TransactionIcon as Nr } from "./TransactionIcon.js";
|
|
68
|
+
import { InfoIcon as Dr } from "./InfoIcon.js";
|
|
69
|
+
import { CheckIcon as Lr } from "./CheckIcon.js";
|
|
70
|
+
import { ExternalLinkIcon as Br } from "./ExternalLinkIcon.js";
|
|
71
|
+
import { BathroomIcon as Rr } from "./BathroomIcon.js";
|
|
72
|
+
import { EnergyClassIcon as Fr } from "./EnergyClassIcon.js";
|
|
73
|
+
import { AuctionHammerIcon as Tr } from "./AuctionHammerIcon.js";
|
|
74
74
|
import { PhotoIcon as qr } from "./PhotoIcon.js";
|
|
75
75
|
import { TelegramRoundedIcon as zr } from "./TelegramRoundedIcon.js";
|
|
76
76
|
import { WhatsappRoundedIcon as Qr } from "./WhatsappRoundedIcon.js";
|
|
@@ -86,98 +86,107 @@ import { KeyIcon as fe } from "./KeyIcon.js";
|
|
|
86
86
|
import { MegaphoneIcon as ae } from "./MegaphoneIcon.js";
|
|
87
87
|
import { ParkingSpotIcon as de } from "./ParkingSpotIcon.js";
|
|
88
88
|
import { BoxIcon as se } from "./BoxIcon.js";
|
|
89
|
-
import { ParkingIcon as
|
|
89
|
+
import { ParkingIcon as ue } from "./ParkingIcon.js";
|
|
90
90
|
import { PoolIcon as he } from "./PoolIcon.js";
|
|
91
91
|
import { PrivateGardenIcon as Pe } from "./PrivateGardenIcon.js";
|
|
92
92
|
import { CommunalGardenIcon as Ae } from "./CommunalGardenIcon.js";
|
|
93
|
-
import { TennisIcon as
|
|
94
|
-
import { ReceptionIcon as
|
|
95
|
-
import { ArchitecturalBarriersIcon as
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
93
|
+
import { TennisIcon as be } from "./TennisIcon.js";
|
|
94
|
+
import { ReceptionIcon as Ne } from "./ReceptionIcon.js";
|
|
95
|
+
import { ArchitecturalBarriersIcon as De } from "./ArchitecturalBarriersIcon.js";
|
|
96
|
+
import { UploadIcon as Le } from "./UploadIcon.js";
|
|
97
|
+
import { HobIcon as Be } from "./HobIcon.js";
|
|
98
|
+
import { FridgeIcon as Re } from "./FridgeIcon.js";
|
|
99
|
+
import { WashingMachineIcon as Fe } from "./WashingMachineIcon.js";
|
|
100
|
+
import { DishwasherIcon as Te } from "./DishwasherIcon.js";
|
|
101
|
+
import { PhotoAlbumIcon as qe } from "./PhotoAlbumIcon.js";
|
|
102
|
+
import { BankIcon as ze } from "./BankIcon.js";
|
|
103
|
+
import { BusIcon as Qe } from "./BusIcon.js";
|
|
104
|
+
import { CartIcon as je } from "./CartIcon.js";
|
|
105
|
+
import { ChargeIcon as Oe } from "./Charge.js";
|
|
106
|
+
import { HospitalIcon as Ze } from "./HospitalIcon.js";
|
|
107
|
+
import { PharmacyIcon as $e } from "./PharmacyIcon.js";
|
|
108
|
+
import { PostIcon as rt } from "./PostIcon.js";
|
|
109
|
+
import { SchoolIcon as tt } from "./SchoolIcon.js";
|
|
110
|
+
import { SubwayIcon as mt } from "./SubwayIcon.js";
|
|
111
|
+
import { TrainIcon as pt } from "./TrainIcon.js";
|
|
112
|
+
import { TrainAltIcon as ft } from "./TrainAltIcon.js";
|
|
113
|
+
import { WikicasaDatiLogoIcon as at } from "./WikicasaDatiLogo.js";
|
|
114
|
+
import { WikicasaLogoIcon as dt } from "./WikicasaLogo.js";
|
|
115
|
+
import { WikiNerdImg as st } from "./WikiNerd.js";
|
|
116
|
+
import { WikiNerdValutaMobileImg as ut } from "./WikiNerdValutaMobile.js";
|
|
117
|
+
import { WikiNerdMercatoImg as ht } from "./WikiNerdMercatoHome.js";
|
|
118
|
+
import { WikiNerdValutaDesktopImg as Pt } from "./WikiNerdValutaDesktop.js";
|
|
119
|
+
import { WikiNerdDownloadAppImg as At } from "./WikiNerdDownloadApp.js";
|
|
120
|
+
import { WikicasaStudioLogoIcon as bt } from "./WikicasaStudioLogo.js";
|
|
121
|
+
import { GenericUserWikiAvatarImg as Nt } from "./GenericUserWikiAvatar.js";
|
|
122
|
+
import { ShieldImg as Dt } from "./ShieldImg.js";
|
|
123
|
+
import { SnapImg as Lt } from "./SnapImg.js";
|
|
124
|
+
import { StopWatchImg as Bt } from "./StopWatchImg.js";
|
|
125
|
+
import { CheckImg as Rt } from "./CheckImg.js";
|
|
126
|
+
import { IareeImg as Ft } from "./IareeImg.js";
|
|
127
|
+
import { WikiNerdAnalyzeImg as Tt } from "./WikiNerdAnalyzeImg.js";
|
|
128
|
+
import { WikiNerdValuationNotAvailableImg as qt } from "./WikiNerdValuationNotAvailableImg.js";
|
|
129
|
+
import { InsightImg as zt } from "./InsightImg.js";
|
|
130
|
+
import { GenericUserWikiAvatarSquaredImg as Qt } from "./GenericUserWikiAvatarSquaredImg.js";
|
|
131
|
+
import { WikiNoSavedSearchesImg as jt } from "./WikiNoSavedSearches.js";
|
|
126
132
|
export {
|
|
127
133
|
e as AboutUsIcon,
|
|
128
134
|
qo as AnalyticsIcon,
|
|
129
|
-
|
|
135
|
+
De as ArchitecturalBarriersIcon,
|
|
130
136
|
n as ArrowIcon,
|
|
131
137
|
fr as ArrowIndicatorIcon,
|
|
132
|
-
|
|
133
|
-
|
|
138
|
+
Tr as AuctionHammerIcon,
|
|
139
|
+
ze as BankIcon,
|
|
134
140
|
c as BarChartIcon,
|
|
135
|
-
|
|
141
|
+
Rr as BathroomIcon,
|
|
136
142
|
I as BellIcon,
|
|
137
143
|
se as BoxIcon,
|
|
138
144
|
x as BulbIcon,
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
145
|
+
Qe as BusIcon,
|
|
146
|
+
je as CartIcon,
|
|
147
|
+
Oe as ChargeIcon,
|
|
142
148
|
i as CheckActiveIcon,
|
|
143
|
-
|
|
144
|
-
|
|
149
|
+
Lr as CheckIcon,
|
|
150
|
+
Rt as CheckImg,
|
|
145
151
|
l as CheckInactiveIcon,
|
|
146
|
-
|
|
152
|
+
ur as CheckRoundedIcon,
|
|
147
153
|
g as CloseIcon,
|
|
148
154
|
Ae as CommunalGardenIcon,
|
|
149
155
|
Or as CredipassIcon,
|
|
150
|
-
|
|
156
|
+
k as DashboardIcon,
|
|
151
157
|
W as DeleteIcon,
|
|
152
|
-
|
|
158
|
+
br as DemandIcon,
|
|
159
|
+
Te as DishwasherIcon,
|
|
153
160
|
hr as DownloadIcon,
|
|
154
161
|
S as DrawIcon,
|
|
155
162
|
w as EditIcon,
|
|
156
|
-
|
|
157
|
-
|
|
163
|
+
Fr as EnergyClassIcon,
|
|
164
|
+
Br as ExternalLinkIcon,
|
|
158
165
|
Oo as FacebookIcon,
|
|
159
166
|
jr as FacebookRoundedIcon,
|
|
167
|
+
Re as FridgeIcon,
|
|
160
168
|
Qo as GearIcon,
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
169
|
+
Nt as GenericUserWikiAvatarImg,
|
|
170
|
+
Qt as GenericUserWikiAvatarSquaredImg,
|
|
171
|
+
C as GermanyFlagIcon,
|
|
164
172
|
mr as GoogleIcon,
|
|
165
173
|
tr as HamburgerMenuIcon,
|
|
166
174
|
y as HeartIcon,
|
|
167
175
|
Zr as HeartShadowedIcon,
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
176
|
+
H as HidePswIcon,
|
|
177
|
+
Be as HobIcon,
|
|
178
|
+
v as HomeIcon,
|
|
179
|
+
Ze as HospitalIcon,
|
|
171
180
|
sr as HouseValuationIcon,
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
181
|
+
Ft as IareeImg,
|
|
182
|
+
Dr as InfoIcon,
|
|
183
|
+
zt as InsightImg,
|
|
175
184
|
$o as InstagramIcon,
|
|
176
|
-
|
|
185
|
+
M as ItalyFlagIcon,
|
|
177
186
|
fe as KeyIcon,
|
|
178
|
-
|
|
187
|
+
V as LayersIcon,
|
|
179
188
|
Zo as LinkedinIcon,
|
|
180
|
-
|
|
189
|
+
G as LocationIcon,
|
|
181
190
|
pe as LockIcon,
|
|
182
191
|
U as LogoutIcon,
|
|
183
192
|
E as MailIcon,
|
|
@@ -185,18 +194,19 @@ export {
|
|
|
185
194
|
ae as MegaphoneIcon,
|
|
186
195
|
Y as NewsIcon,
|
|
187
196
|
J as NotesIcon,
|
|
188
|
-
|
|
197
|
+
ue as ParkingIcon,
|
|
189
198
|
de as ParkingSpotIcon,
|
|
190
199
|
me as PartnershipIcon,
|
|
191
|
-
|
|
200
|
+
$e as PharmacyIcon,
|
|
192
201
|
X as PhoneIcon,
|
|
202
|
+
qe as PhotoAlbumIcon,
|
|
193
203
|
qr as PhotoIcon,
|
|
194
204
|
_ as PinIcon,
|
|
195
205
|
dr as PinShadowedIcon,
|
|
196
206
|
oo as PlanIcon,
|
|
197
207
|
eo as PlusIcon,
|
|
198
208
|
he as PoolIcon,
|
|
199
|
-
|
|
209
|
+
rt as PostIcon,
|
|
200
210
|
no as PrestigeIcon,
|
|
201
211
|
Ar as PriceIcon,
|
|
202
212
|
ar as PrincipalIcon,
|
|
@@ -204,49 +214,51 @@ export {
|
|
|
204
214
|
Pe as PrivateGardenIcon,
|
|
205
215
|
Io as ProfileIcon,
|
|
206
216
|
xo as QuotesIcon,
|
|
207
|
-
|
|
217
|
+
Ne as ReceptionIcon,
|
|
208
218
|
io as RequestIcon,
|
|
209
|
-
|
|
219
|
+
tt as SchoolIcon,
|
|
210
220
|
so as SearchIcon,
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
221
|
+
uo as ShareIcon,
|
|
222
|
+
Dt as ShieldImg,
|
|
223
|
+
Lt as SnapImg,
|
|
214
224
|
$r as SortIcon,
|
|
215
225
|
Pr as SquareMeterIcon,
|
|
216
226
|
te as StarIcon,
|
|
217
|
-
|
|
227
|
+
Bt as StopWatchImg,
|
|
218
228
|
re as StreetViewIcon,
|
|
219
|
-
|
|
229
|
+
mt as SubwayIcon,
|
|
220
230
|
ho as SuitcaseIcon,
|
|
221
231
|
zr as TelegramRoundedIcon,
|
|
222
|
-
|
|
232
|
+
be as TennisIcon,
|
|
223
233
|
Po as TieIcon,
|
|
224
234
|
Ao as TourIcon,
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
+
ft as TrainAltIcon,
|
|
236
|
+
pt as TrainIcon,
|
|
237
|
+
Nr as TransactionIcon,
|
|
238
|
+
bo as UkFlagIcon,
|
|
239
|
+
Le as UploadIcon,
|
|
240
|
+
No as ValuationIcon,
|
|
241
|
+
Do as VideoIcon,
|
|
242
|
+
Lo as ViewPswIcon,
|
|
243
|
+
Bo as WalletIcon,
|
|
244
|
+
Ro as WarningIcon,
|
|
245
|
+
Fo as WarningIconRounded,
|
|
246
|
+
Fe as WashingMachineIcon,
|
|
235
247
|
Qr as WhatsappRoundedIcon,
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
248
|
+
Tt as WikiNerdAnalyzeImg,
|
|
249
|
+
At as WikiNerdDownloadAppImg,
|
|
250
|
+
st as WikiNerdImg,
|
|
251
|
+
ht as WikiNerdMercatoImg,
|
|
252
|
+
qt as WikiNerdValuationNotAvailableImg,
|
|
253
|
+
Pt as WikiNerdValutaDesktopImg,
|
|
254
|
+
ut as WikiNerdValutaMobileImg,
|
|
255
|
+
jt as WikiNoSavedSearchesImg,
|
|
256
|
+
at as WikicasaDatiLogoIcon,
|
|
245
257
|
zo as WikicasaIcon,
|
|
246
|
-
|
|
258
|
+
dt as WikicasaLogoIcon,
|
|
247
259
|
pr as WikicasaRoundedIcon,
|
|
248
|
-
|
|
249
|
-
|
|
260
|
+
bt as WikicasaStudioLogoIcon,
|
|
261
|
+
To as WkAppIcon,
|
|
250
262
|
jo as WkFavIcon,
|
|
251
263
|
rr as YoutubeIcon
|
|
252
264
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -93,6 +93,12 @@ export { CommunalGardenIcon } from './svgIcons/CommunalGardenIcon';
|
|
|
93
93
|
export { TennisIcon } from './svgIcons/TennisIcon';
|
|
94
94
|
export { ReceptionIcon } from './svgIcons/ReceptionIcon';
|
|
95
95
|
export { ArchitecturalBarriersIcon } from './svgIcons/ArchitecturalBarriersIcon';
|
|
96
|
+
export { UploadIcon } from './svgIcons/UploadIcon';
|
|
97
|
+
export { HobIcon } from './svgIcons/HobIcon';
|
|
98
|
+
export { FridgeIcon } from './svgIcons/FridgeIcon';
|
|
99
|
+
export { WashingMachineIcon } from './svgIcons/WashingMachineIcon';
|
|
100
|
+
export { DishwasherIcon } from './svgIcons/DishwasherIcon';
|
|
101
|
+
export { PhotoAlbumIcon } from './svgIcons/PhotoAlbumIcon';
|
|
96
102
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
97
103
|
export { BusIcon } from './svgIcons/poi/BusIcon';
|
|
98
104
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
|
+
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
|
+
|
|
4
|
+
export declare const DishwasherIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-color': `#${string}`;
|
|
6
|
+
'stroke-width': number;
|
|
7
|
+
}>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
|
+
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
|
+
|
|
4
|
+
export declare const FridgeIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-color': `#${string}`;
|
|
6
|
+
'stroke-width': number;
|
|
7
|
+
}>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
|
+
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
|
+
|
|
4
|
+
export declare const HobIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-color': `#${string}`;
|
|
6
|
+
'stroke-width': number;
|
|
7
|
+
}>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
|
+
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
|
+
|
|
4
|
+
export declare const PhotoAlbumIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-color': `#${string}`;
|
|
6
|
+
'stroke-width': number;
|
|
7
|
+
}>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
|
+
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
|
+
|
|
4
|
+
export declare const UploadIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-width': number;
|
|
6
|
+
'stroke-color': `#${string}`;
|
|
7
|
+
}>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
|
+
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
|
+
|
|
4
|
+
export declare const WashingMachineIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-color': `#${string}`;
|
|
6
|
+
'stroke-width': number;
|
|
7
|
+
}>>;
|