@wikicasa-dev/svg-icons 0.1.9 → 0.1.10
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/index.js +71 -67
- package/dist/lib/index.d.ts +6 -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/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/BankIcon.js
CHANGED
|
@@ -1,48 +1,36 @@
|
|
|
1
1
|
import { h as r } from "vue";
|
|
2
|
-
import { s as
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
3
|
import { g as e } from "./DefaultValues-DOBkctU1.js";
|
|
4
|
-
const
|
|
5
|
-
props:
|
|
6
|
-
svgNodeAttrs: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
4
|
+
const i = (t) => (t = { ...e(), ...t }, o({
|
|
5
|
+
props: t,
|
|
6
|
+
svgNodeAttrs: {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 17 17",
|
|
9
|
+
width: t.width ?? 17,
|
|
10
|
+
height: t.height ?? 17
|
|
11
|
+
},
|
|
12
|
+
childrenNodes: r(
|
|
13
|
+
"g",
|
|
14
|
+
{
|
|
15
|
+
fill: "none",
|
|
16
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
17
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
18
|
+
"stroke-linecap": "round",
|
|
19
|
+
"stroke-linejoin": "round",
|
|
20
|
+
transform: "translate(-.211 .35)"
|
|
21
|
+
},
|
|
22
|
+
[
|
|
23
|
+
r("circle", { cx: "8", cy: "8", r: "8", transform: "translate(.711 .15)" }),
|
|
24
|
+
r("g", [
|
|
14
25
|
r("path", {
|
|
15
|
-
|
|
16
|
-
stroke: o.color ?? "#222",
|
|
17
|
-
"stroke-linecap": "round",
|
|
18
|
-
"stroke-linejoin": "round",
|
|
19
|
-
"stroke-width": ".1",
|
|
20
|
-
d: "M454.728 426.381h-.769v-.706h.884a3.27 3.27 0 0 1 3.057-2.756 3.05 3.05 0 0 1 2.948 2.375h-.989a2.01 2.01 0 0 0-1.954-1.44 2.265 2.265 0 0 0-2.17 1.82h2.17v.706h-2.314a5 5 0 0 0-.027.552 4 4 0 0 0 .034.59h2.307v.72h-2.16a2.284 2.284 0 0 0 2.16 1.762 2.015 2.015 0 0 0 1.954-1.426h.994a3.04 3.04 0 0 1-2.948 2.351 3.246 3.246 0 0 1-3.046-2.687h-.9v-.72h.764a5.5 5.5 0 0 1 .005-1.141"
|
|
26
|
+
d: "M12.332 10.399a3.45 3.45 0 0 1-1.464 1.352 3.588 3.588 0 0 1-5.052-3.46v.14a3.588 3.588 0 0 1 5.052-3.465 3.453 3.453 0 0 1 1.464 1.355"
|
|
21
27
|
}),
|
|
22
|
-
r("
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
stroke: o.color ?? "#222",
|
|
28
|
-
"stroke-linecap": "round",
|
|
29
|
-
"stroke-linejoin": "round",
|
|
30
|
-
transform: "translate(448.515 418.031)"
|
|
31
|
-
}),
|
|
32
|
-
r("circle", {
|
|
33
|
-
cx: "7.1",
|
|
34
|
-
cy: "7.1",
|
|
35
|
-
r: "7.1",
|
|
36
|
-
fill: "none",
|
|
37
|
-
stroke: o.color ?? "#222",
|
|
38
|
-
"stroke-linecap": "round",
|
|
39
|
-
"stroke-linejoin": "round",
|
|
40
|
-
transform: "translate(450.309 419.824)"
|
|
41
|
-
})
|
|
42
|
-
]
|
|
43
|
-
)
|
|
44
|
-
]
|
|
28
|
+
r("path", { d: "M4.211 7.333h4.954" }),
|
|
29
|
+
r("path", { d: "M4.211 9.661h4.954" })
|
|
30
|
+
])
|
|
31
|
+
]
|
|
32
|
+
)
|
|
45
33
|
}));
|
|
46
34
|
export {
|
|
47
|
-
|
|
35
|
+
i as BankIcon
|
|
48
36
|
};
|
package/dist/BusIcon.js
CHANGED
|
@@ -1,72 +1,42 @@
|
|
|
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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
cx: "0.701",
|
|
40
|
-
cy: "0.701",
|
|
41
|
-
r: "0.701",
|
|
42
|
-
fill: o.color ?? "#222",
|
|
43
|
-
"stroke-linecap": "round",
|
|
44
|
-
"stroke-linejoin": "round",
|
|
45
|
-
"stroke-width": "0.6",
|
|
46
|
-
transform: "translate(498.907 435.205)"
|
|
47
|
-
}),
|
|
48
|
-
r("circle", {
|
|
49
|
-
cx: "0.701",
|
|
50
|
-
cy: "0.701",
|
|
51
|
-
r: "0.701",
|
|
52
|
-
fill: o.color ?? "#222",
|
|
53
|
-
"stroke-linecap": "round",
|
|
54
|
-
"stroke-linejoin": "round",
|
|
55
|
-
"stroke-width": "0.6",
|
|
56
|
-
transform: "translate(503.125 435.205)"
|
|
57
|
-
}),
|
|
58
|
-
r("path", {
|
|
59
|
-
fill: "none",
|
|
60
|
-
stroke: o.color ?? "#222",
|
|
61
|
-
"stroke-linecap": "round",
|
|
62
|
-
"stroke-linejoin": "round",
|
|
63
|
-
"stroke-width": "0.6",
|
|
64
|
-
d: "M497.475 429.998h-.686a.833.833 0 0 0-.833.833v1.394m10.003-2.227h.686a.833.833 0 0 1 .833.833v1.394"
|
|
65
|
-
})
|
|
66
|
-
]
|
|
67
|
-
)
|
|
68
|
-
]
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as a } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
import { g as r } from "./DefaultValues-DOBkctU1.js";
|
|
4
|
+
const n = (h) => (h = { ...r(), ...h }, a({
|
|
5
|
+
props: h,
|
|
6
|
+
svgNodeAttrs: {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 16.884 17",
|
|
9
|
+
width: h.width ?? 16,
|
|
10
|
+
height: h.height ?? 17
|
|
11
|
+
},
|
|
12
|
+
childrenNodes: t(
|
|
13
|
+
"g",
|
|
14
|
+
{
|
|
15
|
+
fill: "none",
|
|
16
|
+
stroke: h["stroke-color"] ?? "#222",
|
|
17
|
+
"stroke-width": h["stroke-width"] ?? 1,
|
|
18
|
+
"stroke-linecap": "round",
|
|
19
|
+
"stroke-linejoin": "round"
|
|
20
|
+
},
|
|
21
|
+
[
|
|
22
|
+
t("path", {
|
|
23
|
+
d: "M4.194 14.7h1.8v1.066a.734.734 0 0 1-.734.734h-.333a.734.734 0 0 1-.733-.734Z"
|
|
24
|
+
}),
|
|
25
|
+
t("path", {
|
|
26
|
+
d: "M10.889 14.7h1.8v1.066a.734.734 0 0 1-.733.734h-.335a.734.734 0 0 1-.733-.734Z"
|
|
27
|
+
}),
|
|
28
|
+
t("path", {
|
|
29
|
+
d: "M5.09.5h6.7a2.335 2.335 0 0 1 2.335 2.335v9.53a2.335 2.335 0 0 1-2.331 2.335h-6.7a2.336 2.336 0 0 1-2.34-2.336V2.836A2.336 2.336 0 0 1 5.09.5Z"
|
|
30
|
+
}),
|
|
31
|
+
t("path", { d: "M2.754 2.501h11.375v5.438H2.754z" }),
|
|
32
|
+
t("path", { d: "M8.442 7.938V2.5" }),
|
|
33
|
+
t("circle", { cx: ".966", cy: ".966", r: ".966", transform: "translate(4.569 10.747)" }),
|
|
34
|
+
t("circle", { cx: ".966", cy: ".966", r: ".966", transform: "translate(10.383 10.747)" }),
|
|
35
|
+
t("path", { d: "M2.594 3.569h-.946A1.148 1.148 0 0 0 .5 4.717h0v1.924" }),
|
|
36
|
+
t("path", { d: "M14.29 3.569h.946a1.148 1.148 0 0 1 1.148 1.148h0v1.924" })
|
|
37
|
+
]
|
|
38
|
+
)
|
|
69
39
|
}));
|
|
70
40
|
export {
|
|
71
|
-
|
|
41
|
+
n as BusIcon
|
|
72
42
|
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
import { g as r } from "./DefaultValues-DOBkctU1.js";
|
|
4
|
+
const l = (t) => (t = { ...r(), ...t }, e({
|
|
5
|
+
props: t,
|
|
6
|
+
svgNodeAttrs: {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 11.017 17",
|
|
9
|
+
width: t.width ?? 11,
|
|
10
|
+
height: t.height ?? 17
|
|
11
|
+
},
|
|
12
|
+
childrenNodes: 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.633.806.622 8.42c-.248.315-.063.835.3.835h4.8c.327 0 .522.44.34.769l-3.153 5.698c-.181.327.012.766.338.769l.239.009a.762.762 0 0 0 .6-.314l6.31-8.156c.244-.316.059-.832-.3-.832H5.052c-.335 0-.528-.458-.33-.785l3.1-5.128c.2-.326 0-.785-.33-.785h-.266a.762.762 0 0 0-.593.306Z"
|
|
19
|
+
})
|
|
20
|
+
}));
|
|
21
|
+
export {
|
|
22
|
+
l as ChargeIcon
|
|
23
|
+
};
|
package/dist/HospitalIcon.js
CHANGED
|
@@ -1,37 +1,31 @@
|
|
|
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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"stroke-linejoin": "round",
|
|
29
|
-
transform: "translate(548.015 356.551)"
|
|
30
|
-
})
|
|
31
|
-
]
|
|
32
|
-
)
|
|
33
|
-
]
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
import { g as r } from "./DefaultValues-DOBkctU1.js";
|
|
4
|
+
const h = (t) => (t = { ...r(), ...t }, e({
|
|
5
|
+
props: t,
|
|
6
|
+
svgNodeAttrs: {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 17 17",
|
|
9
|
+
width: t.width ?? 17,
|
|
10
|
+
height: t.height ?? 17
|
|
11
|
+
},
|
|
12
|
+
childrenNodes: o(
|
|
13
|
+
"g",
|
|
14
|
+
{
|
|
15
|
+
fill: "none",
|
|
16
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
17
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
18
|
+
"stroke-linecap": "round",
|
|
19
|
+
"stroke-linejoin": "round"
|
|
20
|
+
},
|
|
21
|
+
[
|
|
22
|
+
o("circle", { cx: "8", cy: "8", r: "8", transform: "translate(.5 .5)" }),
|
|
23
|
+
o("path", { d: "M12.262 4.784v7.57" }),
|
|
24
|
+
o("path", { d: "M4.69 4.784v7.57" }),
|
|
25
|
+
o("path", { d: "M12.26 8.569H4.69" })
|
|
26
|
+
]
|
|
27
|
+
)
|
|
34
28
|
}));
|
|
35
29
|
export {
|
|
36
|
-
|
|
30
|
+
h as HospitalIcon
|
|
37
31
|
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
import { g as r } from "./DefaultValues-DOBkctU1.js";
|
|
4
|
+
const h = (t) => (t = { ...r(), ...t }, e({
|
|
5
|
+
props: t,
|
|
6
|
+
svgNodeAttrs: {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 17 17",
|
|
9
|
+
width: t.width ?? 17,
|
|
10
|
+
height: t.height ?? 17
|
|
11
|
+
},
|
|
12
|
+
childrenNodes: o(
|
|
13
|
+
"g",
|
|
14
|
+
{ stroke: t["stroke-color"] ?? "#222", "stroke-width": t["stroke-width"] ?? 1 },
|
|
15
|
+
[
|
|
16
|
+
o("circle", {
|
|
17
|
+
cx: "8",
|
|
18
|
+
cy: "8",
|
|
19
|
+
r: "8",
|
|
20
|
+
fill: "none",
|
|
21
|
+
"stroke-linecap": "round",
|
|
22
|
+
"stroke-linejoin": "round",
|
|
23
|
+
transform: "translate(.5 .5)"
|
|
24
|
+
}),
|
|
25
|
+
o("path", {
|
|
26
|
+
fill: "#222",
|
|
27
|
+
"stroke-width": ".2",
|
|
28
|
+
d: "M3.33 12.439 4.678 4.5a.183.183 0 0 1 .181-.154h1.856a.183.183 0 0 1 .171.119l1.447 3.851a.183.183 0 0 0 .344 0l1.436-3.851a.184.184 0 0 1 .172-.119h1.855a.183.183 0 0 1 .181.154l1.348 7.939a.184.184 0 0 1-.181.215h-1.772a.184.184 0 0 1-.182-.157l-.588-3.926a.184.184 0 0 0-.354-.038l-1.5 4a.185.185 0 0 1-.172.12h-.977a.183.183 0 0 1-.173-.124L6.4 8.578a.183.183 0 0 0-.355.033l-.58 3.889a.183.183 0 0 1-.181.157H3.511a.184.184 0 0 1-.181-.215"
|
|
29
|
+
})
|
|
30
|
+
]
|
|
31
|
+
)
|
|
32
|
+
}));
|
|
33
|
+
export {
|
|
34
|
+
h as MetroIcon
|
|
35
|
+
};
|
package/dist/PharmacyIcon.js
CHANGED
|
@@ -1,19 +1,33 @@
|
|
|
1
|
-
import { h as
|
|
2
|
-
import { s as
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as r } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
3
|
import { g as e } from "./DefaultValues-DOBkctU1.js";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
o("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 17" });
|
|
5
|
+
const s = (t) => (t = { ...e(), ...t }, r({
|
|
6
|
+
props: t,
|
|
7
|
+
svgNodeAttrs: {
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
viewBox: "0 0 17 17",
|
|
10
|
+
width: t.width ?? 17,
|
|
11
|
+
height: t.height ?? 17
|
|
12
|
+
},
|
|
13
|
+
childrenNodes: o(
|
|
14
|
+
"g",
|
|
15
|
+
{
|
|
9
16
|
fill: "none",
|
|
10
|
-
stroke:
|
|
17
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
18
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
11
19
|
"stroke-linecap": "round",
|
|
12
|
-
"stroke-linejoin": "round"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
20
|
+
"stroke-linejoin": "round"
|
|
21
|
+
},
|
|
22
|
+
[
|
|
23
|
+
o("circle", { cx: "8", cy: "8", r: "8", transform: "translate(.5 .5)" }),
|
|
24
|
+
o("path", { d: "M14.821 7.7h-4.3a1 1 0 0 1-1-1V2.4" }),
|
|
25
|
+
o("path", { d: "M7.477 2.406V6.7a1 1 0 0 1-1 1h-4.3" }),
|
|
26
|
+
o("path", { d: "M9.523 14.733v-4.3a1 1 0 0 1 1-1h4.3" }),
|
|
27
|
+
o("path", { d: "M2.179 9.435h4.3a1 1 0 0 1 1 1v4.3" })
|
|
28
|
+
]
|
|
29
|
+
)
|
|
16
30
|
}));
|
|
17
31
|
export {
|
|
18
|
-
|
|
32
|
+
s as PharmacyIcon
|
|
19
33
|
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
import { g as r } from "./DefaultValues-DOBkctU1.js";
|
|
4
|
+
const l = (t) => (t = { ...r(), ...t }, e({
|
|
5
|
+
props: t,
|
|
6
|
+
svgNodeAttrs: {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 17 17",
|
|
9
|
+
width: t.width ?? 17,
|
|
10
|
+
height: t.height ?? 17
|
|
11
|
+
},
|
|
12
|
+
childrenNodes: o("g", [
|
|
13
|
+
o("circle", {
|
|
14
|
+
cx: "8",
|
|
15
|
+
cy: "8",
|
|
16
|
+
r: "8",
|
|
17
|
+
fill: "none",
|
|
18
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
19
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
20
|
+
"stroke-linecap": "round",
|
|
21
|
+
"stroke-linejoin": "round",
|
|
22
|
+
transform: "translate(.5 .5)"
|
|
23
|
+
}),
|
|
24
|
+
o("path", {
|
|
25
|
+
fill: t["stroke-color"] ?? "#222",
|
|
26
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
27
|
+
d: "M6.032 9.248H5.018v2.106a.217.217 0 0 1-.217.217H4.02a.217.217 0 0 1-.216-.217V5.737a.217.217 0 0 1 .216-.217h2.012c1.457 0 2.185.823 2.185 1.872 0 .919-.625 1.856-2.185 1.856m-.052-.98c.685 0 .988-.338.988-.876 0-.555-.3-.884-.988-.884h-.962v1.76Z"
|
|
28
|
+
}),
|
|
29
|
+
o("path", {
|
|
30
|
+
fill: t["stroke-color"] ?? "#222",
|
|
31
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
32
|
+
d: "M8.974 5.429h4.005a.217.217 0 0 1 .217.217v.636a.217.217 0 0 1-.217.217H11.8a.217.217 0 0 0-.217.217v4.638a.217.217 0 0 1-.217.217h-.781a.217.217 0 0 1-.216-.217V6.716a.217.217 0 0 0-.217-.217H8.974a.217.217 0 0 1-.217-.217v-.636a.217.217 0 0 1 .217-.217"
|
|
33
|
+
})
|
|
34
|
+
])
|
|
35
|
+
}));
|
|
36
|
+
export {
|
|
37
|
+
l as PostOfficeIcon
|
|
38
|
+
};
|
package/dist/SchoolIcon.js
CHANGED
|
@@ -1,61 +1,54 @@
|
|
|
1
|
-
import { h as
|
|
1
|
+
import { h as n } from "vue";
|
|
2
2
|
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
-
import { g as
|
|
4
|
-
const a = (o) => (o = { ...
|
|
3
|
+
import { g as t } from "./DefaultValues-DOBkctU1.js";
|
|
4
|
+
const a = (o) => (o = { ...t(), ...o }, e({
|
|
5
5
|
props: o,
|
|
6
|
-
svgNodeAttrs: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"stroke-linecap": "round",
|
|
53
|
-
"stroke-linejoin": "round",
|
|
54
|
-
transform: "translate(234.045 312.119)"
|
|
55
|
-
})
|
|
56
|
-
]
|
|
57
|
-
)
|
|
58
|
-
]
|
|
6
|
+
svgNodeAttrs: {
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 16.838 17.011",
|
|
9
|
+
width: o.width ?? 16,
|
|
10
|
+
height: o.height ?? 17
|
|
11
|
+
},
|
|
12
|
+
childrenNodes: n(
|
|
13
|
+
"g",
|
|
14
|
+
{ stroke: o["stroke-color"] ?? "#222", "stroke-width": o["stroke-width"] ?? 1 },
|
|
15
|
+
[
|
|
16
|
+
n("path", {
|
|
17
|
+
fill: "none",
|
|
18
|
+
"stroke-linecap": "round",
|
|
19
|
+
"stroke-linejoin": "round",
|
|
20
|
+
d: "M2.409 6.059v5.047a.736.736 0 0 0 .189.493c.512.577 2.152 1.99 5.882 1.99 3.849 0 5.477-1.762 5.936-2.389a.74.74 0 0 0 .143-.437V6.059Z"
|
|
21
|
+
}),
|
|
22
|
+
n("path", {
|
|
23
|
+
fill: "#fff",
|
|
24
|
+
d: "M7.644.691 1.163 3.622a1.128 1.128 0 0 0-.024 2.044l6.442 3.1a2.034 2.034 0 0 0 1.789-.013l6.344-3.166a1.128 1.128 0 0 0-.042-2.038L9.314.689a2.033 2.033 0 0 0-1.67 0"
|
|
25
|
+
}),
|
|
26
|
+
n("path", {
|
|
27
|
+
fill: "none",
|
|
28
|
+
"stroke-linecap": "round",
|
|
29
|
+
"stroke-linejoin": "round",
|
|
30
|
+
d: "M7.644.691 1.163 3.622a1.128 1.128 0 0 0-.024 2.044l6.442 3.1a2.034 2.034 0 0 0 1.789-.013l6.344-3.166a1.128 1.128 0 0 0-.042-2.038L9.314.689a2.033 2.033 0 0 0-1.67.002Z"
|
|
31
|
+
}),
|
|
32
|
+
n("path", {
|
|
33
|
+
fill: "none",
|
|
34
|
+
"stroke-linecap": "round",
|
|
35
|
+
"stroke-linejoin": "round",
|
|
36
|
+
d: "M8.449 3.493c1.021 0 1.85.476 1.85 1.064s-.829 1.065-1.85 1.065-1.854-.478-1.854-1.065.832-1.064 1.854-1.064Z"
|
|
37
|
+
}),
|
|
38
|
+
n("path", {
|
|
39
|
+
fill: "none",
|
|
40
|
+
"stroke-linecap": "round",
|
|
41
|
+
"stroke-linejoin": "round",
|
|
42
|
+
d: "M4.37 14.325V6.752l2.679-1.368"
|
|
43
|
+
}),
|
|
44
|
+
n("path", {
|
|
45
|
+
fill: "none",
|
|
46
|
+
"stroke-linecap": "round",
|
|
47
|
+
"stroke-linejoin": "round",
|
|
48
|
+
d: "M4.37 14.335a1.087 1.087 0 1 1-1.087 1.087 1.087 1.087 0 0 1 1.087-1.087Z"
|
|
49
|
+
})
|
|
50
|
+
]
|
|
51
|
+
)
|
|
59
52
|
}));
|
|
60
53
|
export {
|
|
61
54
|
a as SchoolIcon
|
|
@@ -0,0 +1,42 @@
|
|
|
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 16.889 17",
|
|
8
|
+
width: h.width ?? 16,
|
|
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: "M14.3 11.115H4.9L3.8 3.559h11.187a1.4 1.4 0 0 1 1.385 1.6l-.688 4.756a1.4 1.4 0 0 1-1.384 1.2Z"
|
|
23
|
+
}),
|
|
24
|
+
t("path", { d: "M4.764 5.95h11.019" }),
|
|
25
|
+
t("path", { d: "m6.574 5.95.639 5.165" }),
|
|
26
|
+
t("path", { d: "m13.424 5.95-.639 5.165" }),
|
|
27
|
+
t("path", { d: "M10.148 5.95v5.165" }),
|
|
28
|
+
t("path", {
|
|
29
|
+
d: "M.5.5h1.674a1.4 1.4 0 0 1 1.388 1.218L4.94 12.241a1.4 1.4 0 0 0 1.388 1.218h9.033"
|
|
30
|
+
}),
|
|
31
|
+
t("path", {
|
|
32
|
+
d: "M6.048 13.933a1.284 1.284 0 1 1-1.283 1.283 1.283 1.283 0 0 1 1.283-1.283Z"
|
|
33
|
+
}),
|
|
34
|
+
t("path", {
|
|
35
|
+
d: "M14.366 13.933a1.284 1.284 0 1 1-1.283 1.283 1.283 1.283 0 0 1 1.283-1.283Z"
|
|
36
|
+
})
|
|
37
|
+
]
|
|
38
|
+
)
|
|
39
|
+
});
|
|
40
|
+
export {
|
|
41
|
+
r as SupermarketIcon
|
|
42
|
+
};
|