@wikicasa-dev/svg-icons 0.0.7 → 0.0.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/CheckActiveIcon.js +37 -0
- package/dist/CheckInactiveIcon.js +37 -0
- package/dist/DeleteIcon.js +12 -11
- package/dist/index.js +92 -88
- package/dist/lib/index.d.ts +3 -1
- package/dist/lib/svgIcons/CheckActiveIcon.d.ts +3 -0
- package/dist/lib/svgIcons/CheckInactiveIcon.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/DeleteIcon.js
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
import { h as
|
|
2
|
-
import { g as
|
|
3
|
-
const
|
|
4
|
-
h = { ...
|
|
5
|
-
const { width:
|
|
6
|
-
return
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { g as a } from "./DefaultValues-k7iQWtC2.js";
|
|
3
|
+
const r = (h, { attrs: e }) => {
|
|
4
|
+
h = { ...a(), ...h };
|
|
5
|
+
const { width: o, height: v } = h;
|
|
6
|
+
return t(
|
|
7
7
|
"svg",
|
|
8
8
|
{
|
|
9
9
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10
10
|
viewBox: "0 0 11.175 13.409",
|
|
11
|
-
width: `${
|
|
11
|
+
width: `${o}`,
|
|
12
12
|
height: `${v}`,
|
|
13
13
|
class: h.class ?? "",
|
|
14
|
-
"aria-hidden":
|
|
14
|
+
"aria-hidden": e["aria-hidden"] ?? "true"
|
|
15
15
|
},
|
|
16
|
-
|
|
17
|
-
fill:
|
|
16
|
+
t("path", {
|
|
17
|
+
fill: e["fill-color"] ?? "#222",
|
|
18
|
+
stroke: e["stroke-color"],
|
|
18
19
|
d: `M4.47 0a1.076 1.076 0 0 0-1.117 1.117v.559H0v1.118h.559v8.94a1.685 1.685 0 0 0
|
|
19
20
|
1.676 1.676h6.7a1.685 1.685 0 0 0 1.676-1.676v-8.94h.559V1.676H7.822v-.559A1.076 1.076
|
|
20
21
|
0 0 0 6.7 0Zm0 1.117H6.7v.559H4.47ZM1.676 2.794H9.5v8.94a.557.557 0 0 1-.559.559h-6.7a.557.557
|
|
@@ -23,5 +24,5 @@ const l = (h, { attrs: t }) => {
|
|
|
23
24
|
);
|
|
24
25
|
};
|
|
25
26
|
export {
|
|
26
|
-
|
|
27
|
+
r as DeleteIcon
|
|
27
28
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,98 +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 {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
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";
|
|
49
51
|
export {
|
|
50
52
|
e as AboutUsIcon,
|
|
51
53
|
n as ArrowIcon,
|
|
52
54
|
p as BarChartIcon,
|
|
53
|
-
|
|
55
|
+
f as BellIcon,
|
|
54
56
|
x as BulbIcon,
|
|
55
|
-
i as
|
|
56
|
-
s as
|
|
57
|
-
g as
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
G as
|
|
71
|
-
j as
|
|
72
|
-
J as
|
|
73
|
-
O as
|
|
74
|
-
Y as
|
|
75
|
-
_ as
|
|
76
|
-
oo as
|
|
77
|
-
eo as
|
|
78
|
-
no as
|
|
79
|
-
po as
|
|
80
|
-
|
|
81
|
-
xo as
|
|
82
|
-
io as
|
|
83
|
-
so as
|
|
84
|
-
go as
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
Lo as
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
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
|
|
98
102
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ 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';
|
|
@@ -46,4 +48,4 @@ import { WkFavIcon } from './svgIcons/WkFavIcon';
|
|
|
46
48
|
import { WikicasaDatiLogoIcon } from './svgImages/WikicasaDatiLogo';
|
|
47
49
|
import { WikicasaLogoIcon } from './svgImages/WikicasaLogo';
|
|
48
50
|
import { WikiNerdIcon } from './svgImages/WikiNerdIcon';
|
|
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 };
|
|
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 };
|