@wikicasa-dev/svg-icons 0.1.4 → 0.1.6
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/ArchitecturalBarriersIcon.js +35 -0
- package/dist/BoxIcon.js +111 -0
- package/dist/CommunalGardenIcon.js +50 -0
- package/dist/ParkingIcon.js +78 -0
- package/dist/ParkingSpotIcon.js +28 -0
- package/dist/PoolIcon.js +59 -0
- package/dist/PrivateGardenIcon.js +39 -0
- package/dist/ReceptionIcon.js +38 -0
- package/dist/TennisIcon.js +36 -0
- package/dist/WikicasaIcon.js +26 -18
- package/dist/index.js +118 -100
- package/dist/lib/index.d.ts +9 -0
- package/dist/lib/svgIcons/ArchitecturalBarriersIcon.d.ts +7 -0
- package/dist/lib/svgIcons/BoxIcon.d.ts +7 -0
- package/dist/lib/svgIcons/CommunalGardenIcon.d.ts +7 -0
- package/dist/lib/svgIcons/ParkingIcon.d.ts +7 -0
- package/dist/lib/svgIcons/ParkingSpotIcon.d.ts +8 -0
- package/dist/lib/svgIcons/PoolIcon.d.ts +7 -0
- package/dist/lib/svgIcons/PrivateGardenIcon.d.ts +7 -0
- package/dist/lib/svgIcons/ReceptionIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TennisIcon.d.ts +7 -0
- package/dist/lib/svgIcons/WikicasaIcon.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as h } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const a = (r) => h({
|
|
4
|
+
props: r,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 16.569 17",
|
|
8
|
+
width: r.width ?? 16,
|
|
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
|
+
},
|
|
20
|
+
[
|
|
21
|
+
t("path", { d: "M1.448 1.029V13.15a2.582 2.582 0 0 0 2.581 2.581h11.407" }),
|
|
22
|
+
t("path", {
|
|
23
|
+
d: "M8.933 3.8v3.623a.942.942 0 0 0 .942.942h1.415a.943.943 0 0 1 .848.531l1.027 2.114"
|
|
24
|
+
}),
|
|
25
|
+
t("path", { d: "M8.933 5.887h2.116" }),
|
|
26
|
+
t("circle", { cx: "1.556", cy: "1.556", r: "1.556", transform: "translate(7.377 .683)" }),
|
|
27
|
+
t("path", { d: "M7.089 5.481A3.43 3.43 0 0 0 8.877 12.1 3.543 3.543 0 0 0 11 10.585" }),
|
|
28
|
+
t("path", { d: "M16.069 14.751V16.5" }),
|
|
29
|
+
t("path", { d: "M.5.5h1.913" })
|
|
30
|
+
]
|
|
31
|
+
)
|
|
32
|
+
});
|
|
33
|
+
export {
|
|
34
|
+
a as ArchitecturalBarriersIcon
|
|
35
|
+
};
|
package/dist/BoxIcon.js
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as a } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const r = (n) => a({
|
|
4
|
+
props: n,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 16 16"
|
|
8
|
+
},
|
|
9
|
+
childrenNodes: [
|
|
10
|
+
o(
|
|
11
|
+
"defs",
|
|
12
|
+
o(
|
|
13
|
+
"clipPath",
|
|
14
|
+
o("path", { fill: "none", stroke: n["stroke-color"] ?? "#222", d: "M0 0h16v16H0z" })
|
|
15
|
+
)
|
|
16
|
+
),
|
|
17
|
+
o(
|
|
18
|
+
"g",
|
|
19
|
+
{ stroke: n["stroke-color"] ?? "#222", "stroke-width": n["stroke-width"] ?? 1 },
|
|
20
|
+
[
|
|
21
|
+
o("path", {
|
|
22
|
+
fill: "#fff",
|
|
23
|
+
d: "M10.967 5.418H4.904a1.927 1.927 0 0 0-1.868 1.453l-.6 2.343h10.995l-.595-2.343a1.929 1.929 0 0 0-1.869-1.453"
|
|
24
|
+
}),
|
|
25
|
+
o("path", {
|
|
26
|
+
fill: "none",
|
|
27
|
+
"stroke-linecap": "round",
|
|
28
|
+
"stroke-linejoin": "round",
|
|
29
|
+
d: "M10.967 5.418H4.904a1.927 1.927 0 0 0-1.868 1.453l-.6 2.343h10.995l-.595-2.343a1.929 1.929 0 0 0-1.869-1.453Z"
|
|
30
|
+
}),
|
|
31
|
+
o("path", {
|
|
32
|
+
fill: "#fff",
|
|
33
|
+
d: "M12.541 9.014H3.33a1.882 1.882 0 0 0-1.882 1.882v2.8h12.975v-2.8a1.882 1.882 0 0 0-1.882-1.882"
|
|
34
|
+
}),
|
|
35
|
+
o("path", {
|
|
36
|
+
fill: "none",
|
|
37
|
+
"stroke-linecap": "round",
|
|
38
|
+
"stroke-linejoin": "round",
|
|
39
|
+
d: "M12.541 9.014H3.33a1.882 1.882 0 0 0-1.882 1.882v2.8h12.975v-2.8a1.882 1.882 0 0 0-1.882-1.882Z"
|
|
40
|
+
}),
|
|
41
|
+
o("path", {
|
|
42
|
+
fill: "none",
|
|
43
|
+
"stroke-linecap": "round",
|
|
44
|
+
"stroke-linejoin": "round",
|
|
45
|
+
d: "M.471 7.378v-.827a1.942 1.942 0 0 1 .785-1.567L6.903.832a1.847 1.847 0 0 1 2.195 0l5.647 4.15a1.944 1.944 0 0 1 .785 1.567v2.822"
|
|
46
|
+
}),
|
|
47
|
+
o("path", {
|
|
48
|
+
fill: "#fff",
|
|
49
|
+
d: "M1.641 13.698h1.447a.192.192 0 0 1 .192.193v1.446a.192.192 0 0 1-.192.193H1.641a.193.193 0 0 1-.193-.193v-1.446a.193.193 0 0 1 .193-.193"
|
|
50
|
+
}),
|
|
51
|
+
o("path", {
|
|
52
|
+
fill: "none",
|
|
53
|
+
"stroke-linecap": "round",
|
|
54
|
+
"stroke-linejoin": "round",
|
|
55
|
+
d: "M1.653 13.698h1.423a.2.2 0 0 1 .2.2v1.428a.2.2 0 0 1-.2.2H1.653a.205.205 0 0 1-.205-.201v-1.422a.205.205 0 0 1 .205-.205Z"
|
|
56
|
+
}),
|
|
57
|
+
o("path", {
|
|
58
|
+
fill: "#fff",
|
|
59
|
+
d: "M12.784 13.698h1.447a.192.192 0 0 1 .192.193v1.446a.192.192 0 0 1-.192.193h-1.447a.193.193 0 0 1-.193-.193v-1.446a.193.193 0 0 1 .193-.193"
|
|
60
|
+
}),
|
|
61
|
+
o("path", {
|
|
62
|
+
fill: "none",
|
|
63
|
+
"stroke-linecap": "round",
|
|
64
|
+
"stroke-linejoin": "round",
|
|
65
|
+
d: "M12.791 13.698h1.428a.2.2 0 0 1 .2.2v1.428a.2.2 0 0 1-.2.2h-1.428a.2.2 0 0 1-.2-.2v-1.428a.2.2 0 0 1 .2-.2Z"
|
|
66
|
+
}),
|
|
67
|
+
o("path", {
|
|
68
|
+
fill: "#fff",
|
|
69
|
+
d: "M3.627 11.2a.434.434 0 1 1-.448.437v-.006a.44.44 0 0 1 .448-.431"
|
|
70
|
+
}),
|
|
71
|
+
o("path", {
|
|
72
|
+
fill: "none",
|
|
73
|
+
"stroke-linecap": "round",
|
|
74
|
+
"stroke-linejoin": "round",
|
|
75
|
+
d: "M3.627 11.2a.434.434 0 1 1-.448.437v-.006a.44.44 0 0 1 .448-.431Z"
|
|
76
|
+
}),
|
|
77
|
+
o("path", {
|
|
78
|
+
fill: "#fff",
|
|
79
|
+
d: "M12.239 11.2a.434.434 0 1 1-.448.437v-.006a.44.44 0 0 1 .448-.431"
|
|
80
|
+
}),
|
|
81
|
+
o("path", {
|
|
82
|
+
fill: "none",
|
|
83
|
+
"stroke-linecap": "round",
|
|
84
|
+
"stroke-linejoin": "round",
|
|
85
|
+
d: "M12.239 11.2a.434.434 0 1 1-.448.437v-.006a.44.44 0 0 1 .448-.431Z"
|
|
86
|
+
}),
|
|
87
|
+
o("path", {
|
|
88
|
+
fill: "none",
|
|
89
|
+
"stroke-linecap": "round",
|
|
90
|
+
"stroke-linejoin": "round",
|
|
91
|
+
d: "M5.866 11.637h4.039"
|
|
92
|
+
}),
|
|
93
|
+
o("path", {
|
|
94
|
+
fill: "none",
|
|
95
|
+
"stroke-linecap": "round",
|
|
96
|
+
"stroke-linejoin": "round",
|
|
97
|
+
d: "M13.245 8.082h1.006"
|
|
98
|
+
}),
|
|
99
|
+
o("path", {
|
|
100
|
+
fill: "none",
|
|
101
|
+
"stroke-linecap": "round",
|
|
102
|
+
"stroke-linejoin": "round",
|
|
103
|
+
d: "M1.703 8.082h1.006"
|
|
104
|
+
})
|
|
105
|
+
]
|
|
106
|
+
)
|
|
107
|
+
]
|
|
108
|
+
});
|
|
109
|
+
export {
|
|
110
|
+
r as BoxIcon
|
|
111
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const a = (t) => e({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 17.035 17",
|
|
8
|
+
width: t.width ?? 17,
|
|
9
|
+
height: t.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: [
|
|
12
|
+
o("path", {
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
15
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
16
|
+
"stroke-linecap": "round",
|
|
17
|
+
"stroke-linejoin": "round",
|
|
18
|
+
d: "M9.382 11.394V9.038"
|
|
19
|
+
}),
|
|
20
|
+
o(
|
|
21
|
+
"g",
|
|
22
|
+
o(
|
|
23
|
+
"g",
|
|
24
|
+
{
|
|
25
|
+
fill: "none",
|
|
26
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
27
|
+
"stroke-linecap": "round",
|
|
28
|
+
"stroke-linejoin": "round"
|
|
29
|
+
},
|
|
30
|
+
[
|
|
31
|
+
o("path", {
|
|
32
|
+
d: "M9.382 9.078 9.673 7.2a2.274 2.274 0 0 1 2.594-1.9l1.885.291-.292 1.882a2.274 2.274 0 0 1-2.594 1.9Z"
|
|
33
|
+
}),
|
|
34
|
+
o("path", {
|
|
35
|
+
d: "m4.614 5.591.291 1.882a2.274 2.274 0 0 0 2.594 1.9l1.885-.291L9.09 7.2a2.274 2.274 0 0 0-2.594-1.9Z"
|
|
36
|
+
}),
|
|
37
|
+
o("path", {
|
|
38
|
+
d: "M9.382 6.4 8.034 5.056a2.267 2.267 0 0 1 0-3.21L9.382.5l1.348 1.346a2.267 2.267 0 0 1 0 3.21Z"
|
|
39
|
+
}),
|
|
40
|
+
o("path", {
|
|
41
|
+
d: "M11.914 11.513a4.907 4.907 0 0 0-2.554.717 5.317 5.317 0 0 0-7.752.408 5.805 5.805 0 0 0-.98 1.605 1.678 1.678 0 0 0 1.66 2.257H14.72a1.653 1.653 0 0 0 1.6-2.376 5.084 5.084 0 0 0-4.406-2.611Z"
|
|
42
|
+
})
|
|
43
|
+
]
|
|
44
|
+
)
|
|
45
|
+
)
|
|
46
|
+
]
|
|
47
|
+
});
|
|
48
|
+
export {
|
|
49
|
+
a as CommunalGardenIcon
|
|
50
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { h as n } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const r = (o) => e({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 21.133 17",
|
|
8
|
+
width: o.width ?? 21,
|
|
9
|
+
height: o.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: n(
|
|
12
|
+
"g",
|
|
13
|
+
{ stroke: o["stroke-color"] ?? "#222", "stroke-width": o["stroke-width"] ?? 1.2 },
|
|
14
|
+
[
|
|
15
|
+
n("path", {
|
|
16
|
+
fill: "none",
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round",
|
|
19
|
+
d: "M15.269.5H5.862a2.992 2.992 0 0 0-2.9 2.258L2.04 6.395h17.052l-.923-3.637A2.992 2.992 0 0 0 15.269.5Z"
|
|
20
|
+
}),
|
|
21
|
+
n("path", {
|
|
22
|
+
fill: "none",
|
|
23
|
+
"stroke-linecap": "round",
|
|
24
|
+
"stroke-linejoin": "round",
|
|
25
|
+
d: "M18.633 6.386H2.5a2 2 0 0 0-2 2v5.272h20.133v-5.27a2 2 0 0 0-2-2.002Z"
|
|
26
|
+
}),
|
|
27
|
+
n("path", {
|
|
28
|
+
fill: "none",
|
|
29
|
+
"stroke-linecap": "round",
|
|
30
|
+
"stroke-linejoin": "round",
|
|
31
|
+
d: "M.8 13.656h2.245a.3.3 0 0 1 .3.3v1.564a.98.98 0 0 1-.981.981h-.883a.98.98 0 0 1-.981-.982v-1.564a.3.3 0 0 1 .3-.299Z"
|
|
32
|
+
}),
|
|
33
|
+
n("path", {
|
|
34
|
+
fill: "none",
|
|
35
|
+
"stroke-linecap": "round",
|
|
36
|
+
"stroke-linejoin": "round",
|
|
37
|
+
d: "M18.088 13.656h2.246a.3.3 0 0 1 .3.3v1.564a.98.98 0 0 1-.981.981h-.883a.98.98 0 0 1-.981-.981v-1.565a.3.3 0 0 1 .299-.299Z"
|
|
38
|
+
}),
|
|
39
|
+
n("path", {
|
|
40
|
+
fill: "#0e1d34",
|
|
41
|
+
d: "M3.884 9.786a.674.674 0 1 1-.7.678v-.008a.683.683 0 0 1 .7-.67"
|
|
42
|
+
}),
|
|
43
|
+
n("path", {
|
|
44
|
+
fill: "none",
|
|
45
|
+
d: "M3.884 9.786a.674.674 0 1 1-.7.678v-.008a.683.683 0 0 1 .7-.67Z"
|
|
46
|
+
}),
|
|
47
|
+
n("path", {
|
|
48
|
+
fill: "#0e1d34",
|
|
49
|
+
d: "M17.243 9.786a.674.674 0 1 1-.695.678v-.008a.682.682 0 0 1 .695-.67"
|
|
50
|
+
}),
|
|
51
|
+
n("path", {
|
|
52
|
+
fill: "none",
|
|
53
|
+
d: "M17.243 9.786a.674.674 0 1 1-.695.678v-.008a.682.682 0 0 1 .695-.67Z"
|
|
54
|
+
}),
|
|
55
|
+
n("path", {
|
|
56
|
+
fill: "none",
|
|
57
|
+
"stroke-linecap": "round",
|
|
58
|
+
"stroke-linejoin": "round",
|
|
59
|
+
d: "M7.352 10.46h6.271"
|
|
60
|
+
}),
|
|
61
|
+
n("path", {
|
|
62
|
+
fill: "none",
|
|
63
|
+
"stroke-linecap": "round",
|
|
64
|
+
"stroke-linejoin": "round",
|
|
65
|
+
d: "M18.804 4.632h1.562"
|
|
66
|
+
}),
|
|
67
|
+
n("path", {
|
|
68
|
+
fill: "none",
|
|
69
|
+
"stroke-linecap": "round",
|
|
70
|
+
"stroke-linejoin": "round",
|
|
71
|
+
d: "M.895 4.632h1.562"
|
|
72
|
+
})
|
|
73
|
+
]
|
|
74
|
+
)
|
|
75
|
+
});
|
|
76
|
+
export {
|
|
77
|
+
r as ParkingIcon
|
|
78
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const n = (t) => e({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
7
|
+
viewBox: "0 0 15.094 17.157",
|
|
8
|
+
height: t.height ?? 15,
|
|
9
|
+
width: t.width ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: o("g", [
|
|
12
|
+
o("path", {
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
15
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
16
|
+
"stroke-linecap": "round",
|
|
17
|
+
"stroke-linejoin": "round",
|
|
18
|
+
d: "M6.06 15.874a2.231 2.231 0 0 0 3.127-.025c1.112-1.106 2.224-2.211 3.317-3.334a6.881 6.881 0 0 0 1.919-6.314 7 7 0 0 0-6.969-5.7 5.534 5.534 0 0 0-.9.061A7.06 7.06 0 0 0 .52 8.05a6.734 6.734 0 0 0 1.921 4.325Z"
|
|
19
|
+
}),
|
|
20
|
+
o("path", {
|
|
21
|
+
fill: t.color ?? "#0e1d34",
|
|
22
|
+
d: "M8.13 8.819H7.072v1.668a.854.854 0 0 1-1.707 0v-5.3a.854.854 0 0 1 .854-.86H8.13c1.717 0 2.576.968 2.576 2.256 0 1.159-.789 2.236-2.576 2.236M8 7.462c.68 0 .968-.34.968-.879S8.679 5.705 8 5.705h-.928v1.757Z"
|
|
23
|
+
})
|
|
24
|
+
])
|
|
25
|
+
});
|
|
26
|
+
export {
|
|
27
|
+
n as ParkingSpotIcon
|
|
28
|
+
};
|
package/dist/PoolIcon.js
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const n = (o) => e({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 18.643 17.137",
|
|
8
|
+
width: o.width ?? 18,
|
|
9
|
+
height: o.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: [
|
|
12
|
+
t("path", {
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
15
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
16
|
+
"stroke-linecap": "round",
|
|
17
|
+
"stroke-linejoin": "round",
|
|
18
|
+
d: "M8.068 10.283h8.562"
|
|
19
|
+
}),
|
|
20
|
+
t("path", {
|
|
21
|
+
fill: "none",
|
|
22
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
23
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
24
|
+
"stroke-linecap": "round",
|
|
25
|
+
"stroke-linejoin": "round",
|
|
26
|
+
d: "M8.068 5.956h8.562"
|
|
27
|
+
}),
|
|
28
|
+
t(
|
|
29
|
+
"g",
|
|
30
|
+
{
|
|
31
|
+
fill: "none",
|
|
32
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
33
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
34
|
+
"stroke-linecap": "round",
|
|
35
|
+
"stroke-linejoin": "round"
|
|
36
|
+
},
|
|
37
|
+
[
|
|
38
|
+
t("path", {
|
|
39
|
+
d: "M7.82 12.93V2.785A2.149 2.149 0 0 0 4.541.958a2.164 2.164 0 0 0-.535.47l-.944 1.159"
|
|
40
|
+
}),
|
|
41
|
+
t("path", { d: "M17.072 12.93V2.785a2.149 2.149 0 0 0-3.815-1.357l-.944 1.159" }),
|
|
42
|
+
t("path", { d: "M1.571 2.932h2.982" }),
|
|
43
|
+
t("path", { d: "M10.823 2.932h2.982" }),
|
|
44
|
+
t("path", {
|
|
45
|
+
d: "M.5 14.807c.823 0 .823 1.83 1.645 1.83s.826-1.83 1.651-1.83.825 1.83 1.65 1.83"
|
|
46
|
+
}),
|
|
47
|
+
t("path", {
|
|
48
|
+
d: "M6.849 14.807c.822 0 .822 1.83 1.645 1.83s.826-1.83 1.651-1.83.825 1.83 1.65 1.83"
|
|
49
|
+
}),
|
|
50
|
+
t("path", {
|
|
51
|
+
d: "M13.2 14.807c.822 0 .822 1.83 1.645 1.83s.826-1.83 1.651-1.83.825 1.83 1.65 1.83"
|
|
52
|
+
})
|
|
53
|
+
]
|
|
54
|
+
)
|
|
55
|
+
]
|
|
56
|
+
});
|
|
57
|
+
export {
|
|
58
|
+
n as PoolIcon
|
|
59
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const h = (o) => e({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 9.059 17",
|
|
8
|
+
width: o.width ?? 9,
|
|
9
|
+
height: o.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
16
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round"
|
|
19
|
+
},
|
|
20
|
+
[
|
|
21
|
+
t("path", {
|
|
22
|
+
d: "M6.152 16.5H2.905a1.673 1.673 0 0 1-1.636-1.323l-.726-3.412a1.672 1.672 0 0 1 1.635-2.021h4.7a1.672 1.672 0 0 1 1.635 2.021l-.729 3.412A1.671 1.671 0 0 1 6.152 16.5Z"
|
|
23
|
+
}),
|
|
24
|
+
t("path", { d: "M4.529 9.744V7.581" }),
|
|
25
|
+
t("path", {
|
|
26
|
+
d: "m4.529 7.614.241-1.56a1.882 1.882 0 0 1 2.148-1.573l1.561.241-.242 1.561a1.882 1.882 0 0 1-2.148 1.572Z"
|
|
27
|
+
}),
|
|
28
|
+
t("path", {
|
|
29
|
+
d: "m.58 4.722.241 1.56a1.882 1.882 0 0 0 2.148 1.573l1.56-.241-.241-1.561A1.882 1.882 0 0 0 2.14 4.481Z"
|
|
30
|
+
}),
|
|
31
|
+
t("path", {
|
|
32
|
+
d: "M4.529 5.395 3.412 4.278a1.882 1.882 0 0 1 0-2.662L4.529.5l1.117 1.116a1.882 1.882 0 0 1 0 2.662Z"
|
|
33
|
+
})
|
|
34
|
+
]
|
|
35
|
+
)
|
|
36
|
+
});
|
|
37
|
+
export {
|
|
38
|
+
h as PrivateGardenIcon
|
|
39
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const a = (o) => e({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 21.033 17",
|
|
8
|
+
width: o.width ?? 21,
|
|
9
|
+
height: o.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
16
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round"
|
|
19
|
+
},
|
|
20
|
+
[
|
|
21
|
+
t("path", {
|
|
22
|
+
d: "M1.531 13.586H19.5a1.1 1.1 0 0 1 1.031 1.167v.58A1.105 1.105 0 0 1 19.5 16.5H1.531A1.106 1.106 0 0 1 .5 15.333v-.58a1.105 1.105 0 0 1 1.031-1.167Z"
|
|
23
|
+
}),
|
|
24
|
+
t("circle", { cx: "2.992", cy: "2.992", r: "2.992", transform: "translate(11.083 .5)" }),
|
|
25
|
+
t("path", {
|
|
26
|
+
d: "M12.19 6.486h3.768a3.5 3.5 0 0 1 3.5 3.5v3.6H8.689v-3.6a3.5 3.5 0 0 1 3.501-3.5Z"
|
|
27
|
+
}),
|
|
28
|
+
t("path", {
|
|
29
|
+
d: "M3.028 10.593h1.525a1.335 1.335 0 0 1 1.341 1.329v1.523h-4.2v-1.517a1.335 1.335 0 0 1 1.334-1.335Z"
|
|
30
|
+
}),
|
|
31
|
+
t("path", { d: "M3.835 9.838V8.712" }),
|
|
32
|
+
t("path", { d: "M2.736 8.437h2.11" })
|
|
33
|
+
]
|
|
34
|
+
)
|
|
35
|
+
});
|
|
36
|
+
export {
|
|
37
|
+
a as ReceptionIcon
|
|
38
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const i = (t) => e({
|
|
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: o(
|
|
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
|
+
},
|
|
20
|
+
[
|
|
21
|
+
o("path", { d: "M8.5.5a8 8 0 1 1-8 8 8 8 0 0 1 8-8Z" }),
|
|
22
|
+
o("path", {
|
|
23
|
+
d: "M7.793 1.209c0-.227.016-.451.034-.674A7.986 7.986 0 0 0 .53 7.921c.193-.015.384-.03.581-.03a8 8 0 0 1 8 8c0 .2-.016.388-.029.581a7.987 7.987 0 0 0 7.385-7.3 7.832 7.832 0 0 1-.673.035 8 8 0 0 1-8.001-7.998Z"
|
|
24
|
+
}),
|
|
25
|
+
o("path", {
|
|
26
|
+
d: "M1.11 7.89c-.2 0-.388.016-.581.03C.515 8.112.5 8.3.5 8.5a8 8 0 0 0 8 8c.2 0 .389-.016.582-.029.013-.193.028-.385.028-.582a8 8 0 0 0-8-7.999Z"
|
|
27
|
+
}),
|
|
28
|
+
o("path", {
|
|
29
|
+
d: "M8.5.5c-.227 0-.451.016-.673.034a7.836 7.836 0 0 0-.035.675 8 8 0 0 0 8 8c.222 0 .451-.015.673-.034.02-.222.035-.444.035-.675a8 8 0 0 0-8-8Z"
|
|
30
|
+
})
|
|
31
|
+
]
|
|
32
|
+
)
|
|
33
|
+
});
|
|
34
|
+
export {
|
|
35
|
+
i as TennisIcon
|
|
36
|
+
};
|
package/dist/WikicasaIcon.js
CHANGED
|
@@ -1,23 +1,31 @@
|
|
|
1
|
-
import { h as
|
|
2
|
-
import { s as
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { h as l } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const r = (c) => (console.log({
|
|
4
|
+
stroke: c["border-color"] ?? "#2b5dff",
|
|
5
|
+
"stroke-width": c["stroke-width"] ?? 0.25
|
|
6
|
+
}), o({
|
|
7
|
+
props: c,
|
|
8
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 340 340" },
|
|
6
9
|
childrenNodes: [
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
10
|
+
l("g", [
|
|
11
|
+
l("path", {
|
|
12
|
+
fill: c["bg-color"] ?? "none",
|
|
13
|
+
d: "M320.02,13.92v243.16c0,6.49-5.26,11.75-11.75,11.75h-110.76l-32.69,46.5c-2.34,3.33-7.27,3.33-9.61,0l-32.64-46.49H11.75c-6.49,0-11.75-5.26-11.75-11.75V13.92C0,7.43,5.26,2.17,11.75,2.17h296.52c6.49,0,11.75,5.26,11.75,11.75ZM291.28,51.36c.58-1.87-.82-3.78-2.79-3.78h-41.15c-1.19,0-2.24.79-2.57,1.93l-31.32,105.89c-.42,1.39-2.38,1.4-2.8,0l-32.14-105.76c-.37-1.23-1.51-2.07-2.79-2.07h-31.75c-1.27,0-2.39.82-2.78,2.02l-34.33,105.83c-.45,1.37-2.42,1.33-2.8-.07l-28.9-105.79c-.32-1.17-1.38-1.98-2.59-1.98H31.39c-1.94,0-3.34,1.86-2.8,3.73l53.86,173.2c.36,1.24,1.5,2.1,2.8,2.1h41.85c1.15,0,2.17-.73,2.54-1.82l28.8-94.86c.46-1.34,2.37-1.31,2.78.05l28.79,94.73c.35,1.14,1.39,1.91,2.57,1.91h42.06c1.28,0,2.41-.83,2.79-2.05l53.85-173.21h0Z"
|
|
14
|
+
}),
|
|
15
|
+
l("path", {
|
|
16
|
+
fill: c.color ?? "#222",
|
|
17
|
+
d: "M288.49,47.58c1.97,0,3.37,1.91,2.79,3.78h0s-53.85,173.22-53.85,173.22c-.38,1.22-1.51,2.05-2.79,2.05h-42.06c-1.18,0-2.22-.77-2.57-1.91l-28.79-94.73c-.41-1.36-2.32-1.39-2.78-.05l-28.8,94.86c-.37,1.09-1.39,1.82-2.54,1.82h-41.85c-1.3,0-2.44-.86-2.8-2.1L28.59,51.32c-.54-1.87.86-3.73,2.8-3.73h41.18c1.21,0,2.27.81,2.59,1.98l28.9,105.79c.38,1.4,2.35,1.44,2.8.07l34.33-105.83c.39-1.2,1.51-2.02,2.78-2.02h31.75c1.28,0,2.42.84,2.79,2.07l32.14,105.76c.42,1.39,2.38,1.38,2.8,0l31.32-105.89c.33-1.14,1.38-1.93,2.57-1.93h41.15Z"
|
|
18
|
+
})
|
|
19
|
+
]),
|
|
20
|
+
l("path", {
|
|
21
|
+
fill: "none",
|
|
22
|
+
stroke: c["border-color"] ?? "#222",
|
|
23
|
+
"stroke-miterlimit": "10",
|
|
24
|
+
"stroke-width": (c["stroke-width"] ?? 0) * 10,
|
|
25
|
+
d: "M308.25,2.17H11.75C5.26,2.17,0,7.43,0,13.92v243.17c0,6.49,5.26,11.75,11.75,11.75h110.82l32.64,46.49c2.34,3.33,7.27,3.33,9.61,0l32.69-46.5h110.76c6.49,0,11.75-5.26,11.75-11.75V13.92c0-6.49-5.26-11.75-11.75-11.75h-.02Z"
|
|
18
26
|
})
|
|
19
27
|
]
|
|
20
|
-
});
|
|
28
|
+
}));
|
|
21
29
|
export {
|
|
22
|
-
|
|
30
|
+
r as WikicasaIcon
|
|
23
31
|
};
|
package/dist/index.js
CHANGED
|
@@ -8,14 +8,14 @@ import { CheckInactiveIcon as l } from "./CheckInactiveIcon.js";
|
|
|
8
8
|
import { CloseIcon as g } from "./CloseIcon.js";
|
|
9
9
|
import { DashboardIcon as u } from "./DashboardIcon.js";
|
|
10
10
|
import { DeleteIcon as W } from "./DeleteIcon.js";
|
|
11
|
-
import { DrawIcon as
|
|
12
|
-
import { EditIcon as
|
|
11
|
+
import { DrawIcon as S } from "./DrawIcon.js";
|
|
12
|
+
import { EditIcon as w } from "./EditIcon.js";
|
|
13
13
|
import { GermanyFlagIcon as N } 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
|
|
15
|
+
import { HidePswIcon as v } from "./HidePswIcon.js";
|
|
16
|
+
import { HomeIcon as D } from "./HomeIcon.js";
|
|
17
|
+
import { ItalyFlagIcon as R } from "./ItalyFlagIcon.js";
|
|
18
|
+
import { LayersIcon as G } from "./LayersIcon.js";
|
|
19
19
|
import { LocationIcon as T } from "./LocationIcon.js";
|
|
20
20
|
import { LogoutIcon as U } from "./LogoutIcon.js";
|
|
21
21
|
import { MailIcon as E } from "./MailIcon.js";
|
|
@@ -34,16 +34,16 @@ import { RequestIcon as io } from "./RequestIcon.js";
|
|
|
34
34
|
import { SearchIcon as so } from "./SearchIcon.js";
|
|
35
35
|
import { ShareIcon as ko } from "./ShareIcon.js";
|
|
36
36
|
import { SuitcaseIcon as ho } from "./SuitcaseIcon.js";
|
|
37
|
-
import { TieIcon as
|
|
38
|
-
import { TourIcon as
|
|
37
|
+
import { TieIcon as Po } from "./TieIcon.js";
|
|
38
|
+
import { TourIcon as Ao } from "./TourIcon.js";
|
|
39
39
|
import { UkFlagIcon as Co } from "./UkFlagIcon.js";
|
|
40
40
|
import { ValuationIcon as bo } from "./ValuationIcon.js";
|
|
41
41
|
import { VideoIcon as Lo } from "./VideoIcon.js";
|
|
42
|
-
import { ViewPswIcon as
|
|
43
|
-
import { WalletIcon as
|
|
44
|
-
import { WarningIcon as
|
|
45
|
-
import { WarningIconRounded as
|
|
46
|
-
import { WkAppIcon as
|
|
42
|
+
import { ViewPswIcon as Bo } from "./ViewPswIcon.js";
|
|
43
|
+
import { WalletIcon as Ho } from "./WalletIcon.js";
|
|
44
|
+
import { WarningIcon as Vo } from "./WarningIcon.js";
|
|
45
|
+
import { WarningIconRounded as Mo } from "./WarningIconRounded.js";
|
|
46
|
+
import { WkAppIcon as Fo } 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";
|
|
@@ -61,16 +61,16 @@ import { PinShadowedIcon as dr } from "./PinShadowedIcon.js";
|
|
|
61
61
|
import { HouseValuationIcon as sr } from "./HouseValuationIcon.js";
|
|
62
62
|
import { CheckRoundedIcon as kr } from "./CheckRoundedIcon.js";
|
|
63
63
|
import { DownloadIcon as hr } from "./DownloadIcon.js";
|
|
64
|
-
import { SquareMeterIcon as
|
|
65
|
-
import { PriceIcon as
|
|
64
|
+
import { SquareMeterIcon as Pr } from "./SquareMeterIcon.js";
|
|
65
|
+
import { PriceIcon as Ar } from "./PriceIcon.js";
|
|
66
66
|
import { DemandIcon as Cr } from "./DemandIcon.js";
|
|
67
67
|
import { TransactionIcon as br } from "./TransactionIcon.js";
|
|
68
68
|
import { InfoIcon as Lr } from "./InfoIcon.js";
|
|
69
|
-
import { CheckIcon as
|
|
70
|
-
import { ExternalLinkIcon as
|
|
71
|
-
import { BathroomIcon as
|
|
72
|
-
import { EnergyClassIcon as
|
|
73
|
-
import { AuctionHammerIcon as
|
|
69
|
+
import { CheckIcon as Br } from "./CheckIcon.js";
|
|
70
|
+
import { ExternalLinkIcon as Hr } from "./ExternalLinkIcon.js";
|
|
71
|
+
import { BathroomIcon as Vr } from "./BathroomIcon.js";
|
|
72
|
+
import { EnergyClassIcon as Mr } from "./EnergyClassIcon.js";
|
|
73
|
+
import { AuctionHammerIcon as Fr } 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";
|
|
@@ -84,86 +84,98 @@ import { PartnershipIcon as me } from "./PartnershipIcon.js";
|
|
|
84
84
|
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
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
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 {
|
|
87
|
+
import { ParkingSpotIcon as de } from "./ParkingSpotIcon.js";
|
|
88
|
+
import { BoxIcon as se } from "./BoxIcon.js";
|
|
89
|
+
import { ParkingIcon as ke } from "./ParkingIcon.js";
|
|
90
|
+
import { PoolIcon as he } from "./PoolIcon.js";
|
|
91
|
+
import { PrivateGardenIcon as Pe } from "./PrivateGardenIcon.js";
|
|
92
|
+
import { CommunalGardenIcon as Ae } from "./CommunalGardenIcon.js";
|
|
93
|
+
import { TennisIcon as Ce } from "./TennisIcon.js";
|
|
94
|
+
import { ReceptionIcon as be } from "./ReceptionIcon.js";
|
|
95
|
+
import { ArchitecturalBarriersIcon as Le } from "./ArchitecturalBarriersIcon.js";
|
|
96
|
+
import { BankIcon as Be } from "./BankIcon.js";
|
|
97
|
+
import { BusIcon as He } from "./BusIcon.js";
|
|
98
|
+
import { CartIcon as Ve } from "./CartIcon.js";
|
|
99
|
+
import { ChargeIcon as Me } from "./Charge.js";
|
|
100
|
+
import { HospitalIcon as Fe } from "./HospitalIcon.js";
|
|
101
|
+
import { PharmacyIcon as qe } from "./PharmacyIcon.js";
|
|
102
|
+
import { PostIcon as ze } from "./PostIcon.js";
|
|
103
|
+
import { SchoolIcon as Qe } from "./SchoolIcon.js";
|
|
104
|
+
import { SubwayIcon as je } from "./SubwayIcon.js";
|
|
105
|
+
import { TrainIcon as Oe } from "./TrainIcon.js";
|
|
106
|
+
import { TrainAltIcon as Ze } from "./TrainAltIcon.js";
|
|
107
|
+
import { WikicasaDatiLogoIcon as $e } from "./WikicasaDatiLogo.js";
|
|
108
|
+
import { WikicasaLogoIcon as rt } from "./WikicasaLogo.js";
|
|
109
|
+
import { WikiNerdImg as tt } from "./WikiNerd.js";
|
|
110
|
+
import { WikiNerdValutaMobileImg as mt } from "./WikiNerdValutaMobile.js";
|
|
111
|
+
import { WikiNerdMercatoImg as pt } from "./WikiNerdMercatoHome.js";
|
|
112
|
+
import { WikiNerdValutaDesktopImg as ft } from "./WikiNerdValutaDesktop.js";
|
|
113
|
+
import { WikiNerdDownloadAppImg as at } from "./WikiNerdDownloadApp.js";
|
|
114
|
+
import { WikicasaStudioLogoIcon as dt } from "./WikicasaStudioLogo.js";
|
|
115
|
+
import { GenericUserWikiAvatarImg as st } from "./GenericUserWikiAvatar.js";
|
|
116
|
+
import { ShieldImg as kt } from "./ShieldImg.js";
|
|
117
|
+
import { SnapImg as ht } from "./SnapImg.js";
|
|
118
|
+
import { StopWatchImg as Pt } from "./StopWatchImg.js";
|
|
119
|
+
import { CheckImg as At } from "./CheckImg.js";
|
|
120
|
+
import { IareeImg as Ct } from "./IareeImg.js";
|
|
121
|
+
import { WikiNerdAnalyzeImg as bt } from "./WikiNerdAnalyzeImg.js";
|
|
122
|
+
import { WikiNerdValuationNotAvailableImg as Lt } from "./WikiNerdValuationNotAvailableImg.js";
|
|
123
|
+
import { InsightImg as Bt } from "./InsightImg.js";
|
|
124
|
+
import { GenericUserWikiAvatarSquaredImg as Ht } from "./GenericUserWikiAvatarSquaredImg.js";
|
|
125
|
+
import { WikiNoSavedSearchesImg as Vt } from "./WikiNoSavedSearches.js";
|
|
117
126
|
export {
|
|
118
127
|
e as AboutUsIcon,
|
|
119
128
|
qo as AnalyticsIcon,
|
|
129
|
+
Le as ArchitecturalBarriersIcon,
|
|
120
130
|
n as ArrowIcon,
|
|
121
131
|
fr as ArrowIndicatorIcon,
|
|
122
|
-
|
|
123
|
-
|
|
132
|
+
Fr as AuctionHammerIcon,
|
|
133
|
+
Be as BankIcon,
|
|
124
134
|
c as BarChartIcon,
|
|
125
|
-
|
|
135
|
+
Vr as BathroomIcon,
|
|
126
136
|
I as BellIcon,
|
|
137
|
+
se as BoxIcon,
|
|
127
138
|
x as BulbIcon,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
139
|
+
He as BusIcon,
|
|
140
|
+
Ve as CartIcon,
|
|
141
|
+
Me as ChargeIcon,
|
|
131
142
|
i as CheckActiveIcon,
|
|
132
|
-
|
|
133
|
-
|
|
143
|
+
Br as CheckIcon,
|
|
144
|
+
At as CheckImg,
|
|
134
145
|
l as CheckInactiveIcon,
|
|
135
146
|
kr as CheckRoundedIcon,
|
|
136
147
|
g as CloseIcon,
|
|
148
|
+
Ae as CommunalGardenIcon,
|
|
137
149
|
Or as CredipassIcon,
|
|
138
150
|
u as DashboardIcon,
|
|
139
151
|
W as DeleteIcon,
|
|
140
152
|
Cr as DemandIcon,
|
|
141
153
|
hr as DownloadIcon,
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
154
|
+
S as DrawIcon,
|
|
155
|
+
w as EditIcon,
|
|
156
|
+
Mr as EnergyClassIcon,
|
|
157
|
+
Hr as ExternalLinkIcon,
|
|
146
158
|
Oo as FacebookIcon,
|
|
147
159
|
jr as FacebookRoundedIcon,
|
|
148
160
|
Qo as GearIcon,
|
|
149
|
-
|
|
150
|
-
|
|
161
|
+
st as GenericUserWikiAvatarImg,
|
|
162
|
+
Ht as GenericUserWikiAvatarSquaredImg,
|
|
151
163
|
N as GermanyFlagIcon,
|
|
152
164
|
mr as GoogleIcon,
|
|
153
165
|
tr as HamburgerMenuIcon,
|
|
154
166
|
y as HeartIcon,
|
|
155
167
|
Zr as HeartShadowedIcon,
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
168
|
+
v as HidePswIcon,
|
|
169
|
+
D as HomeIcon,
|
|
170
|
+
Fe as HospitalIcon,
|
|
159
171
|
sr as HouseValuationIcon,
|
|
160
|
-
|
|
172
|
+
Ct as IareeImg,
|
|
161
173
|
Lr as InfoIcon,
|
|
162
|
-
|
|
174
|
+
Bt as InsightImg,
|
|
163
175
|
$o as InstagramIcon,
|
|
164
|
-
|
|
176
|
+
R as ItalyFlagIcon,
|
|
165
177
|
fe as KeyIcon,
|
|
166
|
-
|
|
178
|
+
G as LayersIcon,
|
|
167
179
|
Zo as LinkedinIcon,
|
|
168
180
|
T as LocationIcon,
|
|
169
181
|
pe as LockIcon,
|
|
@@ -173,62 +185,68 @@ export {
|
|
|
173
185
|
ae as MegaphoneIcon,
|
|
174
186
|
Y as NewsIcon,
|
|
175
187
|
J as NotesIcon,
|
|
188
|
+
ke as ParkingIcon,
|
|
189
|
+
de as ParkingSpotIcon,
|
|
176
190
|
me as PartnershipIcon,
|
|
177
|
-
|
|
191
|
+
qe as PharmacyIcon,
|
|
178
192
|
X as PhoneIcon,
|
|
179
193
|
qr as PhotoIcon,
|
|
180
194
|
_ as PinIcon,
|
|
181
195
|
dr as PinShadowedIcon,
|
|
182
196
|
oo as PlanIcon,
|
|
183
197
|
eo as PlusIcon,
|
|
184
|
-
|
|
198
|
+
he as PoolIcon,
|
|
199
|
+
ze as PostIcon,
|
|
185
200
|
no as PrestigeIcon,
|
|
186
|
-
|
|
201
|
+
Ar as PriceIcon,
|
|
187
202
|
ar as PrincipalIcon,
|
|
188
203
|
co as PrintIcon,
|
|
204
|
+
Pe as PrivateGardenIcon,
|
|
189
205
|
Io as ProfileIcon,
|
|
190
206
|
xo as QuotesIcon,
|
|
207
|
+
be as ReceptionIcon,
|
|
191
208
|
io as RequestIcon,
|
|
192
|
-
|
|
209
|
+
Qe as SchoolIcon,
|
|
193
210
|
so as SearchIcon,
|
|
194
211
|
ko as ShareIcon,
|
|
195
|
-
|
|
196
|
-
|
|
212
|
+
kt as ShieldImg,
|
|
213
|
+
ht as SnapImg,
|
|
197
214
|
$r as SortIcon,
|
|
198
|
-
|
|
215
|
+
Pr as SquareMeterIcon,
|
|
199
216
|
te as StarIcon,
|
|
200
|
-
|
|
217
|
+
Pt as StopWatchImg,
|
|
201
218
|
re as StreetViewIcon,
|
|
202
|
-
|
|
219
|
+
je as SubwayIcon,
|
|
203
220
|
ho as SuitcaseIcon,
|
|
204
221
|
zr as TelegramRoundedIcon,
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
222
|
+
Ce as TennisIcon,
|
|
223
|
+
Po as TieIcon,
|
|
224
|
+
Ao as TourIcon,
|
|
225
|
+
Ze as TrainAltIcon,
|
|
226
|
+
Oe as TrainIcon,
|
|
209
227
|
br as TransactionIcon,
|
|
210
228
|
Co as UkFlagIcon,
|
|
211
229
|
bo as ValuationIcon,
|
|
212
230
|
Lo as VideoIcon,
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
231
|
+
Bo as ViewPswIcon,
|
|
232
|
+
Ho as WalletIcon,
|
|
233
|
+
Vo as WarningIcon,
|
|
234
|
+
Mo as WarningIconRounded,
|
|
217
235
|
Qr as WhatsappRoundedIcon,
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
236
|
+
bt as WikiNerdAnalyzeImg,
|
|
237
|
+
at as WikiNerdDownloadAppImg,
|
|
238
|
+
tt as WikiNerdImg,
|
|
239
|
+
pt as WikiNerdMercatoImg,
|
|
240
|
+
Lt as WikiNerdValuationNotAvailableImg,
|
|
241
|
+
ft as WikiNerdValutaDesktopImg,
|
|
242
|
+
mt as WikiNerdValutaMobileImg,
|
|
243
|
+
Vt as WikiNoSavedSearchesImg,
|
|
244
|
+
$e as WikicasaDatiLogoIcon,
|
|
227
245
|
zo as WikicasaIcon,
|
|
228
|
-
|
|
246
|
+
rt as WikicasaLogoIcon,
|
|
229
247
|
pr as WikicasaRoundedIcon,
|
|
230
|
-
|
|
231
|
-
|
|
248
|
+
dt as WikicasaStudioLogoIcon,
|
|
249
|
+
Fo as WkAppIcon,
|
|
232
250
|
jo as WkFavIcon,
|
|
233
251
|
rr as YoutubeIcon
|
|
234
252
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -84,6 +84,15 @@ export { PartnershipIcon } from './svgIcons/PartnershipIcon';
|
|
|
84
84
|
export { LockIcon } from './svgIcons/LockIcon';
|
|
85
85
|
export { KeyIcon } from './svgIcons/KeyIcon';
|
|
86
86
|
export { MegaphoneIcon } from './svgIcons/MegaphoneIcon';
|
|
87
|
+
export { ParkingSpotIcon } from './svgIcons/ParkingSpotIcon';
|
|
88
|
+
export { BoxIcon } from './svgIcons/BoxIcon';
|
|
89
|
+
export { ParkingIcon } from './svgIcons/ParkingIcon';
|
|
90
|
+
export { PoolIcon } from './svgIcons/PoolIcon';
|
|
91
|
+
export { PrivateGardenIcon } from './svgIcons/PrivateGardenIcon';
|
|
92
|
+
export { CommunalGardenIcon } from './svgIcons/CommunalGardenIcon';
|
|
93
|
+
export { TennisIcon } from './svgIcons/TennisIcon';
|
|
94
|
+
export { ReceptionIcon } from './svgIcons/ReceptionIcon';
|
|
95
|
+
export { ArchitecturalBarriersIcon } from './svgIcons/ArchitecturalBarriersIcon';
|
|
87
96
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
88
97
|
export { BusIcon } from './svgIcons/poi/BusIcon';
|
|
89
98
|
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 ArchitecturalBarriersIcon: 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 BoxIcon: 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 CommunalGardenIcon: 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 ParkingIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-width': number;
|
|
6
|
+
'stroke-color': `#${string}`;
|
|
7
|
+
}>>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
|
+
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
|
+
|
|
4
|
+
export declare const ParkingSpotIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-width': number;
|
|
6
|
+
'stroke-color': `#${string}`;
|
|
7
|
+
color: `#${string}`;
|
|
8
|
+
}>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
|
+
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
|
+
|
|
4
|
+
export declare const PoolIcon: 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 PrivateGardenIcon: 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 ReceptionIcon: 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 TennisIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
|
+
'stroke-width': number;
|
|
6
|
+
'stroke-color': `#${string}`;
|
|
7
|
+
}>>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
2
|
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
3
|
|
|
4
|
-
export declare const WikicasaIcon: FunctionalSvgIconComponent<Partial<SvgProps
|
|
4
|
+
export declare const WikicasaIcon: FunctionalSvgIconComponent<Partial<SvgProps & {
|
|
5
5
|
'bg-color': string;
|
|
6
6
|
color: string;
|
|
7
7
|
'border-color': string;
|
|
8
|
+
'stroke-width': number;
|
|
8
9
|
}>>;
|