@wikicasa-dev/svg-icons 0.1.9 → 0.1.11
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/BankIcon.js +29 -41
- package/dist/BusIcon.js +39 -69
- package/dist/ChargeIcon.js +23 -0
- package/dist/HospitalIcon.js +28 -34
- package/dist/MetroIcon.js +35 -0
- package/dist/PharmacyIcon.js +27 -13
- package/dist/PostOfficeIcon.js +38 -0
- package/dist/SchoolIcon.js +49 -56
- package/dist/SupermarketIcon.js +42 -0
- package/dist/TrainIcon.js +32 -70
- package/dist/TransportIcon.js +44 -0
- package/dist/WikicasaProIcon.js +101 -0
- package/dist/index.js +81 -75
- package/dist/lib/index.d.ts +7 -4
- package/dist/lib/svgIcons/poi/BankIcon.d.ts +3 -4
- package/dist/lib/svgIcons/poi/BusIcon.d.ts +3 -4
- package/dist/lib/svgIcons/poi/{Charge.d.ts → ChargeIcon.d.ts} +3 -4
- package/dist/lib/svgIcons/poi/HospitalIcon.d.ts +3 -4
- package/dist/lib/svgIcons/poi/MetroIcon.d.ts +7 -0
- package/dist/lib/svgIcons/poi/PharmacyIcon.d.ts +3 -4
- package/dist/lib/svgIcons/poi/PostOfficeIcon.d.ts +7 -0
- package/dist/lib/svgIcons/poi/SchoolIcon.d.ts +3 -4
- package/dist/lib/svgIcons/poi/SupermarketIcon.d.ts +7 -0
- package/dist/lib/svgIcons/poi/TrainIcon.d.ts +3 -4
- package/dist/lib/svgIcons/poi/TransportIcon.d.ts +7 -0
- package/dist/lib/svgImages/WikicasaProIcon.d.ts +4 -0
- package/package.json +1 -1
- package/dist/Charge.js +0 -19
- package/dist/PostIcon.js +0 -33
- package/dist/TrainAltIcon.js +0 -61
- package/dist/lib/svgIcons/poi/PostIcon.d.ts +0 -8
- package/dist/lib/svgIcons/poi/TrainAltIcon.d.ts +0 -8
package/dist/TrainIcon.js
CHANGED
|
@@ -1,75 +1,37 @@
|
|
|
1
|
-
import { h as
|
|
2
|
-
import { s as
|
|
3
|
-
import { g as
|
|
4
|
-
const
|
|
5
|
-
props:
|
|
6
|
-
svgNodeAttrs: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
fill: "#fff",
|
|
16
|
-
stroke: o.color ?? "#222",
|
|
17
|
-
"stroke-linecap": "round",
|
|
18
|
-
"stroke-linejoin": "round",
|
|
19
|
-
d: "M8.685.298a19.2 19.2 0 0 0-6.738 0h0A2.36 2.36 0 0 0 0 2.623v9.553a1.5 1.5 0 0 0 1.5 1.5h7.634a1.5 1.5 0 0 0 1.5-1.5V2.623A2.36 2.36 0 0 0 8.685.298"
|
|
20
|
-
}),
|
|
21
|
-
r("path", {
|
|
22
|
-
fill: "#fff",
|
|
23
|
-
stroke: o.color ?? "#222",
|
|
24
|
-
"stroke-linecap": "round",
|
|
25
|
-
"stroke-linejoin": "round",
|
|
26
|
-
d: "M1.182 3.434h8.274v3.539H1.182z"
|
|
27
|
-
}),
|
|
28
|
-
r("path", {
|
|
29
|
-
fill: "none",
|
|
30
|
-
stroke: o.color ?? "#222",
|
|
31
|
-
"stroke-linecap": "round",
|
|
32
|
-
"stroke-linejoin": "round",
|
|
33
|
-
d: "M5.32 3.536v3.438"
|
|
34
|
-
}),
|
|
35
|
-
r("circle", {
|
|
36
|
-
cx: "1.074",
|
|
37
|
-
cy: "1.074",
|
|
38
|
-
r: "1.074",
|
|
39
|
-
fill: "none",
|
|
40
|
-
stroke: o.color ?? "#2b5dff",
|
|
41
|
-
"stroke-linecap": "round",
|
|
42
|
-
"stroke-linejoin": "round",
|
|
43
|
-
transform: "translate(1.182 9.841)"
|
|
44
|
-
}),
|
|
45
|
-
r("circle", {
|
|
46
|
-
cx: "1.074",
|
|
47
|
-
cy: "1.074",
|
|
48
|
-
r: "1.074",
|
|
49
|
-
fill: "none",
|
|
50
|
-
stroke: o.color ?? "#222",
|
|
51
|
-
"stroke-linecap": "round",
|
|
52
|
-
"stroke-linejoin": "round",
|
|
53
|
-
transform: "translate(7.308 9.841)"
|
|
54
|
-
}),
|
|
55
|
-
r("path", {
|
|
56
|
-
fill: "none",
|
|
57
|
-
stroke: o.color ?? "#222",
|
|
58
|
-
"stroke-linecap": "round",
|
|
59
|
-
"stroke-linejoin": "round",
|
|
60
|
-
d: "M4.624 10.224h1.383m-1.383 1.433h1.383M4.254 1.703h1.927"
|
|
61
|
-
})
|
|
62
|
-
]
|
|
63
|
-
),
|
|
64
|
-
r("path", {
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
import { g as a } from "./DefaultValues-DOBkctU1.js";
|
|
4
|
+
const i = (h) => (h = { ...a(), ...h }, o({
|
|
5
|
+
props: h,
|
|
6
|
+
svgNodeAttrs: {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 11.389 17.21",
|
|
9
|
+
width: h.width ?? 17,
|
|
10
|
+
height: h.height ?? 17
|
|
11
|
+
},
|
|
12
|
+
childrenNodes: t(
|
|
13
|
+
"g",
|
|
14
|
+
{
|
|
65
15
|
fill: "none",
|
|
66
|
-
stroke:
|
|
16
|
+
stroke: h["stroke-color"] ?? "#222",
|
|
17
|
+
"stroke-width": h["stroke-width"] ?? 1,
|
|
67
18
|
"stroke-linecap": "round",
|
|
68
|
-
"stroke-linejoin": "round"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
19
|
+
"stroke-linejoin": "round"
|
|
20
|
+
},
|
|
21
|
+
[
|
|
22
|
+
t("path", {
|
|
23
|
+
d: "M9.122 1.146h0a9.733 9.733 0 0 0-6.854 0A2.73 2.73 0 0 0 .5 3.699v7.649a2.007 2.007 0 0 0 1.639 1.975 19.222 19.222 0 0 0 7.109 0 2 2 0 0 0 1.638-1.971V3.699a2.728 2.728 0 0 0-1.764-2.553Z"
|
|
24
|
+
}),
|
|
25
|
+
t("path", { d: "M.5 3.637h10.389v3.794H.5z" }),
|
|
26
|
+
t("path", { d: "M5.695 6.912V3.637" }),
|
|
27
|
+
t("path", { d: "M2.966 9.677a.882.882 0 1 1-.883.883.883.883 0 0 1 .883-.883Z" }),
|
|
28
|
+
t("path", { d: "M8.276 9.677a.882.882 0 1 1-.883.883.883.883 0 0 1 .883-.883Z" }),
|
|
29
|
+
t("path", { d: "m1.107 16.523 1.765-2.871" }),
|
|
30
|
+
t("path", { d: "m10.229 16.523-1.765-2.871" }),
|
|
31
|
+
t("path", { d: "M1.602 15.717h7.744" })
|
|
32
|
+
]
|
|
33
|
+
)
|
|
72
34
|
}));
|
|
73
35
|
export {
|
|
74
|
-
|
|
36
|
+
i as TrainIcon
|
|
75
37
|
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as h } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const r = (a) => h({
|
|
4
|
+
props: a,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 13.027 17.002",
|
|
8
|
+
width: a.width ?? 13,
|
|
9
|
+
height: a.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: a["stroke-color"] ?? "#222",
|
|
16
|
+
"stroke-width": a["stroke-width"] ?? 1,
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round"
|
|
19
|
+
},
|
|
20
|
+
[
|
|
21
|
+
t("path", {
|
|
22
|
+
d: "M10.138.795h0a22.563 22.563 0 0 0-7.243 0A2.391 2.391 0 0 0 .803 3.082v9.4a1.549 1.549 0 0 0 1.613 1.475h8.205a1.548 1.548 0 0 0 1.607-1.478V3.082a2.391 2.391 0 0 0-2.09-2.287Z"
|
|
23
|
+
}),
|
|
24
|
+
t("path", {
|
|
25
|
+
d: "M3.571 3.879h5.891a.962.962 0 0 1 .939.984v1.513a.962.962 0 0 1-.939.984H3.571a.962.962 0 0 1-.939-.984V4.863a.962.962 0 0 1 .939-.984Z"
|
|
26
|
+
}),
|
|
27
|
+
t("path", { d: "M6.518 3.98v3.382" }),
|
|
28
|
+
t("path", { d: "M3.504 10.584a.654.654 0 1 1-.654.654.655.655 0 0 1 .654-.654Z" }),
|
|
29
|
+
t("path", { d: "M9.42 10.584a.654.654 0 1 1-.655.654.655.655 0 0 1 .655-.654Z" }),
|
|
30
|
+
t("path", { d: "M5.833 11.238h1.36" }),
|
|
31
|
+
t("path", { d: "M5.469 2.177h1.895" }),
|
|
32
|
+
t("path", {
|
|
33
|
+
d: "m12.235 16.502-1.737-.046a.272.272 0 0 1-.211-.109l-1.465-1.928a.274.274 0 0 1 .23-.44l1.894.079a.275.275 0 0 1 .214.119l1.308 1.895a.274.274 0 0 1-.233.43Z"
|
|
34
|
+
}),
|
|
35
|
+
t("path", {
|
|
36
|
+
d: "m.792 16.502 1.737-.046a.272.272 0 0 0 .211-.109l1.47-1.928a.274.274 0 0 0-.23-.44l-1.894.079a.275.275 0 0 0-.214.119L.559 16.072a.274.274 0 0 0 .233.43Z"
|
|
37
|
+
}),
|
|
38
|
+
t("path", { d: "M3.119 15.855h6.68" })
|
|
39
|
+
]
|
|
40
|
+
)
|
|
41
|
+
});
|
|
42
|
+
export {
|
|
43
|
+
r as TransportIcon
|
|
44
|
+
};
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { h as c } from "vue";
|
|
2
|
+
import { s as t } from "./svgImagefactory-DHbjrCiy.js";
|
|
3
|
+
const a = (s) => t({
|
|
4
|
+
props: s,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
x: "0px",
|
|
8
|
+
y: "0px",
|
|
9
|
+
viewBox: "0 0 1036 295",
|
|
10
|
+
style: "enable-background:new 0 0 1036 295;",
|
|
11
|
+
width: s.width ?? 1036,
|
|
12
|
+
height: s.height ?? 295,
|
|
13
|
+
"aria-labelledby": s.id ? s.description ? `${s.id}_title ${s.id}_desc` : `${s.id}_title` : void 0,
|
|
14
|
+
role: "img"
|
|
15
|
+
},
|
|
16
|
+
childrenNodes: [
|
|
17
|
+
c(
|
|
18
|
+
"style",
|
|
19
|
+
{ type: "text/css" },
|
|
20
|
+
".st0{fill:#2B5DFF;} .st1{fill:#FFFFFF;} .st2{fill:#222222;}"
|
|
21
|
+
),
|
|
22
|
+
c(
|
|
23
|
+
"g",
|
|
24
|
+
c("g", [
|
|
25
|
+
c(
|
|
26
|
+
"g",
|
|
27
|
+
c("g", [
|
|
28
|
+
c("g", [
|
|
29
|
+
c("path", {
|
|
30
|
+
class: "st0",
|
|
31
|
+
d: "M334.1,42.9c2.9,0,5.6,0.5,8.1,1.6s4.7,2.6,6.7,4.5c1.9,1.9,3.4,4.1,4.5,6.7c1.1,2.5,1.6,5.2,1.6,8.1 c0,2.9-0.5,5.6-1.6,8.1s-2.6,4.7-4.5,6.7c-1.9,1.9-4.1,3.4-6.7,4.5c-2.5,1.1-5.2,1.6-8.1,1.6s-5.6-0.5-8.1-1.6 s-4.7-2.6-6.7-4.5c-1.9-1.9-3.4-4.1-4.5-6.7c-1.1-2.5-1.6-5.2-1.6-8.1c0-2.9,0.5-5.6,1.6-8.1s2.6-4.7,4.5-6.7 c1.9-1.9,4.1-3.4,6.7-4.5C328.6,43.4,331.3,42.9,334.1,42.9z"
|
|
32
|
+
}),
|
|
33
|
+
c("path", {
|
|
34
|
+
class: "st0",
|
|
35
|
+
d: "M350.1,206.4h-32c-1.5,0-2.6-1.2-2.6-2.6v-99.7c0-1.5,1.2-2.6,2.6-2.6h32c1.5,0,2.6,1.2,2.6,2.6v99.7 C352.7,205.2,351.6,206.4,350.1,206.4z"
|
|
36
|
+
})
|
|
37
|
+
]),
|
|
38
|
+
c("path", {
|
|
39
|
+
class: "st0",
|
|
40
|
+
d: "M413.2,137.1l35.7-34.9c0.5-0.5,1.2-0.8,1.9-0.8h43.1c2.4,0,3.6,3,1.8,4.6L449,149c-0.6,0.5-0.6,1.4,0,1.9 l50.5,51c1.7,1.7,0.5,4.5-1.9,4.5h-44.7c-0.7,0-1.4-0.3-1.9-0.8L413.3,166c-0.8-0.9-2.3-0.3-2.3,0.9v36.8c0,1.5-1.2,2.6-2.6,2.6 h-32c-1.5,0-2.6-1.2-2.6-2.6V46.9c0-1.5,1.2-2.6,2.6-2.6h32c1.5,0,2.6,1.2,2.6,2.6v89.3C411,137.3,412.4,137.9,413.2,137.1z"
|
|
41
|
+
}),
|
|
42
|
+
c("g", [
|
|
43
|
+
c("path", {
|
|
44
|
+
class: "st0",
|
|
45
|
+
d: "M532,43.5c2.9,0,5.6,0.5,8.1,1.6s4.7,2.6,6.7,4.5c1.9,1.9,3.4,4.1,4.5,6.7c1.1,2.5,1.6,5.2,1.6,8.1 c0,2.9-0.5,5.6-1.6,8.1s-2.6,4.7-4.5,6.7c-1.9,1.9-4.1,3.4-6.7,4.5c-2.5,1.1-5.2,1.6-8.1,1.6c-2.9,0-5.6-0.5-8.1-1.6 s-4.7-2.6-6.7-4.5c-1.9-1.9-3.4-4.1-4.5-6.7c-1.1-2.5-1.6-5.2-1.6-8.1c0-2.9,0.5-5.6,1.6-8.1c1.1-2.5,2.6-4.7,4.5-6.7 c1.9-1.9,4.1-3.4,6.7-4.5C526.4,44.1,529.1,43.5,532,43.5z"
|
|
46
|
+
}),
|
|
47
|
+
c("path", {
|
|
48
|
+
class: "st0",
|
|
49
|
+
d: "M548,207.1h-32c-1.5,0-2.6-1.2-2.6-2.6v-99.7c0-1.5,1.2-2.6,2.6-2.6h32c1.5,0,2.6,1.2,2.6,2.6v99.7 C550.6,205.9,549.4,207.1,548,207.1z"
|
|
50
|
+
})
|
|
51
|
+
]),
|
|
52
|
+
c("path", {
|
|
53
|
+
class: "st0",
|
|
54
|
+
d: "M649.2,130.7c0,2-2.2,3.3-4,2.3c-1.6-0.9-3.3-1.8-5-2.6c-3.3-1.4-6.7-2.1-10.2-2.1s-6.9,0.6-10,1.9 c-3.1,1.3-5.9,3.1-8.2,5.4c-2.3,2.3-4.1,5-5.4,8.1c-1.3,3.1-1.9,6.4-1.9,10.1c0,7.6,2.4,13.9,7.3,18.6 c4.8,4.8,11.2,7.2,18.9,7.2c3.3,0,6.6-0.6,9.9-1.8c1.7-0.6,3.2-1.4,4.7-2.2c1.8-1.1,4,0.2,4,2.3v24.5c0,1-0.6,2-1.5,2.4 c-3.6,1.7-7.4,2.9-11.3,3.8c-4.4,1-8.9,1.4-13.4,1.4c-7.8,0-15.1-1.4-22-4.1c-6.9-2.7-13-6.6-18.2-11.5 c-5.3-4.9-9.4-10.7-12.4-17.4s-4.5-14-4.5-21.9c0-8.5,1.5-16.2,4.5-23.2c3-7,7.2-13,12.5-18s11.6-8.9,18.7-11.7 c7.2-2.8,14.8-4.2,23-4.2c4.4,0,8.6,0.5,12.8,1.5c3.6,0.9,7.1,2.2,10.4,3.9c0.9,0.4,1.4,1.4,1.4,2.4L649.2,130.7L649.2,130.7z"
|
|
55
|
+
}),
|
|
56
|
+
c("path", {
|
|
57
|
+
class: "st0",
|
|
58
|
+
d: "M779.9,206.4h-32c-1.5,0-2.6-1.2-2.6-2.6v-9h-0.4c-3.3,5.2-7.8,9-13.7,11.5s-11.9,3.7-18,3.7 c-7.8,0-14.9-1.5-21.4-4.5s-12.1-7.1-16.8-12.2c-4.7-5.1-8.4-11.1-11-17.9c-2.6-6.8-3.9-14-3.9-21.5s1.3-14.6,3.9-21.4 c2.6-6.8,6.2-12.7,10.7-17.8c4.6-5.1,10.1-9.2,16.6-12.2s13.6-4.5,21.4-4.5c6.1,0,12.1,1.1,17.9,3.4c5.6,2.2,10.3,5.4,14.2,9.8 c0.2,0.2,0.5,0.1,0.5-0.2v-6.9c0-1.5,1.2-2.6,2.6-2.6h32c1.5,0,2.6,1.2,2.6,2.6v99.7C782.5,205.2,781.3,206.4,779.9,206.4z M722.6,130.3c-3.8,0-7.2,0.6-10.1,1.9c-2.9,1.3-5.4,3-7.5,5.1c-2,2.1-3.6,4.6-4.7,7.5c-1.1,2.9-1.6,5.9-1.6,9.2 c0,6.7,2.1,12.3,6.2,16.8c4.2,4.5,10.1,6.8,17.7,6.8c7.6,0,13.5-2.3,17.7-6.8s6.2-10.1,6.2-16.8c0-3.3-0.5-6.3-1.6-9.2 s-2.7-5.4-4.7-7.5s-4.5-3.8-7.5-5.1C729.8,130.9,726.4,130.3,722.6,130.3z"
|
|
59
|
+
}),
|
|
60
|
+
c("path", {
|
|
61
|
+
class: "st0",
|
|
62
|
+
d: "M871.3,125.8c-0.6,1.2-2.1,1.7-3.4,1.2c-2.3-1-4.8-1.9-7.6-2.6c-3.7-1-7.1-1.4-10.2-1.4 c-1.1,0-2.3,0.1-3.7,0.4s-2.6,0.7-3.8,1.2s-2.1,1.3-3,2.1c-0.8,0.9-1.2,2-1.2,3.4c0,1.8,0.6,3.2,1.9,4.3 c1.3,1.1,2.8,1.9,4.6,2.6c1.8,0.6,3.6,1.1,5.5,1.4c1.9,0.3,3.5,0.7,4.7,0.9c4.4,0.8,8.4,2,12.1,3.6c3.7,1.6,6.9,3.6,9.6,6 c2.7,2.5,4.9,5.4,6.4,8.9c1.6,3.5,2.4,7.7,2.4,12.6c0,7-1.4,12.9-4.3,17.8c-2.9,4.9-6.7,8.9-11.4,12.1c-4.7,3.1-10,5.5-15.9,7 s-11.9,2.3-18,2.3c-7.5,0-14.8-1-22-3.1c-6.4-1.8-12.4-4.4-18.2-7.7c-1.2-0.7-1.6-2.3-1-3.5l11-21.2c0.7-1.4,2.5-1.8,3.8-1 s2.7,1.5,4.1,2.3c2.5,1.2,5,2.4,7.6,3.4s5.2,1.8,7.9,2.5c2.7,0.6,5.2,0.9,7.5,0.9c1.2,0,2.5-0.1,3.9-0.4 c1.4-0.3,2.6-0.7,3.8-1.4s2.1-1.5,2.9-2.5c0.7-1,1.1-2.2,1.1-3.7c0-2-0.7-3.6-2-4.8c-1.4-1.2-3.1-2.1-5.3-2.9 c-2.2-0.7-4.7-1.4-7.5-1.9s-5.6-1.2-8.5-2s-5.7-1.8-8.5-3s-5.3-2.8-7.5-4.9c-2.2-2.1-4-4.7-5.3-7.9c-1.4-3.1-2-7.1-2-11.9 c0-6.4,1.3-12,4-16.7s6.2-8.6,10.5-11.7c4.4-3.1,9.3-5.3,14.8-6.8c5.5-1.4,11.2-2.2,16.9-2.2c6,0,11.9,0.5,17.7,1.5 c4.8,0.9,9.6,2.2,14.2,4.1c1.5,0.6,2.1,2.3,1.4,3.7L871.3,125.8z"
|
|
63
|
+
}),
|
|
64
|
+
c("path", {
|
|
65
|
+
class: "st0",
|
|
66
|
+
d: "M1015.9,206.4h-32c-1.5,0-2.6-1.2-2.6-2.6v-9h-0.4c-3.3,5.2-7.8,9-13.7,11.5s-11.9,3.7-18,3.7 c-7.8,0-14.9-1.5-21.4-4.5s-12.1-7.1-16.8-12.2c-4.7-5.1-8.4-11.1-11-17.9c-2.6-6.8-3.9-14-3.9-21.5s1.3-14.6,3.9-21.4 c2.6-6.8,6.2-12.7,10.7-17.8c4.6-5.1,10.1-9.2,16.6-12.2s13.6-4.5,21.4-4.5c6.1,0,12.1,1.1,17.9,3.4c5.6,2.2,10.3,5.4,14.2,9.8 c0.2,0.2,0.5,0.1,0.5-0.2v-6.9c0-1.5,1.2-2.6,2.6-2.6h32c1.5,0,2.6,1.2,2.6,2.6v99.7C1018.5,205.2,1017.3,206.4,1015.9,206.4z M958.5,130.3c-3.8,0-7.2,0.6-10.1,1.9c-2.9,1.3-5.4,3-7.5,5.1c-2,2.1-3.6,4.6-4.7,7.5c-1.1,2.9-1.6,5.9-1.6,9.2 c0,6.7,2.1,12.3,6.2,16.8c4.2,4.5,10.1,6.8,17.7,6.8c7.6,0,13.5-2.3,17.7-6.8s6.2-10.1,6.2-16.8c0-3.3-0.5-6.3-1.6-9.2 s-2.7-5.4-4.7-7.5s-4.5-3.8-7.5-5.1C965.7,130.9,962.3,130.3,958.5,130.3z"
|
|
67
|
+
})
|
|
68
|
+
])
|
|
69
|
+
),
|
|
70
|
+
c("path", {
|
|
71
|
+
class: "st0",
|
|
72
|
+
d: "M282.8,245.1H182.4l-29.6,42.1c-2.1,3-6.6,3-8.7,0l-29.6-42.1H14.1c-5.9,0-10.6-4.8-10.6-10.6V14.1 c0-5.9,4.8-10.6,10.6-10.6h268.6c5.9,0,10.6,4.8,10.6,10.6v220.3C293.4,240.3,288.7,245.1,282.8,245.1z"
|
|
73
|
+
}),
|
|
74
|
+
c("path", {
|
|
75
|
+
class: "st1",
|
|
76
|
+
d: "M100.3,142.4l31.1-95.9c0.4-1.1,1.4-1.8,2.5-1.8h28.8c1.2,0,2.2,0.8,2.5,1.9l29.1,95.8c0.4,1.3,2.2,1.2,2.5,0 l28.4-95.9c0.3-1,1.3-1.7,2.3-1.7h37.3c1.8,0,3.1,1.7,2.5,3.4L218.6,205c-0.3,1.1-1.4,1.9-2.5,1.9H178c-1.1,0-2-0.7-2.3-1.7 l-26.1-85.8c-0.4-1.2-2.1-1.3-2.5,0L121,205.2c-0.3,1-1.3,1.6-2.3,1.6h-38c-1.2,0-2.2-0.8-2.5-1.9L29.4,48 c-0.5-1.7,0.8-3.4,2.5-3.4h37.3c1.1,0,2.1,0.7,2.3,1.8l26.2,95.9C98.1,143.6,99.9,143.6,100.3,142.4z"
|
|
77
|
+
})
|
|
78
|
+
])
|
|
79
|
+
),
|
|
80
|
+
c(
|
|
81
|
+
"g",
|
|
82
|
+
c("g", [
|
|
83
|
+
c("path", {
|
|
84
|
+
class: "st2",
|
|
85
|
+
d: "M905.3,284.6h-11.3v-43.3H912c4.9,0,8.6,1.3,11.2,3.8s3.9,6.1,3.9,10.7c0,4.6-1.3,8.2-3.9,10.7 c-2.6,2.5-6.3,3.8-11.2,3.8h-6.7V284.6z M905.3,261.1h3.7c4.1,0,6.2-1.8,6.2-5.4c0-3.6-2.1-5.4-6.2-5.4h-3.7V261.1z"
|
|
86
|
+
}),
|
|
87
|
+
c("path", {
|
|
88
|
+
class: "st2",
|
|
89
|
+
d: "M969.1,284.6h-14l-10.7-16.7v16.7H933v-43.3h17.5c2.4,0,4.5,0.4,6.3,1.1c1.8,0.7,3.3,1.7,4.5,2.9 c1.2,1.2,2,2.6,2.6,4.3s0.9,3.3,0.9,5.2c0,3.3-0.8,6-2.4,8c-1.6,2-3.9,3.4-7,4.2L969.1,284.6z M944.3,260.6h2.1 c2.2,0,3.9-0.5,5.1-1.4c1.2-0.9,1.8-2.2,1.8-4c0-1.7-0.6-3-1.8-4c-1.2-0.9-2.9-1.4-5.1-1.4h-2.1V260.6z"
|
|
90
|
+
}),
|
|
91
|
+
c("path", {
|
|
92
|
+
class: "st2",
|
|
93
|
+
d: "M971,262.9c0-3.2,0.6-6.2,1.8-9s2.8-5.2,4.9-7.3c2.1-2.1,4.6-3.7,7.6-4.9c2.9-1.2,6.2-1.8,9.7-1.8 c3.5,0,6.7,0.6,9.7,1.8c3,1.2,5.5,2.8,7.6,4.9c2.1,2.1,3.8,4.5,5,7.3s1.8,5.8,1.8,9s-0.6,6.2-1.8,9c-1.2,2.8-2.8,5.2-5,7.3 c-2.1,2.1-4.7,3.7-7.6,4.9c-2.9,1.2-6.2,1.8-9.7,1.8c-3.5,0-6.8-0.6-9.7-1.8c-2.9-1.2-5.4-2.8-7.6-4.9c-2.1-2.1-3.8-4.5-4.9-7.3 C971.6,269.1,971,266.1,971,262.9z M982.8,262.9c0,1.7,0.3,3.3,1,4.8c0.7,1.5,1.5,2.7,2.6,3.8c1.1,1.1,2.4,1.9,3.9,2.5 c1.5,0.6,3,0.9,4.7,0.9s3.2-0.3,4.7-0.9c1.5-0.6,2.8-1.4,3.9-2.5c1.1-1.1,2-2.3,2.7-3.8c0.7-1.5,1-3,1-4.8s-0.3-3.3-1-4.8 c-0.7-1.5-1.5-2.7-2.7-3.8c-1.1-1.1-2.4-1.9-3.9-2.5c-1.5-0.6-3-0.9-4.7-0.9s-3.2,0.3-4.7,0.9c-1.5,0.6-2.8,1.4-3.9,2.5 c-1.1,1.1-2,2.3-2.6,3.8C983.1,259.6,982.8,261.2,982.8,262.9z"
|
|
94
|
+
})
|
|
95
|
+
])
|
|
96
|
+
)
|
|
97
|
+
]
|
|
98
|
+
});
|
|
99
|
+
export {
|
|
100
|
+
a as WikicasaProIcon
|
|
101
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import { BarChartIcon as c } from "./BarChartIcon.js";
|
|
|
4
4
|
import { BellIcon as I } from "./BellIcon.js";
|
|
5
5
|
import { BulbIcon as x } from "./BulbIcon.js";
|
|
6
6
|
import { CheckActiveIcon as i } from "./CheckActiveIcon.js";
|
|
7
|
-
import { CheckInactiveIcon as
|
|
7
|
+
import { CheckInactiveIcon as s } from "./CheckInactiveIcon.js";
|
|
8
8
|
import { CloseIcon as g } from "./CloseIcon.js";
|
|
9
9
|
import { DashboardIcon as h } from "./DashboardIcon.js";
|
|
10
10
|
import { DeleteIcon as W } from "./DeleteIcon.js";
|
|
@@ -15,7 +15,7 @@ import { HeartIcon as F } from "./HeartIcon.js";
|
|
|
15
15
|
import { HidePswIcon as N } from "./HidePswIcon.js";
|
|
16
16
|
import { HomeIcon as D } from "./HomeIcon.js";
|
|
17
17
|
import { ItalyFlagIcon as L } from "./ItalyFlagIcon.js";
|
|
18
|
-
import { LayersIcon as
|
|
18
|
+
import { LayersIcon as R } from "./LayersIcon.js";
|
|
19
19
|
import { LocationIcon as V } from "./LocationIcon.js";
|
|
20
20
|
import { LogoutIcon as E } from "./LogoutIcon.js";
|
|
21
21
|
import { MailIcon as q } from "./MailIcon.js";
|
|
@@ -41,8 +41,8 @@ import { ValuationIcon as bo } from "./ValuationIcon.js";
|
|
|
41
41
|
import { VideoIcon as To } from "./VideoIcon.js";
|
|
42
42
|
import { ViewPswIcon as vo } from "./ViewPswIcon.js";
|
|
43
43
|
import { WalletIcon as Ho } from "./WalletIcon.js";
|
|
44
|
-
import { WarningIcon as
|
|
45
|
-
import { WarningIconRounded as
|
|
44
|
+
import { WarningIcon as Mo } from "./WarningIcon.js";
|
|
45
|
+
import { WarningIconRounded as Bo } from "./WarningIconRounded.js";
|
|
46
46
|
import { WkAppIcon as Go } from "./WkAppIcon.js";
|
|
47
47
|
import { AnalyticsIcon as Uo } from "./AnalyticsIcon.js";
|
|
48
48
|
import { WikicasaIcon as zo } from "./WikicasaIcon.js";
|
|
@@ -58,7 +58,7 @@ import { WikicasaRoundedIcon as pr } from "./WikicasaRoundedIcon.js";
|
|
|
58
58
|
import { ArrowIndicatorIcon as fr } from "./ArrowIndicatorIcon.js";
|
|
59
59
|
import { PrincipalIcon as ar } from "./PrincipalIcon.js";
|
|
60
60
|
import { PinShadowedIcon as lr } from "./PinShadowedIcon.js";
|
|
61
|
-
import { HouseValuationIcon as
|
|
61
|
+
import { HouseValuationIcon as dr } from "./HouseValuationIcon.js";
|
|
62
62
|
import { CheckRoundedIcon as ur } from "./CheckRoundedIcon.js";
|
|
63
63
|
import { DownloadIcon as kr } from "./DownloadIcon.js";
|
|
64
64
|
import { SquareMeterIcon as Sr } from "./SquareMeterIcon.js";
|
|
@@ -68,8 +68,8 @@ import { TransactionIcon as br } from "./TransactionIcon.js";
|
|
|
68
68
|
import { InfoIcon as Tr } from "./InfoIcon.js";
|
|
69
69
|
import { CheckIcon as vr } from "./CheckIcon.js";
|
|
70
70
|
import { ExternalLinkIcon as Hr } from "./ExternalLinkIcon.js";
|
|
71
|
-
import { BathroomIcon as
|
|
72
|
-
import { EnergyClassIcon as
|
|
71
|
+
import { BathroomIcon as Mr } from "./BathroomIcon.js";
|
|
72
|
+
import { EnergyClassIcon as Br } from "./EnergyClassIcon.js";
|
|
73
73
|
import { AuctionHammerIcon as Gr } from "./AuctionHammerIcon.js";
|
|
74
74
|
import { PhotoIcon as Ur } from "./PhotoIcon.js";
|
|
75
75
|
import { TelegramRoundedIcon as zr } from "./TelegramRoundedIcon.js";
|
|
@@ -85,7 +85,7 @@ import { LockIcon as pe } from "./LockIcon.js";
|
|
|
85
85
|
import { KeyIcon as fe } from "./KeyIcon.js";
|
|
86
86
|
import { MegaphoneIcon as ae } from "./MegaphoneIcon.js";
|
|
87
87
|
import { ParkingSpotIcon as le } from "./ParkingSpotIcon.js";
|
|
88
|
-
import { BoxIcon as
|
|
88
|
+
import { BoxIcon as de } from "./BoxIcon.js";
|
|
89
89
|
import { ParkingIcon as ue } from "./ParkingIcon.js";
|
|
90
90
|
import { PoolIcon as ke } from "./PoolIcon.js";
|
|
91
91
|
import { PrivateGardenIcon as Se } from "./PrivateGardenIcon.js";
|
|
@@ -95,8 +95,8 @@ import { ReceptionIcon as be } from "./ReceptionIcon.js";
|
|
|
95
95
|
import { ArchitecturalBarriersIcon as Te } from "./ArchitecturalBarriersIcon.js";
|
|
96
96
|
import { UploadIcon as ve } from "./UploadIcon.js";
|
|
97
97
|
import { HobIcon as He } from "./HobIcon.js";
|
|
98
|
-
import { FridgeIcon as
|
|
99
|
-
import { WashingMachineIcon as
|
|
98
|
+
import { FridgeIcon as Me } from "./FridgeIcon.js";
|
|
99
|
+
import { WashingMachineIcon as Be } from "./WashingMachineIcon.js";
|
|
100
100
|
import { DishwasherIcon as Ge } from "./DishwasherIcon.js";
|
|
101
101
|
import { PhotoAlbumIcon as Ue } from "./PhotoAlbumIcon.js";
|
|
102
102
|
import { FurnishedIcon as ze } from "./FurnishedIcon.js";
|
|
@@ -112,7 +112,7 @@ import { FixturesIcon as pt } from "./FixturesIcon.js";
|
|
|
112
112
|
import { TypeViewIcon as ft } from "./TypeViewIcon.js";
|
|
113
113
|
import { HotWaterIcon as at } from "./HotWaterIcon.js";
|
|
114
114
|
import { CeilingIcon as lt } from "./CeilingIcon.js";
|
|
115
|
-
import { EntranceIcon as
|
|
115
|
+
import { EntranceIcon as dt } from "./EntranceIcon.js";
|
|
116
116
|
import { OpticFiberIcon as ut } from "./OpticFiberIcon.js";
|
|
117
117
|
import { ElectricGateIcon as kt } from "./ElectricGateIcon.js";
|
|
118
118
|
import { WhirlpoolIcon as St } from "./WhirlpoolIcon.js";
|
|
@@ -122,40 +122,43 @@ import { TypeTvIcon as bt } from "./TypeTvIcon.js";
|
|
|
122
122
|
import { SatelliteSystemIcon as Tt } from "./SatelliteSystemIcon.js";
|
|
123
123
|
import { TypeRollerShutterIcon as vt } from "./TypeRollerShutterIcon.js";
|
|
124
124
|
import { TypeFloorIcon as Ht } from "./TypeFloorIcon.js";
|
|
125
|
-
import { FrontBuildingIcon as
|
|
126
|
-
import { LaundryIcon as
|
|
125
|
+
import { FrontBuildingIcon as Mt } from "./FrontBuildingIcon.js";
|
|
126
|
+
import { LaundryIcon as Bt } from "./LaundryIcon.js";
|
|
127
127
|
import { MezzanineIcon as Gt } from "./MezzanineIcon.js";
|
|
128
128
|
import { AttachedIcon as Ut } from "./AttachedIcon.js";
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
129
|
+
import { SupermarketIcon as zt } from "./SupermarketIcon.js";
|
|
130
|
+
import { BankIcon as Ot } from "./BankIcon.js";
|
|
131
131
|
import { CartIcon as Yt } from "./CartIcon.js";
|
|
132
|
-
import { ChargeIcon as Jt } from "./
|
|
132
|
+
import { ChargeIcon as Jt } from "./ChargeIcon.js";
|
|
133
133
|
import { HospitalIcon as Zt } from "./HospitalIcon.js";
|
|
134
134
|
import { PharmacyIcon as $t } from "./PharmacyIcon.js";
|
|
135
|
-
import {
|
|
135
|
+
import { PostOfficeIcon as rn } from "./PostOfficeIcon.js";
|
|
136
136
|
import { SchoolIcon as tn } from "./SchoolIcon.js";
|
|
137
137
|
import { SubwayIcon as mn } from "./SubwayIcon.js";
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
138
|
+
import { TransportIcon as pn } from "./TransportIcon.js";
|
|
139
|
+
import { MetroIcon as fn } from "./MetroIcon.js";
|
|
140
|
+
import { TrainIcon as an } from "./TrainIcon.js";
|
|
141
|
+
import { BusIcon as sn } from "./BusIcon.js";
|
|
142
|
+
import { WikicasaDatiLogoIcon as gn } from "./WikicasaDatiLogo.js";
|
|
143
|
+
import { WikicasaLogoIcon as hn } from "./WikicasaLogo.js";
|
|
144
|
+
import { WikiNerdImg as Wn } from "./WikiNerd.js";
|
|
145
|
+
import { WikiNerdValutaMobileImg as Pn } from "./WikiNerdValutaMobile.js";
|
|
146
|
+
import { WikiNerdMercatoImg as yn } from "./WikiNerdMercatoHome.js";
|
|
147
|
+
import { WikiNerdValutaDesktopImg as wn } from "./WikiNerdValutaDesktop.js";
|
|
148
|
+
import { WikiNerdDownloadAppImg as Fn } from "./WikiNerdDownloadApp.js";
|
|
149
|
+
import { WikicasaStudioLogoIcon as Nn } from "./WikicasaStudioLogo.js";
|
|
150
|
+
import { GenericUserWikiAvatarImg as Dn } from "./GenericUserWikiAvatar.js";
|
|
151
|
+
import { ShieldImg as Ln } from "./ShieldImg.js";
|
|
152
|
+
import { SnapImg as Rn } from "./SnapImg.js";
|
|
153
|
+
import { StopWatchImg as Vn } from "./StopWatchImg.js";
|
|
154
|
+
import { CheckImg as En } from "./CheckImg.js";
|
|
155
|
+
import { IareeImg as qn } from "./IareeImg.js";
|
|
156
|
+
import { WikiNerdAnalyzeImg as Kn } from "./WikiNerdAnalyzeImg.js";
|
|
157
|
+
import { WikiNerdValuationNotAvailableImg as Qn } from "./WikiNerdValuationNotAvailableImg.js";
|
|
158
|
+
import { InsightImg as jn } from "./InsightImg.js";
|
|
159
|
+
import { GenericUserWikiAvatarSquaredImg as Xn } from "./GenericUserWikiAvatarSquaredImg.js";
|
|
160
|
+
import { WikiNoSavedSearchesImg as _n } from "./WikiNoSavedSearches.js";
|
|
161
|
+
import { WikicasaProIcon as om } from "./WikicasaProIcon.js";
|
|
159
162
|
export {
|
|
160
163
|
e as AboutUsIcon,
|
|
161
164
|
Je as AirConditionerIcon,
|
|
@@ -167,21 +170,21 @@ export {
|
|
|
167
170
|
Ut as AttachedIcon,
|
|
168
171
|
Ze as AtticIcon,
|
|
169
172
|
Gr as AuctionHammerIcon,
|
|
170
|
-
|
|
173
|
+
Ot as BankIcon,
|
|
171
174
|
c as BarChartIcon,
|
|
172
|
-
|
|
175
|
+
Mr as BathroomIcon,
|
|
173
176
|
I as BellIcon,
|
|
174
|
-
|
|
177
|
+
de as BoxIcon,
|
|
175
178
|
x as BulbIcon,
|
|
176
|
-
|
|
179
|
+
sn as BusIcon,
|
|
177
180
|
Yt as CartIcon,
|
|
178
181
|
lt as CeilingIcon,
|
|
179
182
|
Oe as CellarIcon,
|
|
180
183
|
Jt as ChargeIcon,
|
|
181
184
|
i as CheckActiveIcon,
|
|
182
185
|
vr as CheckIcon,
|
|
183
|
-
|
|
184
|
-
|
|
186
|
+
En as CheckImg,
|
|
187
|
+
s as CheckInactiveIcon,
|
|
185
188
|
ur as CheckRoundedIcon,
|
|
186
189
|
g as CloseIcon,
|
|
187
190
|
mt as ClosetIcon,
|
|
@@ -195,19 +198,19 @@ export {
|
|
|
195
198
|
P as DrawIcon,
|
|
196
199
|
y as EditIcon,
|
|
197
200
|
kt as ElectricGateIcon,
|
|
198
|
-
|
|
199
|
-
|
|
201
|
+
Br as EnergyClassIcon,
|
|
202
|
+
dt as EntranceIcon,
|
|
200
203
|
Hr as ExternalLinkIcon,
|
|
201
204
|
Jo as FacebookIcon,
|
|
202
205
|
Yr as FacebookRoundedIcon,
|
|
203
206
|
At as FireplaceIcon,
|
|
204
207
|
pt as FixturesIcon,
|
|
205
|
-
|
|
206
|
-
|
|
208
|
+
Me as FridgeIcon,
|
|
209
|
+
Mt as FrontBuildingIcon,
|
|
207
210
|
ze as FurnishedIcon,
|
|
208
211
|
Oo as GearIcon,
|
|
209
|
-
|
|
210
|
-
|
|
212
|
+
Dn as GenericUserWikiAvatarImg,
|
|
213
|
+
Xn as GenericUserWikiAvatarSquaredImg,
|
|
211
214
|
w as GermanyFlagIcon,
|
|
212
215
|
mr as GoogleIcon,
|
|
213
216
|
tr as HamburgerMenuIcon,
|
|
@@ -218,16 +221,16 @@ export {
|
|
|
218
221
|
D as HomeIcon,
|
|
219
222
|
Zt as HospitalIcon,
|
|
220
223
|
at as HotWaterIcon,
|
|
221
|
-
|
|
222
|
-
|
|
224
|
+
dr as HouseValuationIcon,
|
|
225
|
+
qn as IareeImg,
|
|
223
226
|
Tr as InfoIcon,
|
|
224
|
-
|
|
227
|
+
jn as InsightImg,
|
|
225
228
|
$o as InstagramIcon,
|
|
226
229
|
L as ItalyFlagIcon,
|
|
227
230
|
fe as KeyIcon,
|
|
228
231
|
Ye as KitchenIcon,
|
|
229
|
-
|
|
230
|
-
|
|
232
|
+
Bt as LaundryIcon,
|
|
233
|
+
R as LayersIcon,
|
|
231
234
|
Zo as LinkedinIcon,
|
|
232
235
|
V as LocationIcon,
|
|
233
236
|
pe as LockIcon,
|
|
@@ -235,6 +238,7 @@ export {
|
|
|
235
238
|
q as MailIcon,
|
|
236
239
|
K as MapIcon,
|
|
237
240
|
ae as MegaphoneIcon,
|
|
241
|
+
fn as MetroIcon,
|
|
238
242
|
Gt as MezzanineIcon,
|
|
239
243
|
Q as NewsIcon,
|
|
240
244
|
j as NotesIcon,
|
|
@@ -251,7 +255,7 @@ export {
|
|
|
251
255
|
oo as PlanIcon,
|
|
252
256
|
eo as PlusIcon,
|
|
253
257
|
ke as PoolIcon,
|
|
254
|
-
rn as
|
|
258
|
+
rn as PostOfficeIcon,
|
|
255
259
|
no as PrestigeIcon,
|
|
256
260
|
Ar as PriceIcon,
|
|
257
261
|
ar as PrincipalIcon,
|
|
@@ -267,23 +271,24 @@ export {
|
|
|
267
271
|
so as SearchIcon,
|
|
268
272
|
Ct as SecurityDoorIcon,
|
|
269
273
|
uo as ShareIcon,
|
|
270
|
-
|
|
271
|
-
|
|
274
|
+
Ln as ShieldImg,
|
|
275
|
+
Rn as SnapImg,
|
|
272
276
|
$r as SortIcon,
|
|
273
277
|
Sr as SquareMeterIcon,
|
|
274
278
|
te as StarIcon,
|
|
275
|
-
|
|
279
|
+
Vn as StopWatchImg,
|
|
276
280
|
re as StreetViewIcon,
|
|
277
281
|
mn as SubwayIcon,
|
|
278
282
|
ko as SuitcaseIcon,
|
|
283
|
+
zt as SupermarketIcon,
|
|
279
284
|
$e as TavernIcon,
|
|
280
285
|
zr as TelegramRoundedIcon,
|
|
281
286
|
Ce as TennisIcon,
|
|
282
287
|
So as TieIcon,
|
|
283
288
|
Ao as TourIcon,
|
|
284
|
-
|
|
285
|
-
pn as TrainIcon,
|
|
289
|
+
an as TrainIcon,
|
|
286
290
|
br as TransactionIcon,
|
|
291
|
+
pn as TransportIcon,
|
|
287
292
|
Ht as TypeFloorIcon,
|
|
288
293
|
vt as TypeRollerShutterIcon,
|
|
289
294
|
bt as TypeTvIcon,
|
|
@@ -294,24 +299,25 @@ export {
|
|
|
294
299
|
To as VideoIcon,
|
|
295
300
|
vo as ViewPswIcon,
|
|
296
301
|
Ho as WalletIcon,
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
302
|
+
Mo as WarningIcon,
|
|
303
|
+
Bo as WarningIconRounded,
|
|
304
|
+
Be as WashingMachineIcon,
|
|
300
305
|
Or as WhatsappRoundedIcon,
|
|
301
306
|
St as WhirlpoolIcon,
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
307
|
+
Kn as WikiNerdAnalyzeImg,
|
|
308
|
+
Fn as WikiNerdDownloadAppImg,
|
|
309
|
+
Wn as WikiNerdImg,
|
|
310
|
+
yn as WikiNerdMercatoImg,
|
|
311
|
+
Qn as WikiNerdValuationNotAvailableImg,
|
|
312
|
+
wn as WikiNerdValutaDesktopImg,
|
|
313
|
+
Pn as WikiNerdValutaMobileImg,
|
|
314
|
+
_n as WikiNoSavedSearchesImg,
|
|
315
|
+
gn as WikicasaDatiLogoIcon,
|
|
311
316
|
zo as WikicasaIcon,
|
|
312
|
-
|
|
317
|
+
hn as WikicasaLogoIcon,
|
|
318
|
+
om as WikicasaProIcon,
|
|
313
319
|
pr as WikicasaRoundedIcon,
|
|
314
|
-
|
|
320
|
+
Nn as WikicasaStudioLogoIcon,
|
|
315
321
|
Go as WkAppIcon,
|
|
316
322
|
Yo as WkFavIcon,
|
|
317
323
|
rr as YoutubeIcon
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -126,17 +126,19 @@ export { FrontBuildingIcon } from './svgIcons/FrontBuildingIcon';
|
|
|
126
126
|
export { LaundryIcon } from './svgIcons/LaundryIcon';
|
|
127
127
|
export { MezzanineIcon } from './svgIcons/MezzanineIcon';
|
|
128
128
|
export { AttachedIcon } from './svgIcons/AttachedIcon';
|
|
129
|
+
export { SupermarketIcon } from './svgIcons/poi/SupermarketIcon';
|
|
129
130
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
130
|
-
export { BusIcon } from './svgIcons/poi/BusIcon';
|
|
131
131
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|
|
132
|
-
export { ChargeIcon } from './svgIcons/poi/
|
|
132
|
+
export { ChargeIcon } from './svgIcons/poi/ChargeIcon';
|
|
133
133
|
export { HospitalIcon } from './svgIcons/poi/HospitalIcon';
|
|
134
134
|
export { PharmacyIcon } from './svgIcons/poi/PharmacyIcon';
|
|
135
|
-
export {
|
|
135
|
+
export { PostOfficeIcon } from './svgIcons/poi/PostOfficeIcon';
|
|
136
136
|
export { SchoolIcon } from './svgIcons/poi/SchoolIcon';
|
|
137
137
|
export { SubwayIcon } from './svgIcons/poi/SubwayIcon';
|
|
138
|
+
export { TransportIcon } from './svgIcons/poi/TransportIcon';
|
|
139
|
+
export { MetroIcon } from './svgIcons/poi/MetroIcon';
|
|
138
140
|
export { TrainIcon } from './svgIcons/poi/TrainIcon';
|
|
139
|
-
export {
|
|
141
|
+
export { BusIcon } from './svgIcons/poi/BusIcon';
|
|
140
142
|
export { WikicasaDatiLogoIcon } from './svgImages/WikicasaDatiLogo';
|
|
141
143
|
export { WikicasaLogoIcon } from './svgImages/WikicasaLogo';
|
|
142
144
|
export { WikiNerdImg } from './svgImages/WikiNerd';
|
|
@@ -156,3 +158,4 @@ export { WikiNerdValuationNotAvailableImg } from './svgImages/WikiNerdValuationN
|
|
|
156
158
|
export { InsightImg } from './svgImages/InsightImg';
|
|
157
159
|
export { GenericUserWikiAvatarSquaredImg } from './svgImages/GenericUserWikiAvatarSquaredImg';
|
|
158
160
|
export { WikiNoSavedSearchesImg } from './svgImages/WikiNoSavedSearches';
|
|
161
|
+
export { WikicasaProIcon } from './svgImages/WikicasaProIcon';
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
|
|
2
2
|
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
3
|
|
|
4
|
-
export declare const BankIcon: FunctionalSvgIconComponent<Partial<SvgProps
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
borderColor: string;
|
|
4
|
+
export declare const BankIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-color': `#${string}`;
|
|
6
|
+
'stroke-width': number;
|
|
8
7
|
}>>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
|
|
2
2
|
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
3
|
|
|
4
|
-
export declare const BusIcon: FunctionalSvgIconComponent<Partial<SvgProps
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
borderColor: string;
|
|
4
|
+
export declare const BusIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-color': `#${string}`;
|
|
6
|
+
'stroke-width': number;
|
|
8
7
|
}>>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
|
|
2
2
|
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
3
|
|
|
4
|
-
export declare const ChargeIcon: FunctionalSvgIconComponent<Partial<SvgProps
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
borderColor: string;
|
|
4
|
+
export declare const ChargeIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-color': `#${string}`;
|
|
6
|
+
'stroke-width': number;
|
|
8
7
|
}>>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { FunctionalSvgIconComponent } from '../../../types/FunctionalSvgIconComponent';
|
|
2
2
|
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
3
|
|
|
4
|
-
export declare const HospitalIcon: FunctionalSvgIconComponent<Partial<SvgProps
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
borderColor: string;
|
|
4
|
+
export declare const HospitalIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-color': `#${string}`;
|
|
6
|
+
'stroke-width': number;
|
|
8
7
|
}>>;
|