@wikicasa-dev/svg-icons 0.0.5 → 0.0.7
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/README.md +6 -0
- package/dist/EditIcon.js +26 -0
- package/dist/WikicasaDatiLogo.js +71 -0
- package/dist/WkFavIcon.js +32 -0
- package/dist/index.js +68 -62
- package/dist/lib/index.d.ts +4 -1
- 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 +2 -2
package/README.md
CHANGED
|
@@ -33,3 +33,9 @@ So, if you add a new component, you just need to add the _filename_ (without its
|
|
|
33
33
|
|
|
34
34
|
The main difference is that the icons are small and do are purely decorative (e.g the searchIcon which is generally placed in an autocomplete component).
|
|
35
35
|
An image instead, is an important element of the page (which is why it needs an alt text).
|
|
36
|
+
|
|
37
|
+
## Creating an accessible Svg Image
|
|
38
|
+
|
|
39
|
+
In order to create an accessible image, it's important to keep in mind that the svg should have a **`<title>`** tag and optionally a **`<desc>`** tag with an id associated to them via _aria-labeledby._
|
|
40
|
+
|
|
41
|
+
To ensure these requirements, there is a factory method called **svgImagefactory** which creates an accessible svg component.
|
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
|
@@ -5,44 +5,47 @@ import { BellIcon as m } from "./BellIcon.js";
|
|
|
5
5
|
import { BulbIcon as x } from "./BulbIcon.js";
|
|
6
6
|
import { CloseIcon as i } from "./CloseIcon.js";
|
|
7
7
|
import { DashboardIcon as s } from "./DashboardIcon.js";
|
|
8
|
-
import { DeleteIcon as
|
|
9
|
-
import { DrawIcon as
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
8
|
+
import { DeleteIcon as g } from "./DeleteIcon.js";
|
|
9
|
+
import { DrawIcon as W } from "./DrawIcon.js";
|
|
10
|
+
import { EditIcon as k } from "./EditIcon.js";
|
|
11
|
+
import { GermanyFlagIcon as h } from "./GermanyFlagIcon.js";
|
|
12
|
+
import { HeartIcon as D } from "./HeartIcon.js";
|
|
12
13
|
import { HidePswIcon as b } from "./HidePswIcon.js";
|
|
13
14
|
import { HouseIcon as A } from "./HouseIcon.js";
|
|
14
|
-
import { ItalyFlagIcon as
|
|
15
|
-
import { LayersIcon as
|
|
16
|
-
import { LocationIcon as
|
|
17
|
-
import { LogoutIcon as
|
|
18
|
-
import { MailIcon as
|
|
19
|
-
import { MapIcon as
|
|
15
|
+
import { ItalyFlagIcon as H } from "./ItalyFlagIcon.js";
|
|
16
|
+
import { LayersIcon as S } from "./LayersIcon.js";
|
|
17
|
+
import { LocationIcon as C } from "./LocationIcon.js";
|
|
18
|
+
import { LogoutIcon as R } from "./LogoutIcon.js";
|
|
19
|
+
import { MailIcon as U } from "./MailIcon.js";
|
|
20
|
+
import { MapIcon as v } from "./MapIcon.js";
|
|
20
21
|
import { NewsIcon as G } from "./NewsIcon.js";
|
|
21
22
|
import { NotesIcon as j } from "./NotesIcon.js";
|
|
22
|
-
import { PhoneIcon as
|
|
23
|
-
import { PinIcon as
|
|
24
|
-
import { PlanIcon as
|
|
25
|
-
import { PlusIcon as
|
|
26
|
-
import { PrestigeIcon as
|
|
27
|
-
import { PrintIcon as
|
|
28
|
-
import { ProfileIcon as
|
|
29
|
-
import { QuotesIcon as
|
|
30
|
-
import { RequestIcon as
|
|
31
|
-
import { SearchIcon as
|
|
32
|
-
import { ShareIcon as
|
|
33
|
-
import { SuitcaseIcon as
|
|
34
|
-
import { TieIcon as
|
|
35
|
-
import { TourIcon as
|
|
23
|
+
import { PhoneIcon as J } from "./PhoneIcon.js";
|
|
24
|
+
import { PinIcon as O } from "./PinIcon.js";
|
|
25
|
+
import { PlanIcon as Y } from "./PlanIcon.js";
|
|
26
|
+
import { PlusIcon as _ } from "./PlusIcon.js";
|
|
27
|
+
import { PrestigeIcon as oo } from "./PrestigeIcon.js";
|
|
28
|
+
import { PrintIcon as eo } from "./PrintIcon.js";
|
|
29
|
+
import { ProfileIcon as no } from "./ProfileIcon.js";
|
|
30
|
+
import { QuotesIcon as po } from "./QuotesIcon.js";
|
|
31
|
+
import { RequestIcon as mo } from "./RequestIcon.js";
|
|
32
|
+
import { SearchIcon as xo } from "./SearchIcon.js";
|
|
33
|
+
import { ShareIcon as io } from "./ShareIcon.js";
|
|
34
|
+
import { SuitcaseIcon as so } from "./SuitcaseIcon.js";
|
|
35
|
+
import { TieIcon as go } from "./TieIcon.js";
|
|
36
|
+
import { TourIcon as Wo } from "./TourIcon.js";
|
|
36
37
|
import { UkFlagIcon as wo } from "./UkFlagIcon.js";
|
|
37
|
-
import { ValuationIcon as
|
|
38
|
-
import { VideoIcon as
|
|
38
|
+
import { ValuationIcon as Lo } from "./ValuationIcon.js";
|
|
39
|
+
import { VideoIcon as Fo } from "./VideoIcon.js";
|
|
39
40
|
import { ViewPswIcon as yo } from "./ViewPswIcon.js";
|
|
40
41
|
import { WalletIcon as Bo } from "./WalletIcon.js";
|
|
41
|
-
import { WarningIcon as
|
|
42
|
-
import { WarningIconRounded as
|
|
43
|
-
import { WkAppIcon as
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
42
|
+
import { WarningIcon as No } from "./WarningIcon.js";
|
|
43
|
+
import { WarningIconRounded as Vo } from "./WarningIconRounded.js";
|
|
44
|
+
import { WkAppIcon as Mo } from "./WkAppIcon.js";
|
|
45
|
+
import { WkFavIcon as To } from "./WkFavIcon.js";
|
|
46
|
+
import { WikicasaDatiLogoIcon as qo } from "./WikicasaDatiLogo.js";
|
|
47
|
+
import { WikicasaLogoIcon as Eo } from "./WikicasaLogo.js";
|
|
48
|
+
import { WikiNerdIcon as Qo } from "./WikiNerdIcon.js";
|
|
46
49
|
export {
|
|
47
50
|
e as AboutUsIcon,
|
|
48
51
|
n as ArrowIcon,
|
|
@@ -51,42 +54,45 @@ export {
|
|
|
51
54
|
x as BulbIcon,
|
|
52
55
|
i as CloseIcon,
|
|
53
56
|
s as DashboardIcon,
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
57
|
+
g as DeleteIcon,
|
|
58
|
+
W as DrawIcon,
|
|
59
|
+
k as EditIcon,
|
|
60
|
+
h as GermanyFlagIcon,
|
|
61
|
+
D as HeartIcon,
|
|
58
62
|
b as HidePswIcon,
|
|
59
63
|
A as HouseIcon,
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
64
|
+
H as ItalyFlagIcon,
|
|
65
|
+
S as LayersIcon,
|
|
66
|
+
C as LocationIcon,
|
|
67
|
+
R as LogoutIcon,
|
|
68
|
+
U as MailIcon,
|
|
69
|
+
v as MapIcon,
|
|
66
70
|
G as NewsIcon,
|
|
67
71
|
j as NotesIcon,
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
72
|
+
J as PhoneIcon,
|
|
73
|
+
O as PinIcon,
|
|
74
|
+
Y as PlanIcon,
|
|
75
|
+
_ as PlusIcon,
|
|
76
|
+
oo as PrestigeIcon,
|
|
77
|
+
eo as PrintIcon,
|
|
78
|
+
no as ProfileIcon,
|
|
79
|
+
po as QuotesIcon,
|
|
80
|
+
mo as RequestIcon,
|
|
81
|
+
xo as SearchIcon,
|
|
82
|
+
io as ShareIcon,
|
|
83
|
+
so as SuitcaseIcon,
|
|
84
|
+
go as TieIcon,
|
|
85
|
+
Wo as TourIcon,
|
|
82
86
|
wo as UkFlagIcon,
|
|
83
|
-
|
|
84
|
-
|
|
87
|
+
Lo as ValuationIcon,
|
|
88
|
+
Fo as VideoIcon,
|
|
85
89
|
yo as ViewPswIcon,
|
|
86
90
|
Bo as WalletIcon,
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
91
|
+
No as WarningIcon,
|
|
92
|
+
Vo as WarningIconRounded,
|
|
93
|
+
Qo as WikiNerdIcon,
|
|
94
|
+
qo as WikicasaDatiLogoIcon,
|
|
95
|
+
Eo as WikicasaLogoIcon,
|
|
96
|
+
Mo as WkAppIcon,
|
|
97
|
+
To as WkFavIcon
|
|
92
98
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { CloseIcon } from './svgIcons/CloseIcon';
|
|
|
7
7
|
import { DashboardIcon } from './svgIcons/DashboardIcon';
|
|
8
8
|
import { DeleteIcon } from './svgIcons/DeleteIcon';
|
|
9
9
|
import { DrawIcon } from './svgIcons/DrawIcon';
|
|
10
|
+
import { EditIcon } from './svgIcons/EditIcon';
|
|
10
11
|
import { GermanyFlagIcon } from './svgIcons/GermanyFlagIcon';
|
|
11
12
|
import { HeartIcon } from './svgIcons/HeartIcon';
|
|
12
13
|
import { HidePswIcon } from './svgIcons/HidePswIcon';
|
|
@@ -41,6 +42,8 @@ import { WalletIcon } from './svgIcons/WalletIcon';
|
|
|
41
42
|
import { WarningIcon } from './svgIcons/WarningIcon';
|
|
42
43
|
import { WarningIconRounded } from './svgIcons/WarningIconRounded';
|
|
43
44
|
import { WkAppIcon } from './svgIcons/WkAppIcon';
|
|
45
|
+
import { WkFavIcon } from './svgIcons/WkFavIcon';
|
|
46
|
+
import { WikicasaDatiLogoIcon } from './svgImages/WikicasaDatiLogo';
|
|
44
47
|
import { WikicasaLogoIcon } from './svgImages/WikicasaLogo';
|
|
45
48
|
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 };
|
|
49
|
+
export { AboutUsIcon, ArrowIcon, BarChartIcon, BellIcon, BulbIcon, 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 };
|