@wikicasa-dev/svg-icons 0.0.10 → 0.0.12
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/FacebookIcon.js +15 -0
- package/dist/FunctionalSvgIconComponent.js +1 -0
- package/dist/HamburgerMenuIcon.js +39 -0
- package/dist/InstagramIcon.js +29 -0
- package/dist/LinkedinIcon.js +20 -0
- package/dist/YoutubeIcon.js +22 -0
- package/dist/index.js +66 -56
- package/dist/lib/index.d.ts +6 -1
- package/dist/lib/svgIcons/AnalyticsIcon.d.ts +1 -1
- package/dist/lib/svgIcons/ArrowIcon.d.ts +1 -1
- package/dist/lib/svgIcons/FacebookIcon.d.ts +2 -0
- package/dist/lib/svgIcons/GearIcon.d.ts +1 -1
- package/dist/lib/svgIcons/HamburgerMenuIcon.d.ts +2 -0
- package/dist/lib/svgIcons/InstagramIcon.d.ts +2 -0
- package/dist/lib/svgIcons/LinkedinIcon.d.ts +2 -0
- package/dist/lib/svgIcons/WikicasaIcon.d.ts +1 -1
- package/dist/lib/svgIcons/YoutubeIcon.d.ts +2 -0
- package/dist/types/FunctionalSvgIconComponent.d.ts +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { h as c } from "vue";
|
|
2
|
+
import { s as r } from "./svgIconFactory-vMvYZl5W.js";
|
|
3
|
+
const e = (o) => r({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 9.876 17" },
|
|
6
|
+
childrenNodes: c("path", {
|
|
7
|
+
fill: "none",
|
|
8
|
+
stroke: "#222",
|
|
9
|
+
"stroke-linecap": "round",
|
|
10
|
+
d: "M3.208 6.04v-.245c.01-.584-.018-1.173.038-1.751a3.841 3.841 0 0 1 1.786-3.029 3.285 3.285 0 0 1 1.774-.51c.8-.009 1.607 0 2.412 0 .112 0 .156.023.156.147q-.008 1.245 0 2.486c0 .133-.047.156-.166.155h-2.2a.723.723 0 0 0-.774.684c-.034.319-.027.638-.031.959s0 .629 0 .943c0 .131.036.173.17.171.939-.007 1.877 0 2.815-.007.153 0 .193.038.193.192-.007.752-.007 1.508 0 2.262 0 .122-.032.162-.158.161-.945-.005-1.889 0-2.833-.005-.143 0-.185.039-.185.182q.006 3.742 0 7.479c0 .194 0 .194-.2.194H3.444c-.236 0-.236 0-.236-.231V8.861c0-.206 0-.2-.2-.2H.673c-.132 0-.171-.036-.171-.167q.011-1.131 0-2.263c0-.143.038-.186.183-.186.774.009 1.549 0 2.322 0Z"
|
|
11
|
+
})
|
|
12
|
+
});
|
|
13
|
+
export {
|
|
14
|
+
e as FacebookIcon
|
|
15
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-vMvYZl5W.js";
|
|
3
|
+
const h = (t, { attrs: r }) => e({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17.361 16" },
|
|
6
|
+
childrenNodes: [
|
|
7
|
+
o(
|
|
8
|
+
"defs",
|
|
9
|
+
o(
|
|
10
|
+
"clipPath",
|
|
11
|
+
{ id: "a" },
|
|
12
|
+
o("path", {
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: r["stroke-color"] ?? "#222",
|
|
15
|
+
d: "M0 0h17.361v16H0z"
|
|
16
|
+
})
|
|
17
|
+
)
|
|
18
|
+
),
|
|
19
|
+
o(
|
|
20
|
+
"g",
|
|
21
|
+
{
|
|
22
|
+
fill: "none",
|
|
23
|
+
stroke: r["stroke-color"] ?? "#222",
|
|
24
|
+
"stroke-linecap": "round",
|
|
25
|
+
"stroke-linejoin": "round",
|
|
26
|
+
"stroke-width": r["stroke-width"] ?? "1.5",
|
|
27
|
+
"clip-path": "url(#a)"
|
|
28
|
+
},
|
|
29
|
+
[
|
|
30
|
+
o("path", { d: "M.992 1.379h15.377" }),
|
|
31
|
+
o("path", { d: "M.992 8h15.377" }),
|
|
32
|
+
o("path", { d: "M.992 14.621h15.377" })
|
|
33
|
+
]
|
|
34
|
+
)
|
|
35
|
+
]
|
|
36
|
+
});
|
|
37
|
+
export {
|
|
38
|
+
h as HamburgerMenuIcon
|
|
39
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-vMvYZl5W.js";
|
|
3
|
+
const e = (r) => o({
|
|
4
|
+
props: r,
|
|
5
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
|
|
6
|
+
childrenNodes: [
|
|
7
|
+
t(
|
|
8
|
+
"defs",
|
|
9
|
+
t("clipPath", { id: "a" }, t("path", { fill: "none", stroke: "#222", d: "M0 0h16v16H0Z" }))
|
|
10
|
+
),
|
|
11
|
+
t(
|
|
12
|
+
"g",
|
|
13
|
+
{ fill: "none", stroke: "#222", "clip-path": "url(#a)", transform: "translate(0 .001)" },
|
|
14
|
+
[
|
|
15
|
+
t("rect", {
|
|
16
|
+
width: "15.166",
|
|
17
|
+
height: "15.166",
|
|
18
|
+
rx: "4.888",
|
|
19
|
+
transform: "translate(.417 .417)"
|
|
20
|
+
}),
|
|
21
|
+
t("path", { d: "M4.436 8A3.564 3.564 0 1 0 8 4.436 3.564 3.564 0 0 0 4.436 8Z" }),
|
|
22
|
+
t("path", { d: "M11.695 3.568a.794.794 0 1 1 .795.795.794.794 0 0 1-.795-.795" })
|
|
23
|
+
]
|
|
24
|
+
)
|
|
25
|
+
]
|
|
26
|
+
});
|
|
27
|
+
export {
|
|
28
|
+
e as InstagramIcon
|
|
29
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as c } from "./svgIconFactory-vMvYZl5W.js";
|
|
3
|
+
const e = (t) => c({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17.746 17.001" },
|
|
6
|
+
childrenNodes: o("g", { fill: "none", stroke: "#222", "stroke-linecap": "round" }, [
|
|
7
|
+
o("path", {
|
|
8
|
+
d: "M13.613 16.491v-.2c-.005-1.94 0-3.879-.01-5.817a3.106 3.106 0 0 0-.29-1.388 1.584 1.584 0 0 0-1.574-.905 1.843 1.843 0 0 0-1.331.564 1.9 1.9 0 0 0-.6 1.319c-.014.756-.014 1.518-.014 2.274v4.018c0 .088-.01.14-.122.14-1.14 0-3.476 0-3.5-.01V5.573c.046 0 2.354 0 3.466-.007.135 0 .163.042.159.163v1.2c.009.134.112.027.153-.033a3.511 3.511 0 0 1 2.607-1.55 4.474 4.474 0 0 1 2.471.407 3.527 3.527 0 0 1 1.561 1.509 6.084 6.084 0 0 1 .658 2.99c.01 1.409.005 2.821.005 4.236v2Z"
|
|
9
|
+
}),
|
|
10
|
+
o("path", {
|
|
11
|
+
d: "M4.356 16.492H.731V5.739c0-.135.038-.167.173-.167h3.3c.135-.006.16.042.16.163q-.01 5.3-.006 10.608Z"
|
|
12
|
+
}),
|
|
13
|
+
o("path", {
|
|
14
|
+
d: "M2.536 4.285a1.929 1.929 0 0 1-1.73-.87A1.855 1.855 0 0 1 1.835.623a2.227 2.227 0 0 1 2 .267 1.782 1.782 0 0 1 .743 1.765 1.714 1.714 0 0 1-1.192 1.481 3.693 3.693 0 0 1-.85.149Z"
|
|
15
|
+
})
|
|
16
|
+
])
|
|
17
|
+
});
|
|
18
|
+
export {
|
|
19
|
+
e as LinkedinIcon
|
|
20
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as t } from "./svgIconFactory-vMvYZl5W.js";
|
|
3
|
+
const s = (r) => t({
|
|
4
|
+
props: r,
|
|
5
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 23.791 16.996" },
|
|
6
|
+
childrenNodes: o(
|
|
7
|
+
"g",
|
|
8
|
+
o(
|
|
9
|
+
"g",
|
|
10
|
+
o("path", {
|
|
11
|
+
fill: "none",
|
|
12
|
+
stroke: "#222",
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round",
|
|
15
|
+
d: "M.805 2.743A2.773 2.773 0 0 1 2.916.863c.422-.077.844-.115 1.3-.154C5.751.632 7.286.517 8.821.517c2.072-.038 4.106 0 6.179 0 1.727 0 3.492.115 5.219.269a2.911 2.911 0 0 1 2.649 2.224 14.777 14.777 0 0 1 .307 2.226 44.12 44.12 0 0 1-.038 6.754 9.373 9.373 0 0 1-.422 2.3 2.727 2.727 0 0 1-2.111 1.842c-.384.077-.806.115-1.19.154-1.574.077-3.185.192-4.759.192-2.072.038-4.106 0-6.179 0-1.727 0-3.492-.115-5.219-.269a2.978 2.978 0 0 1-2.682-2.376 97.086 97.086 0 0 1 .23-11.09Zm8.021 9.326c2.456-1.266 4.836-2.533 7.33-3.8-2.456-1.266-4.874-2.533-7.33-3.8v7.6Z"
|
|
16
|
+
})
|
|
17
|
+
)
|
|
18
|
+
)
|
|
19
|
+
});
|
|
20
|
+
export {
|
|
21
|
+
s as YoutubeIcon
|
|
22
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -1,108 +1,118 @@
|
|
|
1
1
|
import { AboutUsIcon as e } from "./AboutUsIcon.js";
|
|
2
2
|
import { ArrowIcon as n } from "./ArrowIcon.js";
|
|
3
|
-
import { BarChartIcon as
|
|
4
|
-
import { BellIcon as
|
|
3
|
+
import { BarChartIcon as m } from "./BarChartIcon.js";
|
|
4
|
+
import { BellIcon as I } from "./BellIcon.js";
|
|
5
5
|
import { BulbIcon as x } from "./BulbIcon.js";
|
|
6
6
|
import { CheckActiveIcon as i } from "./CheckActiveIcon.js";
|
|
7
7
|
import { CheckInactiveIcon as l } from "./CheckInactiveIcon.js";
|
|
8
8
|
import { CloseIcon as g } from "./CloseIcon.js";
|
|
9
9
|
import { DashboardIcon as P } from "./DashboardIcon.js";
|
|
10
10
|
import { DeleteIcon as d } from "./DeleteIcon.js";
|
|
11
|
-
import { DrawIcon as
|
|
11
|
+
import { DrawIcon as b } from "./DrawIcon.js";
|
|
12
12
|
import { EditIcon as L } from "./EditIcon.js";
|
|
13
|
-
import { GermanyFlagIcon as
|
|
14
|
-
import { HeartIcon as
|
|
15
|
-
import { HidePswIcon as
|
|
16
|
-
import { HouseIcon as
|
|
17
|
-
import { ItalyFlagIcon as
|
|
18
|
-
import { LayersIcon as
|
|
13
|
+
import { GermanyFlagIcon as F } from "./GermanyFlagIcon.js";
|
|
14
|
+
import { HeartIcon as C } from "./HeartIcon.js";
|
|
15
|
+
import { HidePswIcon as H } from "./HidePswIcon.js";
|
|
16
|
+
import { HouseIcon as B } from "./HouseIcon.js";
|
|
17
|
+
import { ItalyFlagIcon as N } from "./ItalyFlagIcon.js";
|
|
18
|
+
import { LayersIcon as V } from "./LayersIcon.js";
|
|
19
19
|
import { LocationIcon as R } from "./LocationIcon.js";
|
|
20
20
|
import { LogoutIcon as U } from "./LogoutIcon.js";
|
|
21
21
|
import { MailIcon as E } from "./MailIcon.js";
|
|
22
|
-
import { MapIcon as
|
|
23
|
-
import { NewsIcon as
|
|
24
|
-
import { NotesIcon as
|
|
25
|
-
import { PhoneIcon as
|
|
22
|
+
import { MapIcon as Y } from "./MapIcon.js";
|
|
23
|
+
import { NewsIcon as z } from "./NewsIcon.js";
|
|
24
|
+
import { NotesIcon as K } from "./NotesIcon.js";
|
|
25
|
+
import { PhoneIcon as X } from "./PhoneIcon.js";
|
|
26
26
|
import { PinIcon as _ } from "./PinIcon.js";
|
|
27
27
|
import { PlanIcon as oo } from "./PlanIcon.js";
|
|
28
28
|
import { PlusIcon as eo } from "./PlusIcon.js";
|
|
29
29
|
import { PrestigeIcon as no } from "./PrestigeIcon.js";
|
|
30
|
-
import { PrintIcon as
|
|
31
|
-
import { ProfileIcon as
|
|
30
|
+
import { PrintIcon as mo } from "./PrintIcon.js";
|
|
31
|
+
import { ProfileIcon as Io } from "./ProfileIcon.js";
|
|
32
32
|
import { QuotesIcon as xo } from "./QuotesIcon.js";
|
|
33
33
|
import { RequestIcon as io } from "./RequestIcon.js";
|
|
34
34
|
import { SearchIcon as lo } from "./SearchIcon.js";
|
|
35
35
|
import { ShareIcon as go } from "./ShareIcon.js";
|
|
36
36
|
import { SuitcaseIcon as Po } from "./SuitcaseIcon.js";
|
|
37
37
|
import { TieIcon as ho } from "./TieIcon.js";
|
|
38
|
-
import { TourIcon as
|
|
39
|
-
import { UkFlagIcon as
|
|
40
|
-
import { ValuationIcon as
|
|
41
|
-
import { VideoIcon as
|
|
42
|
-
import { ViewPswIcon as
|
|
43
|
-
import { WalletIcon as
|
|
44
|
-
import { WarningIcon as
|
|
45
|
-
import { WarningIconRounded as
|
|
38
|
+
import { TourIcon as wo } from "./TourIcon.js";
|
|
39
|
+
import { UkFlagIcon as Ao } from "./UkFlagIcon.js";
|
|
40
|
+
import { ValuationIcon as yo } from "./ValuationIcon.js";
|
|
41
|
+
import { VideoIcon as Do } from "./VideoIcon.js";
|
|
42
|
+
import { ViewPswIcon as vo } from "./ViewPswIcon.js";
|
|
43
|
+
import { WalletIcon as Mo } from "./WalletIcon.js";
|
|
44
|
+
import { WarningIcon as So } from "./WarningIcon.js";
|
|
45
|
+
import { WarningIconRounded as Go } from "./WarningIconRounded.js";
|
|
46
46
|
import { WkAppIcon as To } from "./WkAppIcon.js";
|
|
47
47
|
import { AnalyticsIcon as qo } from "./AnalyticsIcon.js";
|
|
48
48
|
import { WikicasaIcon as Qo } from "./WikicasaIcon.js";
|
|
49
|
-
import { GearIcon as
|
|
50
|
-
import { WkFavIcon as
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
49
|
+
import { GearIcon as jo } from "./GearIcon.js";
|
|
50
|
+
import { WkFavIcon as Jo } from "./WkFavIcon.js";
|
|
51
|
+
import { FacebookIcon as Oo } from "./FacebookIcon.js";
|
|
52
|
+
import { LinkedinIcon as Zo } from "./LinkedinIcon.js";
|
|
53
|
+
import { InstagramIcon as $o } from "./InstagramIcon.js";
|
|
54
|
+
import { YoutubeIcon as rr } from "./YoutubeIcon.js";
|
|
55
|
+
import { HamburgerMenuIcon as tr } from "./HamburgerMenuIcon.js";
|
|
56
|
+
import { WikicasaDatiLogoIcon as cr } from "./WikicasaDatiLogo.js";
|
|
57
|
+
import { WikicasaLogoIcon as pr } from "./WikicasaLogo.js";
|
|
58
|
+
import { WikiNerdIcon as fr } from "./WikiNerdIcon.js";
|
|
54
59
|
export {
|
|
55
60
|
e as AboutUsIcon,
|
|
56
61
|
qo as AnalyticsIcon,
|
|
57
62
|
n as ArrowIcon,
|
|
58
|
-
|
|
59
|
-
|
|
63
|
+
m as BarChartIcon,
|
|
64
|
+
I as BellIcon,
|
|
60
65
|
x as BulbIcon,
|
|
61
66
|
i as CheckActiveIcon,
|
|
62
67
|
l as CheckInactiveIcon,
|
|
63
68
|
g as CloseIcon,
|
|
64
69
|
P as DashboardIcon,
|
|
65
70
|
d as DeleteIcon,
|
|
66
|
-
|
|
71
|
+
b as DrawIcon,
|
|
67
72
|
L as EditIcon,
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
F as
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
Oo as FacebookIcon,
|
|
74
|
+
jo as GearIcon,
|
|
75
|
+
F as GermanyFlagIcon,
|
|
76
|
+
tr as HamburgerMenuIcon,
|
|
77
|
+
C as HeartIcon,
|
|
78
|
+
H as HidePswIcon,
|
|
79
|
+
B as HouseIcon,
|
|
80
|
+
$o as InstagramIcon,
|
|
81
|
+
N as ItalyFlagIcon,
|
|
82
|
+
V as LayersIcon,
|
|
83
|
+
Zo as LinkedinIcon,
|
|
75
84
|
R as LocationIcon,
|
|
76
85
|
U as LogoutIcon,
|
|
77
86
|
E as MailIcon,
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
87
|
+
Y as MapIcon,
|
|
88
|
+
z as NewsIcon,
|
|
89
|
+
K as NotesIcon,
|
|
90
|
+
X as PhoneIcon,
|
|
82
91
|
_ as PinIcon,
|
|
83
92
|
oo as PlanIcon,
|
|
84
93
|
eo as PlusIcon,
|
|
85
94
|
no as PrestigeIcon,
|
|
86
|
-
|
|
87
|
-
|
|
95
|
+
mo as PrintIcon,
|
|
96
|
+
Io as ProfileIcon,
|
|
88
97
|
xo as QuotesIcon,
|
|
89
98
|
io as RequestIcon,
|
|
90
99
|
lo as SearchIcon,
|
|
91
100
|
go as ShareIcon,
|
|
92
101
|
Po as SuitcaseIcon,
|
|
93
102
|
ho as TieIcon,
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
103
|
+
wo as TourIcon,
|
|
104
|
+
Ao as UkFlagIcon,
|
|
105
|
+
yo as ValuationIcon,
|
|
106
|
+
Do as VideoIcon,
|
|
107
|
+
vo as ViewPswIcon,
|
|
108
|
+
Mo as WalletIcon,
|
|
109
|
+
So as WarningIcon,
|
|
110
|
+
Go as WarningIconRounded,
|
|
111
|
+
fr as WikiNerdIcon,
|
|
112
|
+
cr as WikicasaDatiLogoIcon,
|
|
104
113
|
Qo as WikicasaIcon,
|
|
105
|
-
|
|
114
|
+
pr as WikicasaLogoIcon,
|
|
106
115
|
To as WkAppIcon,
|
|
107
|
-
|
|
116
|
+
Jo as WkFavIcon,
|
|
117
|
+
rr as YoutubeIcon
|
|
108
118
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -48,7 +48,12 @@ import { AnalyticsIcon } from './svgIcons/AnalyticsIcon';
|
|
|
48
48
|
import { WikicasaIcon } from './svgIcons/WikicasaIcon';
|
|
49
49
|
import { GearIcon } from './svgIcons/GearIcon';
|
|
50
50
|
import { WkFavIcon } from './svgIcons/WkFavIcon';
|
|
51
|
+
import { FacebookIcon } from './svgIcons/FacebookIcon';
|
|
52
|
+
import { LinkedinIcon } from './svgIcons/LinkedinIcon';
|
|
53
|
+
import { InstagramIcon } from './svgIcons/InstagramIcon';
|
|
54
|
+
import { YoutubeIcon } from './svgIcons/YoutubeIcon';
|
|
55
|
+
import { HamburgerMenuIcon } from './svgIcons/HamburgerMenuIcon';
|
|
51
56
|
import { WikicasaDatiLogoIcon } from './svgImages/WikicasaDatiLogo';
|
|
52
57
|
import { WikicasaLogoIcon } from './svgImages/WikicasaLogo';
|
|
53
58
|
import { WikiNerdIcon } from './svgImages/WikiNerdIcon';
|
|
54
|
-
export { GearIcon, WikicasaIcon, AnalyticsIcon, 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 };
|
|
59
|
+
export { GearIcon, WikicasaIcon, AnalyticsIcon, 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, FacebookIcon, LinkedinIcon, InstagramIcon, YoutubeIcon, HamburgerMenuIcon };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { FunctionalSvgIconComponent } from '../../
|
|
1
|
+
import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
2
|
export declare const AnalyticsIcon: FunctionalSvgIconComponent;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { FunctionalSvgIconComponent } from '../../
|
|
1
|
+
import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
2
|
export declare const ArrowIcon: FunctionalSvgIconComponent;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { FunctionalSvgIconComponent } from '../../
|
|
1
|
+
import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
2
|
export declare const GearIcon: FunctionalSvgIconComponent;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { FunctionalSvgIconComponent } from '../../
|
|
1
|
+
import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
|
|
2
2
|
import type { SvgProps } from '@wikicasa-dev/types';
|
|
3
3
|
export declare const WikicasaIcon: FunctionalSvgIconComponent<Partial<SvgProps> & Partial<{
|
|
4
4
|
bgColor: string;
|