@wikicasa-dev/svg-icons 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/CheckActiveIcon.js +37 -0
- package/dist/CheckInactiveIcon.js +37 -0
- package/dist/EditIcon.js +26 -0
- package/dist/WikicasaDatiLogo.js +71 -0
- package/dist/WkFavIcon.js +32 -0
- package/dist/index.js +92 -82
- package/dist/lib/index.d.ts +6 -1
- package/dist/lib/svgIcons/CheckActiveIcon.d.ts +3 -0
- package/dist/lib/svgIcons/CheckInactiveIcon.d.ts +3 -0
- package/dist/lib/svgIcons/EditIcon.d.ts +3 -0
- package/dist/lib/svgIcons/WkFavIcon.d.ts +3 -0
- package/dist/lib/svgImages/WikicasaDatiLogo.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { h as e } from "vue";
|
|
2
|
+
import { g as n } from "./DefaultValues-k7iQWtC2.js";
|
|
3
|
+
const c = (t, { attrs: i }) => {
|
|
4
|
+
t = { ...n(), ...t };
|
|
5
|
+
const { width: r, height: o } = t;
|
|
6
|
+
return e(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
viewBox: "0 0 20 20",
|
|
11
|
+
width: `${r}`,
|
|
12
|
+
height: `${o}`,
|
|
13
|
+
class: t.class ?? "",
|
|
14
|
+
"aria-hidden": i["aria-hidden"] ?? "true"
|
|
15
|
+
},
|
|
16
|
+
[
|
|
17
|
+
e("circle", {
|
|
18
|
+
cx: "10",
|
|
19
|
+
cy: "10",
|
|
20
|
+
r: "10",
|
|
21
|
+
fill: "#2b5dff",
|
|
22
|
+
stroke: "#2b5dff"
|
|
23
|
+
}),
|
|
24
|
+
e("path", {
|
|
25
|
+
fill: "none",
|
|
26
|
+
stroke: "#fff",
|
|
27
|
+
"stroke-linecap": "round",
|
|
28
|
+
"stroke-linejoin": "round",
|
|
29
|
+
"stroke-width": "2",
|
|
30
|
+
d: "m5.478 11.048 3.453 2.88 5.993-7.9"
|
|
31
|
+
})
|
|
32
|
+
]
|
|
33
|
+
);
|
|
34
|
+
};
|
|
35
|
+
export {
|
|
36
|
+
c as CheckActiveIcon
|
|
37
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { h as e } from "vue";
|
|
2
|
+
import { g as o } from "./DefaultValues-k7iQWtC2.js";
|
|
3
|
+
const s = (t, { attrs: i }) => {
|
|
4
|
+
t = { ...o(), ...t };
|
|
5
|
+
const { width: d, height: r } = t;
|
|
6
|
+
return e(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
viewBox: "0 0 20 20",
|
|
11
|
+
width: `${d}`,
|
|
12
|
+
height: `${r}`,
|
|
13
|
+
class: t.class ?? "",
|
|
14
|
+
"aria-hidden": i["aria-hidden"] ?? "true"
|
|
15
|
+
},
|
|
16
|
+
[
|
|
17
|
+
e("circle", {
|
|
18
|
+
cx: "10",
|
|
19
|
+
cy: "10",
|
|
20
|
+
r: "10",
|
|
21
|
+
fill: "#fff",
|
|
22
|
+
stroke: "#dcdcdd"
|
|
23
|
+
}),
|
|
24
|
+
e("path", {
|
|
25
|
+
fill: "none",
|
|
26
|
+
stroke: "#dcdcdd",
|
|
27
|
+
"stroke-linecap": "round",
|
|
28
|
+
"stroke-linejoin": "round",
|
|
29
|
+
"stroke-width": "2",
|
|
30
|
+
d: "m5.478 11.048 3.453 2.88 5.993-7.9"
|
|
31
|
+
})
|
|
32
|
+
]
|
|
33
|
+
);
|
|
34
|
+
};
|
|
35
|
+
export {
|
|
36
|
+
s as CheckInactiveIcon
|
|
37
|
+
};
|
package/dist/EditIcon.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { h as i } from "vue";
|
|
2
|
+
import { g as l } from "./DefaultValues-k7iQWtC2.js";
|
|
3
|
+
const s = (t, { attrs: e }) => {
|
|
4
|
+
t = { ...l(), ...t };
|
|
5
|
+
const { width: h, height: a } = t;
|
|
6
|
+
return i(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
viewBox: "0 0 128 128",
|
|
11
|
+
width: `${h}`,
|
|
12
|
+
height: `${a}`,
|
|
13
|
+
class: t.class ?? "",
|
|
14
|
+
"aria-hidden": e["aria-hidden"] ?? "true"
|
|
15
|
+
},
|
|
16
|
+
[
|
|
17
|
+
i("path", {
|
|
18
|
+
fill: "#2b5dff",
|
|
19
|
+
d: "M103.27 39.36 88.64 24.73c-.72-.72-1.89-.72-2.61 0L75.96 34.8l-45 44.37L48.2 96.41l45-44.37 10.07-10.07c.72-.72.72-1.89 0-2.61m-79.08 62.58c0 1.03.83 1.86 1.86 1.86l17.25-3.11-17.15-17.14z"
|
|
20
|
+
})
|
|
21
|
+
]
|
|
22
|
+
);
|
|
23
|
+
};
|
|
24
|
+
export {
|
|
25
|
+
s as EditIcon
|
|
26
|
+
};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { h as a } from "vue";
|
|
2
|
+
const f = (h, { attrs: l }) => a(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
viewBox: "0 0 234.002 65.959",
|
|
7
|
+
width: h.width ?? 128,
|
|
8
|
+
height: h.height ?? 36
|
|
9
|
+
},
|
|
10
|
+
[
|
|
11
|
+
a("path", {
|
|
12
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
13
|
+
d: "M64.391 0H2.444A2.46 2.46 0 0 0 0 2.444v50.789a2.445 2.445 0 0 0 2.444 2.444H25.59l6.824 9.706a1.229 1.229 0 0 0 2.006 0l6.824-9.706h23.124a2.445 2.445 0 0 0 2.444-2.444V2.444A2.411 2.411 0 0 0 64.391 0ZM60.84 10.282 49.59 46.455a.616.616 0 0 1-.576.438H40.23a.546.546 0 0 1-.53-.393l-6.018-19.78a.3.3 0 0 0-.576 0L27.089 46.5a.547.547 0 0 1-.53.369H17.8a.6.6 0 0 1-.576-.438L5.971 10.259a.613.613 0 0 1 .576-.784h8.6a.523.523 0 0 1 .53.415L21.717 32a.3.3 0 0 0 .576.023l7.17-22.109a.616.616 0 0 1 .577-.414h6.64a.6.6 0 0 1 .576.438l6.709 22.086a.3.3 0 0 0 .576 0l6.547-22.109a.568.568 0 0 1 .53-.392h8.6a.581.581 0 0 1 .622.761Z"
|
|
14
|
+
}),
|
|
15
|
+
a("path", {
|
|
16
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
17
|
+
d: "M76.217 9.084a4.578 4.578 0 0 1 1.867.369 5.351 5.351 0 0 1 1.545 1.037 4.793 4.793 0 0 1 1.037 1.545 4.911 4.911 0 0 1 0 3.735 5.35 5.35 0 0 1-1.037 1.545 4.793 4.793 0 0 1-1.545 1.037 4.911 4.911 0 0 1-3.735 0 5.349 5.349 0 0 1-1.545-1.037 4.792 4.792 0 0 1-1.037-1.545 4.911 4.911 0 0 1 0-3.735 5.35 5.35 0 0 1 1.037-1.545 4.792 4.792 0 0 1 1.545-1.037 4.735 4.735 0 0 1 1.868-.369Z"
|
|
18
|
+
}),
|
|
19
|
+
a("path", {
|
|
20
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
21
|
+
d: "M79.907 46.777H72.53a.6.6 0 0 1-.6-.6V23.193a.6.6 0 0 1 .6-.6h7.377a.6.6 0 0 1 .6.6v22.985a.6.6 0 0 1-.6.599Z"
|
|
22
|
+
}),
|
|
23
|
+
a("path", {
|
|
24
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
25
|
+
d: "m94.453 30.8 8.23-8.046a.63.63 0 0 1 .438-.184h9.936a.611.611 0 0 1 .415 1.061l-10.766 9.913a.283.283 0 0 0 0 .438l11.642 11.758a.6.6 0 0 1-.438 1.037h-10.304a.63.63 0 0 1-.438-.184l-8.692-9.13a.306.306 0 0 0-.53.207v8.484a.6.6 0 0 1-.6.6H85.97a.6.6 0 0 1-.6-.6V10.006a.6.6 0 0 1 .6-.6h7.377a.6.6 0 0 1 .6.6v20.587a.3.3 0 0 0 .507.207Z"
|
|
26
|
+
}),
|
|
27
|
+
a("path", {
|
|
28
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
29
|
+
d: "M121.842 9.222a4.578 4.578 0 0 1 1.867.369 5.35 5.35 0 0 1 1.545 1.037 4.792 4.792 0 0 1 1.037 1.545 4.911 4.911 0 0 1 0 3.735 5.349 5.349 0 0 1-1.037 1.545 4.793 4.793 0 0 1-1.545 1.037 4.911 4.911 0 0 1-3.735 0 5.349 5.349 0 0 1-1.545-1.037 4.791 4.791 0 0 1-1.037-1.545 4.911 4.911 0 0 1 0-3.735 5.348 5.348 0 0 1 1.037-1.545 4.792 4.792 0 0 1 1.545-1.037 4.994 4.994 0 0 1 1.868-.369Z"
|
|
30
|
+
}),
|
|
31
|
+
a("path", {
|
|
32
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
33
|
+
d: "M125.531 46.939h-7.377a.6.6 0 0 1-.6-.6V23.355a.6.6 0 0 1 .6-.6h7.377a.6.6 0 0 1 .6.6V46.34a.61.61 0 0 1-.6.599Z"
|
|
34
|
+
}),
|
|
35
|
+
a("path", {
|
|
36
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
37
|
+
d: "M148.862 29.326a.619.619 0 0 1-.922.53 18.693 18.693 0 0 0-1.153-.6 6.113 6.113 0 0 0-4.657-.046 5.864 5.864 0 0 0-1.891 1.245 5.763 5.763 0 0 0-1.245 1.867 5.9 5.9 0 0 0-.438 2.328 5.7 5.7 0 0 0 1.683 4.288 5.928 5.928 0 0 0 4.357 1.66 6.64 6.64 0 0 0 2.282-.415 7.793 7.793 0 0 0 1.084-.507.6.6 0 0 1 .922.53v5.648a.616.616 0 0 1-.346.553 12.825 12.825 0 0 1-2.605.876 13.924 13.924 0 0 1-3.089.323 13.771 13.771 0 0 1-5.072-.945 12.987 12.987 0 0 1-4.2-2.651 12.189 12.189 0 0 1-3.9-9.06 13.413 13.413 0 0 1 1.037-5.349 12.31 12.31 0 0 1 2.882-4.15 13.381 13.381 0 0 1 4.311-2.7 14.441 14.441 0 0 1 5.3-.968 12.6 12.6 0 0 1 2.951.346 11.134 11.134 0 0 1 2.4.9.6.6 0 0 1 .323.553v5.741Z"
|
|
38
|
+
}),
|
|
39
|
+
a("path", {
|
|
40
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
41
|
+
d: "M178.994 46.778h-7.377a.6.6 0 0 1-.6-.6v-2.075h-.092a6.735 6.735 0 0 1-3.158 2.651 10.532 10.532 0 0 1-4.15.853 11.605 11.605 0 0 1-4.934-1.037 12.135 12.135 0 0 1-3.873-2.813 12.775 12.775 0 0 1-2.535-4.126 14.049 14.049 0 0 1 0-9.89 13.341 13.341 0 0 1 2.467-4.1 11.565 11.565 0 0 1 8.76-3.854 11.117 11.117 0 0 1 4.127.784 8.359 8.359 0 0 1 3.274 2.259.065.065 0 0 0 .115-.046v-1.591a.6.6 0 0 1 .6-.6h7.377a.6.6 0 0 1 .6.6v22.985a.61.61 0 0 1-.601.6Zm-13.21-17.544a5.671 5.671 0 0 0-2.328.438 5.734 5.734 0 0 0-1.729 1.176 5.119 5.119 0 0 0-1.084 1.729 5.864 5.864 0 0 0-.368 2.12 5.544 5.544 0 0 0 1.429 3.873 6.095 6.095 0 0 0 8.161 0 5.441 5.441 0 0 0 1.429-3.873 5.864 5.864 0 0 0-.369-2.121 5.119 5.119 0 0 0-1.084-1.729 5.213 5.213 0 0 0-1.729-1.176 5.672 5.672 0 0 0-2.328-.437Z"
|
|
42
|
+
}),
|
|
43
|
+
a("path", {
|
|
44
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
45
|
+
d: "M200.066 28.195a.623.623 0 0 1-.784.277 11.129 11.129 0 0 0-1.752-.6 8.974 8.974 0 0 0-2.352-.323 4 4 0 0 0-.853.092 4.869 4.869 0 0 0-.876.277 2.485 2.485 0 0 0-.692.484 1.123 1.123 0 0 0-.277.784 1.217 1.217 0 0 0 .438.991 3.632 3.632 0 0 0 1.06.6 7.862 7.862 0 0 0 1.268.323c.438.069.807.161 1.084.207a12.707 12.707 0 0 1 2.79.83 8.2 8.2 0 0 1 2.213 1.383 5.993 5.993 0 0 1 1.475 2.052 6.947 6.947 0 0 1 .553 2.9 7.9 7.9 0 0 1-.991 4.1 8.685 8.685 0 0 1-2.628 2.79 11.987 11.987 0 0 1-3.666 1.614 16.788 16.788 0 0 1-4.15.53 17.974 17.974 0 0 1-5.072-.715 18.651 18.651 0 0 1-4.2-1.775.626.626 0 0 1-.231-.807l2.536-4.888a.619.619 0 0 1 .876-.231c.3.184.622.346.945.53a23.91 23.91 0 0 0 1.752.784 16.7 16.7 0 0 0 1.821.576 8.007 8.007 0 0 0 1.729.207 4.252 4.252 0 0 0 .9-.092 2.854 2.854 0 0 0 .876-.323 2.327 2.327 0 0 0 .669-.576 1.56 1.56 0 0 0-.208-1.96 3.833 3.833 0 0 0-1.222-.669 13.46 13.46 0 0 0-1.729-.438 21.838 21.838 0 0 1-1.96-.461 15.228 15.228 0 0 1-1.96-.692 5.749 5.749 0 0 1-1.729-1.13 5.167 5.167 0 0 1-1.222-1.821 6.75 6.75 0 0 1-.461-2.743 7.615 7.615 0 0 1 .922-3.85 8.5 8.5 0 0 1 2.421-2.7 10.736 10.736 0 0 1 3.412-1.568 15.845 15.845 0 0 1 3.9-.507 23.974 23.974 0 0 1 4.081.346 16.564 16.564 0 0 1 3.274.945.615.615 0 0 1 .323.853Z"
|
|
46
|
+
}),
|
|
47
|
+
a("path", {
|
|
48
|
+
fill: l["stroke-color"] ?? "#2b5dff",
|
|
49
|
+
d: "M233.403 46.778h-7.377a.6.6 0 0 1-.6-.6v-2.075h-.092a6.735 6.735 0 0 1-3.158 2.651 10.532 10.532 0 0 1-4.15.853 11.605 11.605 0 0 1-4.934-1.037 12.135 12.135 0 0 1-3.873-2.813 12.774 12.774 0 0 1-2.535-4.126 14.048 14.048 0 0 1 0-9.89 13.34 13.34 0 0 1 2.467-4.1 11.565 11.565 0 0 1 8.76-3.854 11.117 11.117 0 0 1 4.127.784 8.36 8.36 0 0 1 3.274 2.259.065.065 0 0 0 .115-.046v-1.591a.6.6 0 0 1 .6-.6h7.377a.6.6 0 0 1 .6.6v22.985a.61.61 0 0 1-.601.6ZM220.17 29.234a5.671 5.671 0 0 0-2.328.438 5.734 5.734 0 0 0-1.729 1.176 5.12 5.12 0 0 0-1.084 1.729 5.864 5.864 0 0 0-.369 2.121 5.543 5.543 0 0 0 1.429 3.873 6.095 6.095 0 0 0 8.161 0 5.441 5.441 0 0 0 1.434-3.874 5.864 5.864 0 0 0-.369-2.121 5.12 5.12 0 0 0-1.084-1.729 5.213 5.213 0 0 0-1.729-1.176 5.672 5.672 0 0 0-2.328-.438Z"
|
|
50
|
+
}),
|
|
51
|
+
a("path", {
|
|
52
|
+
fill: "#222",
|
|
53
|
+
d: "M194.279 52.749h5.072a5.9 5.9 0 0 1 2.536.553 7.3 7.3 0 0 1 2.075 1.452 6.2 6.2 0 0 1 1.383 2.1 6.3 6.3 0 0 1 .507 2.513 6.66 6.66 0 0 1-1.891 4.588 7 7 0 0 1-2.075 1.452 5.9 5.9 0 0 1-2.536.553h-5.071Zm3.412 10.305h.784a4.3 4.3 0 0 0 1.591-.277 3.45 3.45 0 0 0 1.176-.761 3.2 3.2 0 0 0 .738-1.153 4.3 4.3 0 0 0 .254-1.475 4.4 4.4 0 0 0-.254-1.475 3.4 3.4 0 0 0-.738-1.176 3.45 3.45 0 0 0-1.176-.761 4.2 4.2 0 0 0-1.568-.277h-.807Z"
|
|
54
|
+
}),
|
|
55
|
+
a("path", {
|
|
56
|
+
fill: "#222",
|
|
57
|
+
d: "M215.558 63.649h-4.911l-.784 2.282h-3.665l5.026-13.187h3.735l5.026 13.187h-3.666Zm-.922-2.605-1.545-4.4-1.545 4.4Z"
|
|
58
|
+
}),
|
|
59
|
+
a("path", {
|
|
60
|
+
fill: "#222",
|
|
61
|
+
d: "M225.933 55.649v10.282h-3.435V55.649h-2.813v-2.9h9.06v2.9Z"
|
|
62
|
+
}),
|
|
63
|
+
a("path", {
|
|
64
|
+
fill: "#222",
|
|
65
|
+
d: "M233.702 52.749v13.187h-3.435V52.749Z"
|
|
66
|
+
})
|
|
67
|
+
]
|
|
68
|
+
);
|
|
69
|
+
export {
|
|
70
|
+
f as WikicasaDatiLogoIcon
|
|
71
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { g as e } from "./DefaultValues-k7iQWtC2.js";
|
|
3
|
+
const f = (a, { attrs: h }) => {
|
|
4
|
+
a = { ...e(), ...a };
|
|
5
|
+
const { width: i, height: l } = a;
|
|
6
|
+
return t(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
viewBox: "0 0 66.625 65.721",
|
|
11
|
+
width: `${i}`,
|
|
12
|
+
height: `${l}`,
|
|
13
|
+
class: a.class ?? "",
|
|
14
|
+
"aria-hidden": h["aria-hidden"] ?? "true"
|
|
15
|
+
},
|
|
16
|
+
[
|
|
17
|
+
t("path", {
|
|
18
|
+
fill: "#2b5dff",
|
|
19
|
+
d: "M64.179 55.521H41.12L34.313 65.2a1.223 1.223 0 0 1-2 0l-6.795-9.68H2.445a2.445 2.445 0 0 1-2.446-2.445V2.445A2.445 2.445 0 0 1 2.445 0h61.734a2.445 2.445 0 0 1 2.445 2.445v50.63a2.445 2.445 0 0 1-2.445 2.445",
|
|
20
|
+
"data-name": "Tracciato 13305"
|
|
21
|
+
}),
|
|
22
|
+
t("path", {
|
|
23
|
+
fill: "#fff",
|
|
24
|
+
d: "m22.249 31.91 7.148-22.033a.61.61 0 0 1 .578-.42h6.611a.61.61 0 0 1 .581.431l6.691 22.022a.3.3 0 0 0 .582 0l6.521-22.047a.56.56 0 0 1 .536-.4h8.567a.607.607 0 0 1 .58.788L49.429 46.31a.61.61 0 0 1-.58.427h-8.754a.56.56 0 0 1-.534-.4L33.566 26.61a.3.3 0 0 0-.578-.01l-6 19.751a.56.56 0 0 1-.529.379H17.75a.61.61 0 0 1-.584-.438L5.953 10.232a.608.608 0 0 1 .583-.777h8.574a.56.56 0 0 1 .539.413l6.017 22.026a.3.3 0 0 0 .582.014",
|
|
25
|
+
"data-name": "Tracciato 13306"
|
|
26
|
+
})
|
|
27
|
+
]
|
|
28
|
+
);
|
|
29
|
+
};
|
|
30
|
+
export {
|
|
31
|
+
f as WkFavIcon
|
|
32
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -1,92 +1,102 @@
|
|
|
1
1
|
import { AboutUsIcon as e } from "./AboutUsIcon.js";
|
|
2
2
|
import { ArrowIcon as n } from "./ArrowIcon.js";
|
|
3
3
|
import { BarChartIcon as p } from "./BarChartIcon.js";
|
|
4
|
-
import { BellIcon as
|
|
4
|
+
import { BellIcon as f } from "./BellIcon.js";
|
|
5
5
|
import { BulbIcon as x } from "./BulbIcon.js";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
6
|
+
import { CheckActiveIcon as i } from "./CheckActiveIcon.js";
|
|
7
|
+
import { CheckInactiveIcon as s } from "./CheckInactiveIcon.js";
|
|
8
|
+
import { CloseIcon as g } from "./CloseIcon.js";
|
|
9
|
+
import { DashboardIcon as k } from "./DashboardIcon.js";
|
|
10
|
+
import { DeleteIcon as d } from "./DeleteIcon.js";
|
|
11
|
+
import { DrawIcon as w } from "./DrawIcon.js";
|
|
12
|
+
import { EditIcon as A } from "./EditIcon.js";
|
|
13
|
+
import { GermanyFlagIcon as D } from "./GermanyFlagIcon.js";
|
|
14
|
+
import { HeartIcon as b } from "./HeartIcon.js";
|
|
15
|
+
import { HidePswIcon as y } from "./HidePswIcon.js";
|
|
16
|
+
import { HouseIcon as H } from "./HouseIcon.js";
|
|
17
|
+
import { ItalyFlagIcon as S } from "./ItalyFlagIcon.js";
|
|
18
|
+
import { LayersIcon as M } from "./LayersIcon.js";
|
|
19
|
+
import { LocationIcon as T } from "./LocationIcon.js";
|
|
20
|
+
import { LogoutIcon as q } from "./LogoutIcon.js";
|
|
21
|
+
import { MailIcon as G } from "./MailIcon.js";
|
|
22
|
+
import { MapIcon as j } from "./MapIcon.js";
|
|
23
|
+
import { NewsIcon as J } from "./NewsIcon.js";
|
|
24
|
+
import { NotesIcon as O } from "./NotesIcon.js";
|
|
25
|
+
import { PhoneIcon as Y } from "./PhoneIcon.js";
|
|
26
|
+
import { PinIcon as _ } from "./PinIcon.js";
|
|
27
|
+
import { PlanIcon as oo } from "./PlanIcon.js";
|
|
28
|
+
import { PlusIcon as eo } from "./PlusIcon.js";
|
|
29
|
+
import { PrestigeIcon as no } from "./PrestigeIcon.js";
|
|
30
|
+
import { PrintIcon as po } from "./PrintIcon.js";
|
|
31
|
+
import { ProfileIcon as fo } from "./ProfileIcon.js";
|
|
32
|
+
import { QuotesIcon as xo } from "./QuotesIcon.js";
|
|
33
|
+
import { RequestIcon as io } from "./RequestIcon.js";
|
|
34
|
+
import { SearchIcon as so } from "./SearchIcon.js";
|
|
35
|
+
import { ShareIcon as go } from "./ShareIcon.js";
|
|
36
|
+
import { SuitcaseIcon as ko } from "./SuitcaseIcon.js";
|
|
37
|
+
import { TieIcon as ho } from "./TieIcon.js";
|
|
38
|
+
import { TourIcon as Lo } from "./TourIcon.js";
|
|
39
|
+
import { UkFlagIcon as Co } from "./UkFlagIcon.js";
|
|
40
|
+
import { ValuationIcon as Fo } from "./ValuationIcon.js";
|
|
41
|
+
import { VideoIcon as vo } from "./VideoIcon.js";
|
|
42
|
+
import { ViewPswIcon as Bo } from "./ViewPswIcon.js";
|
|
43
|
+
import { WalletIcon as No } from "./WalletIcon.js";
|
|
44
|
+
import { WarningIcon as Vo } from "./WarningIcon.js";
|
|
45
|
+
import { WarningIconRounded as Ro } from "./WarningIconRounded.js";
|
|
46
|
+
import { WkAppIcon as Uo } from "./WkAppIcon.js";
|
|
47
|
+
import { WkFavIcon as Eo } from "./WkFavIcon.js";
|
|
48
|
+
import { WikicasaDatiLogoIcon as Qo } from "./WikicasaDatiLogo.js";
|
|
49
|
+
import { WikicasaLogoIcon as zo } from "./WikicasaLogo.js";
|
|
50
|
+
import { WikiNerdIcon as Ko } from "./WikiNerdIcon.js";
|
|
46
51
|
export {
|
|
47
52
|
e as AboutUsIcon,
|
|
48
53
|
n as ArrowIcon,
|
|
49
54
|
p as BarChartIcon,
|
|
50
|
-
|
|
55
|
+
f as BellIcon,
|
|
51
56
|
x as BulbIcon,
|
|
52
|
-
i as
|
|
53
|
-
s as
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
J as
|
|
70
|
-
O as
|
|
71
|
-
Y as
|
|
72
|
-
_ as
|
|
73
|
-
oo as
|
|
74
|
-
eo as
|
|
75
|
-
no as
|
|
76
|
-
po as
|
|
77
|
-
|
|
78
|
-
xo as
|
|
79
|
-
io as
|
|
80
|
-
so as
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
ho as
|
|
84
|
-
Lo as
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
57
|
+
i as CheckActiveIcon,
|
|
58
|
+
s as CheckInactiveIcon,
|
|
59
|
+
g as CloseIcon,
|
|
60
|
+
k as DashboardIcon,
|
|
61
|
+
d as DeleteIcon,
|
|
62
|
+
w as DrawIcon,
|
|
63
|
+
A as EditIcon,
|
|
64
|
+
D as GermanyFlagIcon,
|
|
65
|
+
b as HeartIcon,
|
|
66
|
+
y as HidePswIcon,
|
|
67
|
+
H as HouseIcon,
|
|
68
|
+
S as ItalyFlagIcon,
|
|
69
|
+
M as LayersIcon,
|
|
70
|
+
T as LocationIcon,
|
|
71
|
+
q as LogoutIcon,
|
|
72
|
+
G as MailIcon,
|
|
73
|
+
j as MapIcon,
|
|
74
|
+
J as NewsIcon,
|
|
75
|
+
O as NotesIcon,
|
|
76
|
+
Y as PhoneIcon,
|
|
77
|
+
_ as PinIcon,
|
|
78
|
+
oo as PlanIcon,
|
|
79
|
+
eo as PlusIcon,
|
|
80
|
+
no as PrestigeIcon,
|
|
81
|
+
po as PrintIcon,
|
|
82
|
+
fo as ProfileIcon,
|
|
83
|
+
xo as QuotesIcon,
|
|
84
|
+
io as RequestIcon,
|
|
85
|
+
so as SearchIcon,
|
|
86
|
+
go as ShareIcon,
|
|
87
|
+
ko as SuitcaseIcon,
|
|
88
|
+
ho as TieIcon,
|
|
89
|
+
Lo as TourIcon,
|
|
90
|
+
Co as UkFlagIcon,
|
|
91
|
+
Fo as ValuationIcon,
|
|
92
|
+
vo as VideoIcon,
|
|
93
|
+
Bo as ViewPswIcon,
|
|
94
|
+
No as WalletIcon,
|
|
95
|
+
Vo as WarningIcon,
|
|
96
|
+
Ro as WarningIconRounded,
|
|
97
|
+
Ko as WikiNerdIcon,
|
|
98
|
+
Qo as WikicasaDatiLogoIcon,
|
|
99
|
+
zo as WikicasaLogoIcon,
|
|
100
|
+
Uo as WkAppIcon,
|
|
101
|
+
Eo as WkFavIcon
|
|
92
102
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -3,10 +3,13 @@ import { ArrowIcon } from './svgIcons/ArrowIcon';
|
|
|
3
3
|
import { BarChartIcon } from './svgIcons/BarChartIcon';
|
|
4
4
|
import { BellIcon } from './svgIcons/BellIcon';
|
|
5
5
|
import { BulbIcon } from './svgIcons/BulbIcon';
|
|
6
|
+
import { CheckActiveIcon } from './svgIcons/CheckActiveIcon';
|
|
7
|
+
import { CheckInactiveIcon } from './svgIcons/CheckInactiveIcon';
|
|
6
8
|
import { CloseIcon } from './svgIcons/CloseIcon';
|
|
7
9
|
import { DashboardIcon } from './svgIcons/DashboardIcon';
|
|
8
10
|
import { DeleteIcon } from './svgIcons/DeleteIcon';
|
|
9
11
|
import { DrawIcon } from './svgIcons/DrawIcon';
|
|
12
|
+
import { EditIcon } from './svgIcons/EditIcon';
|
|
10
13
|
import { GermanyFlagIcon } from './svgIcons/GermanyFlagIcon';
|
|
11
14
|
import { HeartIcon } from './svgIcons/HeartIcon';
|
|
12
15
|
import { HidePswIcon } from './svgIcons/HidePswIcon';
|
|
@@ -41,6 +44,8 @@ import { WalletIcon } from './svgIcons/WalletIcon';
|
|
|
41
44
|
import { WarningIcon } from './svgIcons/WarningIcon';
|
|
42
45
|
import { WarningIconRounded } from './svgIcons/WarningIconRounded';
|
|
43
46
|
import { WkAppIcon } from './svgIcons/WkAppIcon';
|
|
47
|
+
import { WkFavIcon } from './svgIcons/WkFavIcon';
|
|
48
|
+
import { WikicasaDatiLogoIcon } from './svgImages/WikicasaDatiLogo';
|
|
44
49
|
import { WikicasaLogoIcon } from './svgImages/WikicasaLogo';
|
|
45
50
|
import { WikiNerdIcon } from './svgImages/WikiNerdIcon';
|
|
46
|
-
export { AboutUsIcon, ArrowIcon, BarChartIcon, BellIcon, BulbIcon, CloseIcon, DashboardIcon, DeleteIcon, DrawIcon, GermanyFlagIcon, HeartIcon, HidePswIcon, HouseIcon, ItalyFlagIcon, LayersIcon, LocationIcon, LogoutIcon, MailIcon, MapIcon, NewsIcon, NotesIcon, PhoneIcon, PinIcon, PlanIcon, PlusIcon, PrestigeIcon, PrintIcon, ProfileIcon, QuotesIcon, RequestIcon, SearchIcon, ShareIcon, SuitcaseIcon, TieIcon, TourIcon, UkFlagIcon, ValuationIcon, VideoIcon, ViewPswIcon, WalletIcon, WarningIcon, WarningIconRounded, WikicasaLogoIcon, WikiNerdIcon, WkAppIcon };
|
|
51
|
+
export { AboutUsIcon, ArrowIcon, BarChartIcon, BellIcon, BulbIcon, CheckActiveIcon, CheckInactiveIcon, CloseIcon, DashboardIcon, DeleteIcon, DrawIcon, EditIcon, GermanyFlagIcon, HeartIcon, HidePswIcon, HouseIcon, ItalyFlagIcon, LayersIcon, LocationIcon, LogoutIcon, MailIcon, MapIcon, NewsIcon, NotesIcon, PhoneIcon, PinIcon, PlanIcon, PlusIcon, PrestigeIcon, PrintIcon, ProfileIcon, QuotesIcon, RequestIcon, SearchIcon, ShareIcon, SuitcaseIcon, TieIcon, TourIcon, UkFlagIcon, ValuationIcon, VideoIcon, ViewPswIcon, WalletIcon, WarningIcon, WarningIconRounded, WikicasaLogoIcon, WikicasaDatiLogoIcon, WikiNerdIcon, WkAppIcon, WkFavIcon };
|