@wikicasa-dev/svg-icons 0.1.7 → 0.1.9
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/AirConditionerIcon.js +35 -0
- package/dist/AlarmIcon.js +35 -0
- package/dist/AttachedIcon.js +110 -0
- package/dist/AtticIcon.js +40 -0
- package/dist/CeilingIcon.js +51 -0
- package/dist/CellarIcon.js +32 -0
- package/dist/ClosetIcon.js +35 -0
- package/dist/DishwasherIcon.js +39 -0
- package/dist/ElectricGateIcon.js +54 -0
- package/dist/EntranceIcon.js +30 -0
- package/dist/FireplaceIcon.js +35 -0
- package/dist/FixturesIcon.js +40 -0
- package/dist/FridgeIcon.js +28 -0
- package/dist/FrontBuildingIcon.js +43 -0
- package/dist/FurnishedIcon.js +40 -0
- package/dist/HobIcon.js +36 -0
- package/dist/HotWaterIcon.js +64 -0
- package/dist/KitchenIcon.js +34 -0
- package/dist/LaundryIcon.js +43 -0
- package/dist/MezzanineIcon.js +33 -0
- package/dist/OpticFiberIcon.js +36 -0
- package/dist/PhotoAlbumIcon.js +168 -0
- package/dist/RoofIcon.js +32 -0
- package/dist/SatelliteSystemIcon.js +36 -0
- package/dist/SecurityDoorIcon.js +53 -0
- package/dist/TavernIcon.js +34 -0
- package/dist/TypeFloorIcon.js +43 -0
- package/dist/TypeRollerShutterIcon.js +35 -0
- package/dist/TypeTvIcon.js +35 -0
- package/dist/TypeViewIcon.js +34 -0
- package/dist/WashingMachineIcon.js +33 -0
- package/dist/WhirlpoolIcon.js +52 -0
- package/dist/index.js +210 -146
- package/dist/lib/index.d.ts +32 -0
- package/dist/lib/svgIcons/AirConditionerIcon.d.ts +7 -0
- package/dist/lib/svgIcons/AlarmIcon.d.ts +7 -0
- package/dist/lib/svgIcons/AttachedIcon.d.ts +7 -0
- package/dist/lib/svgIcons/AtticIcon.d.ts +7 -0
- package/dist/lib/svgIcons/CeilingIcon.d.ts +7 -0
- package/dist/lib/svgIcons/CellarIcon.d.ts +7 -0
- package/dist/lib/svgIcons/ClosetIcon.d.ts +7 -0
- package/dist/lib/svgIcons/DishwasherIcon.d.ts +7 -0
- package/dist/lib/svgIcons/ElectricGateIcon.d.ts +7 -0
- package/dist/lib/svgIcons/EntranceIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FireplaceIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FixturesIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FridgeIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FrontBuildingIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FurnishedIcon.d.ts +7 -0
- package/dist/lib/svgIcons/HobIcon.d.ts +7 -0
- package/dist/lib/svgIcons/HotWaterIcon.d.ts +7 -0
- package/dist/lib/svgIcons/KitchenIcon.d.ts +7 -0
- package/dist/lib/svgIcons/LaundryIcon.d.ts +7 -0
- package/dist/lib/svgIcons/MezzanineIcon.d.ts +7 -0
- package/dist/lib/svgIcons/OpticFiberIcon.d.ts +7 -0
- package/dist/lib/svgIcons/PhotoAlbumIcon.d.ts +7 -0
- package/dist/lib/svgIcons/RoofIcon.d.ts +7 -0
- package/dist/lib/svgIcons/SatelliteSystemIcon.d.ts +7 -0
- package/dist/lib/svgIcons/SecurityDoorIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TavernIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeFloorIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeRollerShutterIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeTvIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeViewIcon.d.ts +7 -0
- package/dist/lib/svgIcons/WashingMachineIcon.d.ts +7 -0
- package/dist/lib/svgIcons/WhirlpoolIcon.d.ts +7 -0
- 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 r = (o) => h({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 17.334 17",
|
|
8
|
+
width: o.width ?? 17,
|
|
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", { d: "M8.663.5v16" }),
|
|
22
|
+
t("path", { d: "m5.443 1.724 3.22 1.9 3.166-1.9" }),
|
|
23
|
+
t("path", { d: "m11.83 15.2-3.163-1.9-3.223 1.9" }),
|
|
24
|
+
t("path", { d: "M16.277 4.576 1.008 12.449" }),
|
|
25
|
+
t("path", { d: "m13.524 2.622-.231 3.493 3.374 1.579" }),
|
|
26
|
+
t("path", { d: "m3.81 14.323.257-3.451-3.4-1.621" }),
|
|
27
|
+
t("path", { d: "m1.057 4.576 15.269 7.873" }),
|
|
28
|
+
t("path", { d: "m3.81 2.622.231 3.493L.667 7.694" }),
|
|
29
|
+
t("path", { d: "m13.524 14.323-.257-3.451 3.4-1.621" })
|
|
30
|
+
]
|
|
31
|
+
)
|
|
32
|
+
});
|
|
33
|
+
export {
|
|
34
|
+
r as AirConditionerIcon
|
|
35
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
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: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 17 17.135",
|
|
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
|
+
},
|
|
19
|
+
[
|
|
20
|
+
o("path", {
|
|
21
|
+
"stroke-width": "1.071",
|
|
22
|
+
d: "M8.256 16.602a1.736 1.736 0 0 0 1.731-1.73H6.525a1.73 1.73 0 0 0 1.731 1.73Z"
|
|
23
|
+
}),
|
|
24
|
+
o("path", {
|
|
25
|
+
"stroke-linejoin": "round",
|
|
26
|
+
d: "M13.445 12.277V7.955c0-2.656-1.419-4.878-3.892-5.468v-.585a1.3 1.3 0 0 0-2.594 0v.588c-2.483.59-3.892 2.8-3.892 5.468v4.322l-1.115 1.115a.864.864 0 0 0 .606 1.477h11.388a.866.866 0 0 0 .614-1.477Z"
|
|
27
|
+
}),
|
|
28
|
+
o("path", { "stroke-linejoin": "round", d: "M4.392.602C1.909 1.192.5 3.402.5 6.07" }),
|
|
29
|
+
o("path", { "stroke-linejoin": "round", d: "M12.608.602c2.483.59 3.892 2.8 3.892 5.468" })
|
|
30
|
+
]
|
|
31
|
+
)
|
|
32
|
+
});
|
|
33
|
+
export {
|
|
34
|
+
n as AlarmIcon
|
|
35
|
+
};
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const h = (e) => o({
|
|
4
|
+
props: e,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 16 16",
|
|
8
|
+
width: e.width ?? 16,
|
|
9
|
+
height: e.height ?? 16
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: [
|
|
12
|
+
t("defs", [
|
|
13
|
+
t(
|
|
14
|
+
"clipPath",
|
|
15
|
+
{ id: "a" },
|
|
16
|
+
t("path", {
|
|
17
|
+
fill: "none",
|
|
18
|
+
stroke: e["stroke-color"] ?? "#222",
|
|
19
|
+
"stroke-width": e["stroke-width"] ?? 1,
|
|
20
|
+
d: "M0 0h16v16H0z"
|
|
21
|
+
})
|
|
22
|
+
),
|
|
23
|
+
t(
|
|
24
|
+
"clipPath",
|
|
25
|
+
{ id: "b" },
|
|
26
|
+
t("rect", {
|
|
27
|
+
width: "15",
|
|
28
|
+
height: "15",
|
|
29
|
+
fill: "none",
|
|
30
|
+
stroke: e["stroke-color"] ?? "#222",
|
|
31
|
+
"stroke-width": e["stroke-width"] ?? 1,
|
|
32
|
+
rx: "2"
|
|
33
|
+
})
|
|
34
|
+
)
|
|
35
|
+
]),
|
|
36
|
+
t(
|
|
37
|
+
"g",
|
|
38
|
+
t(
|
|
39
|
+
"g",
|
|
40
|
+
t("rect", {
|
|
41
|
+
width: "15.059",
|
|
42
|
+
height: "15.059",
|
|
43
|
+
fill: "none",
|
|
44
|
+
stroke: e["stroke-color"] ?? "#222",
|
|
45
|
+
"stroke-width": e["stroke-width"] ?? 1,
|
|
46
|
+
"stroke-linecap": "round",
|
|
47
|
+
"stroke-linejoin": "round",
|
|
48
|
+
rx: "2",
|
|
49
|
+
transform: "translate(.471 .471)"
|
|
50
|
+
})
|
|
51
|
+
)
|
|
52
|
+
),
|
|
53
|
+
t(
|
|
54
|
+
"g",
|
|
55
|
+
t(
|
|
56
|
+
"g",
|
|
57
|
+
{
|
|
58
|
+
fill: "none",
|
|
59
|
+
stroke: e["stroke-color"] ?? "#222",
|
|
60
|
+
"stroke-width": e["stroke-width"] ?? 1,
|
|
61
|
+
"stroke-linecap": "round",
|
|
62
|
+
"stroke-linejoin": "round",
|
|
63
|
+
transform: "translate(.5 .5)"
|
|
64
|
+
},
|
|
65
|
+
[
|
|
66
|
+
t("path", { d: "M0 10.92 4.08 15" }),
|
|
67
|
+
t("path", { d: "M0 6.584 8.416 15" }),
|
|
68
|
+
t("path", { d: "M0 2.248 12.752 15" }),
|
|
69
|
+
t("path", { d: "m2.087 0 12.892 12.892" }),
|
|
70
|
+
t("path", { d: "m6.422 0 8.577 8.577" }),
|
|
71
|
+
t("path", { d: "M10.787.028 14.959 4.2" })
|
|
72
|
+
]
|
|
73
|
+
)
|
|
74
|
+
),
|
|
75
|
+
t(
|
|
76
|
+
"g",
|
|
77
|
+
t(
|
|
78
|
+
"g",
|
|
79
|
+
{
|
|
80
|
+
stroke: e["stroke-color"] ?? "#222",
|
|
81
|
+
"stroke-width": e["stroke-width"] ?? 1,
|
|
82
|
+
transform: "translate(.5 .5)"
|
|
83
|
+
},
|
|
84
|
+
[
|
|
85
|
+
t("rect", {
|
|
86
|
+
width: "15",
|
|
87
|
+
height: "15",
|
|
88
|
+
fill: "none",
|
|
89
|
+
"stroke-linecap": "round",
|
|
90
|
+
"stroke-linejoin": "round",
|
|
91
|
+
rx: "2"
|
|
92
|
+
}),
|
|
93
|
+
t("path", {
|
|
94
|
+
fill: "#fff",
|
|
95
|
+
d: "M2.168 3.32v2.666a1.375 1.375 0 0 0 1.371 1.376h2.59A1.374 1.374 0 0 1 7.5 8.739v2.989A1.374 1.374 0 0 0 8.871 13.1h2.589a1.373 1.373 0 0 0 1.371-1.377V3.317A1.374 1.374 0 0 0 11.46 1.94H3.539a1.374 1.374 0 0 0-1.371 1.38"
|
|
96
|
+
}),
|
|
97
|
+
t("path", {
|
|
98
|
+
fill: "none",
|
|
99
|
+
"stroke-linecap": "round",
|
|
100
|
+
"stroke-linejoin": "round",
|
|
101
|
+
d: "M2.168 3.32v2.666a1.375 1.375 0 0 0 1.371 1.376h2.59A1.374 1.374 0 0 1 7.5 8.739v2.989A1.374 1.374 0 0 0 8.871 13.1h2.589a1.373 1.373 0 0 0 1.371-1.377V3.317A1.374 1.374 0 0 0 11.46 1.94H3.539a1.374 1.374 0 0 0-1.371 1.38Z"
|
|
102
|
+
})
|
|
103
|
+
]
|
|
104
|
+
)
|
|
105
|
+
)
|
|
106
|
+
]
|
|
107
|
+
});
|
|
108
|
+
export {
|
|
109
|
+
h as AttachedIcon
|
|
110
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const r = (h) => o({
|
|
4
|
+
props: h,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 19.094 17",
|
|
8
|
+
width: h.width ?? 19,
|
|
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 16.5v-4.419a3.053 3.053 0 0 1 .6-1.853l6.849-8.884a1.935 1.935 0 0 1 3.2 0l6.845 8.884a3.053 3.053 0 0 1 .6 1.853v1.895H.5"
|
|
23
|
+
}),
|
|
24
|
+
t("path", {
|
|
25
|
+
d: "M5.882 11.008h7.023a.524.524 0 0 1 .464.569v2.392h-7.95v-2.392a.524.524 0 0 1 .463-.569Z"
|
|
26
|
+
}),
|
|
27
|
+
t("path", {
|
|
28
|
+
d: "M6.647 8.944h5.494a.525.525 0 0 1 .465.569v1.5H6.183v-1.5a.525.525 0 0 1 .464-.569Z"
|
|
29
|
+
}),
|
|
30
|
+
t("path", { d: "M18.594 13.969V16.5" }),
|
|
31
|
+
t("path", { d: "M6.183 3.635h6.637" }),
|
|
32
|
+
t("path", {
|
|
33
|
+
d: "M3.52 1.156H2.357a.622.622 0 0 0-.549.675v7.115L4.07 6.041v-4.21a.622.622 0 0 0-.55-.675Z"
|
|
34
|
+
})
|
|
35
|
+
]
|
|
36
|
+
)
|
|
37
|
+
});
|
|
38
|
+
export {
|
|
39
|
+
r as AtticIcon
|
|
40
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
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 17.094 17.094",
|
|
8
|
+
width: o.width ?? 17,
|
|
9
|
+
height: o.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: [
|
|
12
|
+
t(
|
|
13
|
+
"g",
|
|
14
|
+
{
|
|
15
|
+
fill: "none",
|
|
16
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round",
|
|
19
|
+
"stroke-width": o["stroke-width"] ?? 1
|
|
20
|
+
},
|
|
21
|
+
[t("path", { d: "M.547.547h16" }), t("path", { d: "M.547 16.547h16" })]
|
|
22
|
+
),
|
|
23
|
+
t("path", {
|
|
24
|
+
fill: "none",
|
|
25
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
26
|
+
"stroke-linecap": "round",
|
|
27
|
+
"stroke-linejoin": "round",
|
|
28
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
29
|
+
d: "M8.549 2.978v11.075"
|
|
30
|
+
}),
|
|
31
|
+
t("path", {
|
|
32
|
+
fill: "none",
|
|
33
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
34
|
+
"stroke-linecap": "round",
|
|
35
|
+
"stroke-linejoin": "round",
|
|
36
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
37
|
+
d: "m6.172 5.347 2.369-2.369 2.3 2.3"
|
|
38
|
+
}),
|
|
39
|
+
t("path", {
|
|
40
|
+
fill: "none",
|
|
41
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
42
|
+
"stroke-linecap": "round",
|
|
43
|
+
"stroke-linejoin": "round",
|
|
44
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
45
|
+
d: "m10.922 11.747-2.37 2.369-2.3-2.3"
|
|
46
|
+
})
|
|
47
|
+
]
|
|
48
|
+
});
|
|
49
|
+
export {
|
|
50
|
+
i as CeilingIcon
|
|
51
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as a } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const r = (t) => a({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 17 17.091",
|
|
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", {
|
|
22
|
+
d: "M14.961 16.591H4.105v-1.619a.389.389 0 0 1 .387-.388h2.245a.385.385 0 0 0 .385-.384v-1.136a.389.389 0 0 1 .387-.388h2.114a.384.384 0 0 0 .385-.384v-1.159a.388.388 0 0 1 .387-.387h2.171a.385.385 0 0 0 .385-.385v-1.13a.388.388 0 0 1 .387-.387h2.393a.769.769 0 0 1 .769.769v5.439a1.539 1.539 0 0 1-1.539 1.539Z"
|
|
23
|
+
}),
|
|
24
|
+
o("path", {
|
|
25
|
+
d: "m9.779 1.071 6 5.184a2.112 2.112 0 0 1 .721 1.6v6.66a2.04 2.04 0 0 1-2 2.078h-12a2.041 2.041 0 0 1-2-2.078V7.853a2.112 2.112 0 0 1 .721-1.6l6-5.184a1.944 1.944 0 0 1 2.558.002Z"
|
|
26
|
+
})
|
|
27
|
+
]
|
|
28
|
+
)
|
|
29
|
+
});
|
|
30
|
+
export {
|
|
31
|
+
r as CellarIcon
|
|
32
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const a = (h) => o({
|
|
4
|
+
props: h,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 17 17",
|
|
8
|
+
width: h.width ?? 17,
|
|
9
|
+
height: h.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{ stroke: h["stroke-color"] ?? "#222", "stroke-width": h["stroke-width"] ?? 1 },
|
|
14
|
+
[
|
|
15
|
+
t("path", {
|
|
16
|
+
fill: "#101d31",
|
|
17
|
+
d: "M7.223 7.912a.587.587 0 1 1-.588-.586.586.586 0 0 1 .586.586"
|
|
18
|
+
}),
|
|
19
|
+
t("path", {
|
|
20
|
+
fill: "#101d31",
|
|
21
|
+
d: "M10.951 7.912a.587.587 0 1 1-.588-.586.586.586 0 0 1 .586.586"
|
|
22
|
+
}),
|
|
23
|
+
t("g", { fill: "none" }, [
|
|
24
|
+
t("path", {
|
|
25
|
+
d: "M.5 2.635v12.8A1.067 1.067 0 0 0 1.567 16.5h3.264A1.067 1.067 0 0 0 5.9 15.433v-.29a1.067 1.067 0 0 1 1.067-1.067h3.068a1.067 1.067 0 0 1 1.065 1.067v.29a1.067 1.067 0 0 0 1.069 1.067h3.264a1.067 1.067 0 0 0 1.067-1.067V2.635A2.135 2.135 0 0 0 14.365.5H2.635A2.135 2.135 0 0 0 .5 2.635Z"
|
|
26
|
+
}),
|
|
27
|
+
t("path", { d: "M8.5.5v13.809" }),
|
|
28
|
+
t("path", { d: "M16.5 14.075H.5" })
|
|
29
|
+
])
|
|
30
|
+
]
|
|
31
|
+
)
|
|
32
|
+
});
|
|
33
|
+
export {
|
|
34
|
+
a as ClosetIcon
|
|
35
|
+
};
|
|
@@ -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,54 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as h } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const o = (r) => h({
|
|
4
|
+
props: r,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 18.225 17",
|
|
8
|
+
width: r.width ?? 18,
|
|
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", {
|
|
22
|
+
d: "M1.8 4.373h.04a1.045 1.045 0 0 1 1.04 1.05V16.5H.758V5.423A1.045 1.045 0 0 1 1.8 4.373Z"
|
|
23
|
+
}),
|
|
24
|
+
t("path", { d: "M1.819 4.372V2.76" }),
|
|
25
|
+
t("ellipse", {
|
|
26
|
+
cx: "1.061",
|
|
27
|
+
cy: "1.072",
|
|
28
|
+
rx: "1.061",
|
|
29
|
+
ry: "1.072",
|
|
30
|
+
transform: "translate(.758 .5)"
|
|
31
|
+
}),
|
|
32
|
+
t("path", {
|
|
33
|
+
d: "M16.384 4.373h.042a1.045 1.045 0 0 1 1.04 1.05V16.5h-2.122V5.423a1.045 1.045 0 0 1 1.04-1.05Z"
|
|
34
|
+
}),
|
|
35
|
+
t("path", { d: "M16.405 4.372V2.76" }),
|
|
36
|
+
t("ellipse", {
|
|
37
|
+
cx: "1.061",
|
|
38
|
+
cy: "1.072",
|
|
39
|
+
rx: "1.061",
|
|
40
|
+
ry: "1.072",
|
|
41
|
+
transform: "translate(15.344 .5)"
|
|
42
|
+
}),
|
|
43
|
+
t("path", { d: "M3.112 6.333a8.528 8.528 0 0 1 12 0" }),
|
|
44
|
+
t("path", { d: "M5.692 16.499V3.417" }),
|
|
45
|
+
t("path", { d: "M12.731 16.5V3.417" }),
|
|
46
|
+
t("path", { d: "M9.212 16.499V1.344" }),
|
|
47
|
+
t("path", { d: "M8.379 9.144h1.707" }),
|
|
48
|
+
t("path", { d: "M.5 16.499h17.225" })
|
|
49
|
+
]
|
|
50
|
+
)
|
|
51
|
+
});
|
|
52
|
+
export {
|
|
53
|
+
o as ElectricGateIcon
|
|
54
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
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: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 11.54 17",
|
|
8
|
+
width: t.width ?? 11,
|
|
9
|
+
height: t.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: o(
|
|
12
|
+
"g",
|
|
13
|
+
{ stroke: t["stroke-color"] ?? "#222", "stroke-width": t["stroke-width"] ?? 1 },
|
|
14
|
+
[
|
|
15
|
+
o("path", {
|
|
16
|
+
fill: "none",
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round",
|
|
19
|
+
d: "M11.04 16.127a.373.373 0 0 1-.373.373H.873a.373.373 0 0 1-.373-.373V2.5a2 2 0 0 1 2-2h6.54a2 2 0 0 1 2 2Z"
|
|
20
|
+
}),
|
|
21
|
+
o("path", {
|
|
22
|
+
fill: "#0e1d34",
|
|
23
|
+
d: "M9.866 8.74a.945.945 0 1 1-.945-.94.945.945 0 0 1 .945.945"
|
|
24
|
+
})
|
|
25
|
+
]
|
|
26
|
+
)
|
|
27
|
+
});
|
|
28
|
+
export {
|
|
29
|
+
n as EntranceIcon
|
|
30
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
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 17",
|
|
8
|
+
width: t.width ?? 17,
|
|
9
|
+
height: t.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: [
|
|
12
|
+
o("path", {
|
|
13
|
+
fill: t["stroke-color"] ?? "#222",
|
|
14
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
15
|
+
"stroke-width": t["stroke-width"] ?? 0.2,
|
|
16
|
+
d: "M8.061 13.771a2.963 2.963 0 0 1-1.8-.759 2.672 2.672 0 0 1-.773-2.2A7.108 7.108 0 0 1 5.764 9.3 5.673 5.673 0 0 1 6.3 7.8c.105 0 .053 2.2.348 2.234.165.019.375-.654.551-1.219a6.645 6.645 0 0 0 .406-2c.015-1.229-.462-1.935-.29-2.03s.86.612 1.363 1.45c.9 1.506.905 2.855 1.189 2.842.189-.008.353-.613.377-1.073.033-.628-.191-1.036-.116-1.073.1-.046.566.549.9 1.3a4.624 4.624 0 0 1 .435 2.785A3.467 3.467 0 0 1 9.812 13.6a3.044 3.044 0 0 1-1.751.172"
|
|
17
|
+
}),
|
|
18
|
+
o("g", { fill: "none", stroke: t["stroke-color"] ?? "#222" }, [
|
|
19
|
+
o("path", {
|
|
20
|
+
d: "M15.264 16.5H1.736a1.236 1.236 0 0 1 0-2.472h13.528a1.236 1.236 0 1 1 0 2.472Z"
|
|
21
|
+
}),
|
|
22
|
+
o("path", {
|
|
23
|
+
d: "M15.264 2.972H1.736a1.236 1.236 0 0 1 0-2.472h13.528a1.236 1.236 0 1 1 0 2.472Z"
|
|
24
|
+
}),
|
|
25
|
+
o("path", {
|
|
26
|
+
"stroke-linecap": "round",
|
|
27
|
+
"stroke-linejoin": "round",
|
|
28
|
+
d: "M2.431 2.972h12.138v10.956H2.431z"
|
|
29
|
+
})
|
|
30
|
+
])
|
|
31
|
+
]
|
|
32
|
+
});
|
|
33
|
+
export {
|
|
34
|
+
a as FireplaceIcon
|
|
35
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const a = (h) => o({
|
|
4
|
+
props: h,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 17 17",
|
|
8
|
+
width: h.width ?? 17,
|
|
9
|
+
height: h.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: h.strokeColor ?? "#222",
|
|
16
|
+
"stroke-width": h.strokeWidth ?? 1,
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round"
|
|
19
|
+
},
|
|
20
|
+
[
|
|
21
|
+
t("path", {
|
|
22
|
+
d: "M2.713.5H8.5v16H2.713A2.167 2.167 0 0 1 .5 14.382V2.618A2.167 2.167 0 0 1 2.713.5Z"
|
|
23
|
+
}),
|
|
24
|
+
t("path", {
|
|
25
|
+
d: "M3.161 2.05h2.683A1.083 1.083 0 0 1 6.95 3.109v10.783a1.084 1.084 0 0 1-1.106 1.06H3.161a1.084 1.084 0 0 1-1.106-1.06V3.109A1.083 1.083 0 0 1 3.161 2.05Z"
|
|
26
|
+
}),
|
|
27
|
+
t("path", {
|
|
28
|
+
d: "M8.5.5h5.787A2.167 2.167 0 0 1 16.5 2.618v11.764a2.167 2.167 0 0 1-2.213 2.118H8.5Z"
|
|
29
|
+
}),
|
|
30
|
+
t("path", {
|
|
31
|
+
d: "M11.161 2.05h2.683a1.083 1.083 0 0 1 1.106 1.059v10.783a1.084 1.084 0 0 1-1.106 1.06h-2.683a1.084 1.084 0 0 1-1.106-1.06V3.109a1.083 1.083 0 0 1 1.106-1.059Z"
|
|
32
|
+
}),
|
|
33
|
+
t("path", { d: "M2.215 6.597H6.95" }),
|
|
34
|
+
t("path", { d: "M10.135 6.597h4.735" })
|
|
35
|
+
]
|
|
36
|
+
)
|
|
37
|
+
});
|
|
38
|
+
export {
|
|
39
|
+
a as FixturesIcon
|
|
40
|
+
};
|
|
@@ -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
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const e = (h) => o({
|
|
4
|
+
props: h,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 17 17",
|
|
8
|
+
width: h.width ?? 17,
|
|
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: "M2.665.5h11.669A2.1 2.1 0 0 1 16.5 2.526V16.5H.5V2.526A2.1 2.1 0 0 1 2.665.5Z"
|
|
23
|
+
}),
|
|
24
|
+
t("path", {
|
|
25
|
+
d: "M6.113 9.224H11a1.05 1.05 0 0 1 1.083 1.013V16.5H5.03v-6.263a1.05 1.05 0 0 1 1.083-1.013Z"
|
|
26
|
+
}),
|
|
27
|
+
t("path", { d: "M8.555 9.314V16.5" }),
|
|
28
|
+
t("path", {
|
|
29
|
+
d: "M3.921 2.438h1.891a1.05 1.05 0 0 1 1.083 1.013v3.79H2.838v-3.79a1.05 1.05 0 0 1 1.083-1.013Z"
|
|
30
|
+
}),
|
|
31
|
+
t("path", { d: "M2.282 7.242H7.41" }),
|
|
32
|
+
t("path", {
|
|
33
|
+
d: "M11.328 2.438h1.891A1.05 1.05 0 0 1 14.3 3.451v3.79h-4.055v-3.79a1.05 1.05 0 0 1 1.083-1.013Z"
|
|
34
|
+
}),
|
|
35
|
+
t("path", { d: "M9.689 7.242h5.128" }),
|
|
36
|
+
t("path", { d: "M9.727 13.67v.217" }),
|
|
37
|
+
t("path", { d: "M7.318 13.67v.217" })
|
|
38
|
+
]
|
|
39
|
+
)
|
|
40
|
+
});
|
|
41
|
+
export {
|
|
42
|
+
e as FrontBuildingIcon
|
|
43
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as a } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const h = (o) => a({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 13.521 17.119",
|
|
8
|
+
width: o.width ?? 13,
|
|
9
|
+
height: o.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{ stroke: o["stroke-color"] ?? "#222", "stroke-width": o["stroke-width"] ?? 1 },
|
|
14
|
+
[
|
|
15
|
+
t("path", { fill: "none", "stroke-linecap": "round", d: "M4.578 11.001 2.991 16.5" }),
|
|
16
|
+
t("path", { fill: "none", "stroke-linecap": "round", d: "m10.741 11.001 1.587 5.499" }),
|
|
17
|
+
t("path", {
|
|
18
|
+
fill: "#fff",
|
|
19
|
+
d: "M4.814 6.676 3.428 1.6a1.486 1.486 0 1 0-2.867.782l1.052 3.851a11.915 11.915 0 0 1 .419 3.132 1.486 1.486 0 0 0 1.486 1.486h8.017a1.486 1.486 0 0 0 1.486-1.486v-.108a1.486 1.486 0 0 0-1.486-1.486H6.247a1.486 1.486 0 0 1-1.433-1.095"
|
|
20
|
+
}),
|
|
21
|
+
t("path", {
|
|
22
|
+
fill: "none",
|
|
23
|
+
"stroke-linecap": "round",
|
|
24
|
+
d: "M4.814 6.676 3.428 1.6a1.486 1.486 0 1 0-2.867.782l1.052 3.851a11.915 11.915 0 0 1 .419 3.132 1.486 1.486 0 0 0 1.486 1.486h8.017a1.486 1.486 0 0 0 1.486-1.486v-.108a1.486 1.486 0 0 0-1.486-1.486H6.247a1.486 1.486 0 0 1-1.433-1.095Z"
|
|
25
|
+
}),
|
|
26
|
+
t("path", {
|
|
27
|
+
fill: "#fff",
|
|
28
|
+
d: "M10.654 6.01H5.948a.88.88 0 0 0 0 1.761h4.706a.88.88 0 1 0 0-1.761"
|
|
29
|
+
}),
|
|
30
|
+
t("path", {
|
|
31
|
+
fill: "none",
|
|
32
|
+
"stroke-linecap": "round",
|
|
33
|
+
d: "M10.654 6.01H5.948a.88.88 0 0 0 0 1.761h4.706a.88.88 0 1 0 0-1.761Z"
|
|
34
|
+
})
|
|
35
|
+
]
|
|
36
|
+
)
|
|
37
|
+
});
|
|
38
|
+
export {
|
|
39
|
+
h as FurnishedIcon
|
|
40
|
+
};
|