@wikicasa-dev/svg-icons 0.0.9 → 0.0.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/README.md +6 -0
- package/dist/AnalyticsIcon.js +25 -0
- package/dist/GearIcon.js +18 -0
- package/dist/WikicasaIcon.js +23 -0
- package/dist/index.js +50 -44
- package/dist/lib/index.d.ts +4 -1
- package/dist/lib/svgIcons/AnalyticsIcon.d.ts +2 -0
- package/dist/lib/svgIcons/ArrowIcon.d.ts +2 -3
- package/dist/lib/svgIcons/GearIcon.d.ts +2 -0
- package/dist/lib/svgIcons/WikicasaIcon.d.ts +7 -0
- package/dist/svgIconFactory-vMvYZl5W.js +19 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,3 +39,9 @@ An image instead, is an important element of the page (which is why it needs an
|
|
|
39
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
40
|
|
|
41
41
|
To ensure these requirements, there is a factory method called **svgImagefactory** which creates an accessible svg component.
|
|
42
|
+
|
|
43
|
+
## Creating a Svg Icon
|
|
44
|
+
|
|
45
|
+
To create an icon, you can use the **svgIconFactory** which creates an icon with some default values as props.
|
|
46
|
+
|
|
47
|
+
Since we want our icons to be as much customizable as possible, before create any new icon, we have to assert that the new icon can't be derived from any other icon in the current vesion of the package.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { h as c } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-vMvYZl5W.js";
|
|
3
|
+
const l = (r) => o({
|
|
4
|
+
props: r,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
"xml:space": "preserve",
|
|
8
|
+
viewBox: "0 0 192 192"
|
|
9
|
+
},
|
|
10
|
+
childrenNodes: [
|
|
11
|
+
c("path", { fill: "none", d: "M0 0h192v192H0z" }),
|
|
12
|
+
c("path", {
|
|
13
|
+
fill: "#F9AB00",
|
|
14
|
+
d: "M130 29v132c0 14.77 10.19 23 21 23 10 0 21-7 21-23V30c0-13.54-10-22-21-22s-21 9.33-21 21"
|
|
15
|
+
}),
|
|
16
|
+
c("path", {
|
|
17
|
+
fill: "#E37400",
|
|
18
|
+
d: "M75 96v65c0 14.77 10.19 23 21 23 10 0 21-7 21-23V97c0-13.54-10-22-21-22s-21 9.33-21 21"
|
|
19
|
+
}),
|
|
20
|
+
c("circle", { cx: "41", cy: "163", r: "21", fill: "#E37400" })
|
|
21
|
+
]
|
|
22
|
+
});
|
|
23
|
+
export {
|
|
24
|
+
l as AnalyticsIcon
|
|
25
|
+
};
|
package/dist/GearIcon.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { h as a } from "vue";
|
|
2
|
+
import { s as l } from "./svgIconFactory-vMvYZl5W.js";
|
|
3
|
+
const t = (c) => l({
|
|
4
|
+
props: c,
|
|
5
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 19.386 19.552" },
|
|
6
|
+
childrenNodes: a("g", { fill: "none", "stroke-linecap": "round", "stroke-linejoin": "round" }, [
|
|
7
|
+
a("path", {
|
|
8
|
+
d: "M15.771 13.462c.212.187.484.4.729.649a.5.5 0 0 1 0 .781q-.857.882-1.725 1.753a.519.519 0 0 1-.8 0c-.252-.236-.509-.468-.752-.692-.515.206-1.063.421-1.606.648a.245.245 0 0 0-.114.183c-.013.287 0 .575-.008.862a.535.535 0 0 1-.616.6H8.52a.531.531 0 0 1-.606-.606c0-.279.009-.558-.008-.837a.291.291 0 0 0-.142-.211c-.527-.222-1.061-.429-1.592-.641-.212.2-.457.414-.689.643a.545.545 0 0 1-.895.014q-.838-.848-1.668-1.7a.525.525 0 0 1 0-.822c.2-.209.395-.418.6-.616.1-.094.09-.164.038-.284-.2-.463-.4-.93-.568-1.4-.06-.165-.132-.223-.3-.214-.278.014-.558.01-.837 0a.494.494 0 0 1-.538-.56v-2.46a.5.5 0 0 1 .56-.566c.279 0 .558-.008.837 0a.237.237 0 0 0 .272-.187c.181-.49.391-.969.576-1.456a.3.3 0 0 0-.042-.253c-.189-.215-.4-.41-.6-.617a.538.538 0 0 1 0-.826q.84-.863 1.686-1.721a.532.532 0 0 1 .858.006c.2.2.394.4.581.6.09.1.161.1.28.043.478-.21.965-.4 1.442-.608a.292.292 0 0 0 .136-.205c.016-.295 0-.591.008-.887a.519.519 0 0 1 .566-.57q1.217-.005 2.434 0a.531.531 0 0 1 .581.584c.006.279.007.558 0 .837a.234.234 0 0 0 .189.269c.465.172.924.367 1.373.579a.228.228 0 0 0 .32-.059c.2-.21.4-.413.607-.613a.515.515 0 0 1 .8.008q.856.865 1.7 1.738a.536.536 0 0 1-.008.844c-.2.206-.411.4-.6.616a.269.269 0 0 0-.038.23c.193.5.394 1 .608 1.5a.294.294 0 0 0 .213.143c.295.016.591 0 .887.008a.486.486 0 0 1 .535.513q.017 1.281 0 2.562a.475.475 0 0 1-.511.509c-.3.011-.609-.005-.912.011a.292.292 0 0 0-.214.142c-.215.536-.417 1.08-.668 1.736Zm-9.9-3.7a3.823 3.823 0 1 0 3.83-3.84 3.842 3.842 0 0 0-3.826 3.847Z"
|
|
9
|
+
}),
|
|
10
|
+
a("path", {
|
|
11
|
+
fill: "#141d30",
|
|
12
|
+
d: "M9.627 18.252c.415 0 .83 0 1.244-.002.414 0 .607-.187.617-.598.006-.287-.006-.575.007-.862.003-.065.059-.16.114-.183.543-.227 1.09-.442 1.606-.648.243.224.5.455.752.692.266.25.545.257.804-.002.579-.58 1.154-1.165 1.725-1.753.25-.256.257-.53.004-.782-.245-.244-.518-.462-.73-.648.252-.66.454-1.205.672-1.743.027-.067.138-.138.213-.142.213-.012.426-.007.638-.007.092 0 .183-.001.275-.005.322-.012.507-.188.51-.51.01-.853.011-1.707 0-2.56-.005-.33-.207-.508-.536-.514-.175-.003-.351 0-.527 0-.12 0-.24-.001-.36-.008-.075-.004-.184-.075-.213-.143a38.945 38.945 0 0 1-.608-1.498.269.269 0 0 1 .039-.23c.191-.215.402-.411.602-.617.275-.283.281-.562.008-.844a232.873 232.873 0 0 0-1.705-1.738c-.256-.258-.54-.26-.802-.008-.207.2-.41.403-.607.613-.099.106-.172.129-.32.059a17.211 17.211 0 0 0-1.373-.58c-.153-.056-.193-.123-.189-.268.008-.28.007-.559.001-.837-.008-.379-.21-.583-.58-.584a311.58 311.58 0 0 0-2.435 0c-.36.002-.56.206-.566.57-.005.296.009.593-.008.887a.292.292 0 0 1-.144.21c-.477.211-.965.399-1.443.608-.118.053-.19.057-.28-.043-.187-.206-.385-.404-.58-.602-.29-.291-.574-.296-.859-.007-.564.572-1.125 1.146-1.686 1.722-.258.265-.26.559-.003.826.199.207.412.402.601.617a.297.297 0 0 1 .042.253c-.185.488-.395.967-.576 1.457-.055.149-.125.192-.272.187a17.28 17.28 0 0 0-.837-.002c-.373.006-.558.191-.56.566-.003.82-.002 1.64 0 2.46.002.363.178.549.539.56.279.009.558.013.837 0 .172-.01.243.048.303.213.173.475.367.942.568 1.405.052.12.06.19-.038.284-.207.198-.405.407-.602.616-.263.277-.262.548.004.822.554.57 1.11 1.137 1.668 1.702.308.311.577.3.895-.014.233-.23.478-.446.69-.643.53.211 1.064.418 1.591.64.068.029.137.137.142.212.017.278.005.558.008.837.003.412.193.604.606.605l1.114.002m.07-12.33h.007c2.099.003 3.815 1.74 3.816 3.863a3.848 3.848 0 0 1-3.857 3.845c-2.086-.008-3.791-1.746-3.788-3.86.004-2.12 1.721-3.848 3.823-3.848m-.07 13.63c-.373 0-.746 0-1.119-.002-1.129-.003-1.893-.765-1.902-1.895v-.125a74.869 74.869 0 0 0-.158-.063l-.06.058c-.415.408-.877.615-1.373.615-.344 0-.858-.106-1.359-.612a300.61 300.61 0 0 1-1.676-1.71c-.757-.779-.764-1.833-.016-2.623l.01-.011.11-.116a25.618 25.618 0 0 1-.077-.192 20.158 20.158 0 0 1-.208-.006C.744 12.837.005 12.074.003 11.014c-.003-.868-.004-1.676 0-2.468.003-1.078.76-1.844 1.839-1.86.055-.002.112-.002.17-.003a126.55 126.55 0 0 1 .075-.186l-.121-.124c-.746-.777-.742-1.86.01-2.633.63-.648 1.183-1.213 1.692-1.728.49-.497 1.004-.601 1.349-.601s.86.105 1.357.605l.067.067.02.02a366.842 366.842 0 0 1 .145-.06l.001-.191c.016-1.068.8-1.846 1.861-1.85.813-.003 1.63-.003 2.444 0 1.081.004 1.853.767 1.876 1.856l.003.176c.049.02.098.04.147.062l.136-.133c.473-.456.968-.552 1.301-.552.485 0 .956.207 1.327.582.67.678 1.215 1.233 1.714 1.747.756.78.753 1.871-.009 2.655a3.844 3.844 0 0 1-.11.111l.072.178.198.001c1.035.019 1.797.774 1.81 1.797.012.818.012 1.667.002 2.592-.012 1.018-.737 1.755-1.762 1.794a7.558 7.558 0 0 1-.23.005l-.081.212c.037.035.075.072.112.11.749.746.753 1.843.01 2.607-.573.59-1.157 1.183-1.736 1.765-.473.474-.978.574-1.318.574-.327 0-.818-.094-1.296-.542a33.518 33.518 0 0 0-.14-.13l-.149.06c0 .05 0 .1-.002.151-.025 1.117-.794 1.868-1.913 1.87l-1.247.002Zm.07-12.33c-1.389 0-2.52 1.144-2.523 2.55-.002 1.405 1.116 2.553 2.492 2.558h.013a2.52 2.52 0 0 0 1.794-.747c.482-.48.747-1.12.746-1.797 0-1.412-1.13-2.562-2.518-2.564h-.004Z"
|
|
13
|
+
})
|
|
14
|
+
])
|
|
15
|
+
});
|
|
16
|
+
export {
|
|
17
|
+
t as GearIcon
|
|
18
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as r } from "./svgIconFactory-vMvYZl5W.js";
|
|
3
|
+
const e = (a) => r({
|
|
4
|
+
props: a,
|
|
5
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17.521 17.301" },
|
|
6
|
+
childrenNodes: [
|
|
7
|
+
o("path", {
|
|
8
|
+
fill: a.bgColor ?? "none",
|
|
9
|
+
stroke: a.borderColor ?? "#222",
|
|
10
|
+
"stroke-linecap": "round",
|
|
11
|
+
"stroke-linejoin": "round",
|
|
12
|
+
"stroke-width": "1.3",
|
|
13
|
+
d: "M16.283.65H1.243a.6.6 0 0 0-.593.593v12.331a.593.593 0 0 0 .593.593h5.62l1.657 2.356a.3.3 0 0 0 .416.071.314.314 0 0 0 .071-.071l1.657-2.356h5.614a.593.593 0 0 0 .593-.593V1.243a.585.585 0 0 0-.577-.593Z"
|
|
14
|
+
}),
|
|
15
|
+
o("path", {
|
|
16
|
+
fill: a.color ?? "#0e1d34",
|
|
17
|
+
d: "M15.421 3.146 12.69 11.93a.15.15 0 0 1-.14.106h-2.133a.133.133 0 0 1-.128-.1l-1.462-4.8a.072.072 0 0 0-.139 0l-1.46 4.8a.135.135 0 0 1-.129.09h-2.13a.144.144 0 0 1-.139-.106L2.099 3.137a.149.149 0 0 1 .1-.184.113.113 0 0 1 .038-.007h2.088a.128.128 0 0 1 .129.1L5.92 8.414a.073.073 0 0 0 .088.054.071.071 0 0 0 .053-.048l1.741-5.368a.15.15 0 0 1 .139-.1h1.612a.146.146 0 0 1 .14.106l1.629 5.363a.072.072 0 0 0 .139 0l1.59-5.368a.139.139 0 0 1 .129-.1h2.088a.142.142 0 0 1 .157.124.13.13 0 0 1-.005.061Z"
|
|
18
|
+
})
|
|
19
|
+
]
|
|
20
|
+
});
|
|
21
|
+
export {
|
|
22
|
+
e as WikicasaIcon
|
|
23
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -4,21 +4,21 @@ import { BarChartIcon as p } from "./BarChartIcon.js";
|
|
|
4
4
|
import { BellIcon as f } from "./BellIcon.js";
|
|
5
5
|
import { BulbIcon as x } from "./BulbIcon.js";
|
|
6
6
|
import { CheckActiveIcon as i } from "./CheckActiveIcon.js";
|
|
7
|
-
import { CheckInactiveIcon as
|
|
7
|
+
import { CheckInactiveIcon as l } from "./CheckInactiveIcon.js";
|
|
8
8
|
import { CloseIcon as g } from "./CloseIcon.js";
|
|
9
|
-
import { DashboardIcon as
|
|
9
|
+
import { DashboardIcon as P } from "./DashboardIcon.js";
|
|
10
10
|
import { DeleteIcon as d } from "./DeleteIcon.js";
|
|
11
11
|
import { DrawIcon as w } from "./DrawIcon.js";
|
|
12
|
-
import { EditIcon as
|
|
13
|
-
import { GermanyFlagIcon as
|
|
14
|
-
import { HeartIcon as
|
|
15
|
-
import { HidePswIcon as
|
|
12
|
+
import { EditIcon as L } from "./EditIcon.js";
|
|
13
|
+
import { GermanyFlagIcon as C } from "./GermanyFlagIcon.js";
|
|
14
|
+
import { HeartIcon as F } from "./HeartIcon.js";
|
|
15
|
+
import { HidePswIcon as v } from "./HidePswIcon.js";
|
|
16
16
|
import { HouseIcon as H } from "./HouseIcon.js";
|
|
17
17
|
import { ItalyFlagIcon as S } from "./ItalyFlagIcon.js";
|
|
18
|
-
import { LayersIcon as
|
|
19
|
-
import { LocationIcon as
|
|
20
|
-
import { LogoutIcon as
|
|
21
|
-
import { MailIcon as
|
|
18
|
+
import { LayersIcon as G } from "./LayersIcon.js";
|
|
19
|
+
import { LocationIcon as R } from "./LocationIcon.js";
|
|
20
|
+
import { LogoutIcon as U } from "./LogoutIcon.js";
|
|
21
|
+
import { MailIcon as E } from "./MailIcon.js";
|
|
22
22
|
import { MapIcon as j } from "./MapIcon.js";
|
|
23
23
|
import { NewsIcon as J } from "./NewsIcon.js";
|
|
24
24
|
import { NotesIcon as O } from "./NotesIcon.js";
|
|
@@ -31,45 +31,50 @@ import { PrintIcon as po } from "./PrintIcon.js";
|
|
|
31
31
|
import { ProfileIcon as fo } from "./ProfileIcon.js";
|
|
32
32
|
import { QuotesIcon as xo } from "./QuotesIcon.js";
|
|
33
33
|
import { RequestIcon as io } from "./RequestIcon.js";
|
|
34
|
-
import { SearchIcon as
|
|
34
|
+
import { SearchIcon as lo } from "./SearchIcon.js";
|
|
35
35
|
import { ShareIcon as go } from "./ShareIcon.js";
|
|
36
|
-
import { SuitcaseIcon as
|
|
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
|
|
38
|
+
import { TourIcon as Ao } from "./TourIcon.js";
|
|
39
|
+
import { UkFlagIcon as yo } from "./UkFlagIcon.js";
|
|
40
|
+
import { ValuationIcon as Do } from "./ValuationIcon.js";
|
|
41
|
+
import { VideoIcon as bo } from "./VideoIcon.js";
|
|
42
42
|
import { ViewPswIcon as Bo } from "./ViewPswIcon.js";
|
|
43
43
|
import { WalletIcon as No } from "./WalletIcon.js";
|
|
44
44
|
import { WarningIcon as Vo } from "./WarningIcon.js";
|
|
45
|
-
import { WarningIconRounded as
|
|
46
|
-
import { WkAppIcon as
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
45
|
+
import { WarningIconRounded as Mo } from "./WarningIconRounded.js";
|
|
46
|
+
import { WkAppIcon as To } from "./WkAppIcon.js";
|
|
47
|
+
import { AnalyticsIcon as qo } from "./AnalyticsIcon.js";
|
|
48
|
+
import { WikicasaIcon as Qo } from "./WikicasaIcon.js";
|
|
49
|
+
import { GearIcon as zo } from "./GearIcon.js";
|
|
50
|
+
import { WkFavIcon as Ko } from "./WkFavIcon.js";
|
|
51
|
+
import { WikicasaDatiLogoIcon as Xo } from "./WikicasaDatiLogo.js";
|
|
52
|
+
import { WikicasaLogoIcon as Zo } from "./WikicasaLogo.js";
|
|
53
|
+
import { WikiNerdIcon as $o } from "./WikiNerdIcon.js";
|
|
51
54
|
export {
|
|
52
55
|
e as AboutUsIcon,
|
|
56
|
+
qo as AnalyticsIcon,
|
|
53
57
|
n as ArrowIcon,
|
|
54
58
|
p as BarChartIcon,
|
|
55
59
|
f as BellIcon,
|
|
56
60
|
x as BulbIcon,
|
|
57
61
|
i as CheckActiveIcon,
|
|
58
|
-
|
|
62
|
+
l as CheckInactiveIcon,
|
|
59
63
|
g as CloseIcon,
|
|
60
|
-
|
|
64
|
+
P as DashboardIcon,
|
|
61
65
|
d as DeleteIcon,
|
|
62
66
|
w as DrawIcon,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
+
L as EditIcon,
|
|
68
|
+
zo as GearIcon,
|
|
69
|
+
C as GermanyFlagIcon,
|
|
70
|
+
F as HeartIcon,
|
|
71
|
+
v as HidePswIcon,
|
|
67
72
|
H as HouseIcon,
|
|
68
73
|
S as ItalyFlagIcon,
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
74
|
+
G as LayersIcon,
|
|
75
|
+
R as LocationIcon,
|
|
76
|
+
U as LogoutIcon,
|
|
77
|
+
E as MailIcon,
|
|
73
78
|
j as MapIcon,
|
|
74
79
|
J as NewsIcon,
|
|
75
80
|
O as NotesIcon,
|
|
@@ -82,21 +87,22 @@ export {
|
|
|
82
87
|
fo as ProfileIcon,
|
|
83
88
|
xo as QuotesIcon,
|
|
84
89
|
io as RequestIcon,
|
|
85
|
-
|
|
90
|
+
lo as SearchIcon,
|
|
86
91
|
go as ShareIcon,
|
|
87
|
-
|
|
92
|
+
Po as SuitcaseIcon,
|
|
88
93
|
ho as TieIcon,
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
94
|
+
Ao as TourIcon,
|
|
95
|
+
yo as UkFlagIcon,
|
|
96
|
+
Do as ValuationIcon,
|
|
97
|
+
bo as VideoIcon,
|
|
93
98
|
Bo as ViewPswIcon,
|
|
94
99
|
No as WalletIcon,
|
|
95
100
|
Vo as WarningIcon,
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
101
|
+
Mo as WarningIconRounded,
|
|
102
|
+
$o as WikiNerdIcon,
|
|
103
|
+
Xo as WikicasaDatiLogoIcon,
|
|
104
|
+
Qo as WikicasaIcon,
|
|
105
|
+
Zo as WikicasaLogoIcon,
|
|
106
|
+
To as WkAppIcon,
|
|
107
|
+
Ko as WkFavIcon
|
|
102
108
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -44,8 +44,11 @@ import { WalletIcon } from './svgIcons/WalletIcon';
|
|
|
44
44
|
import { WarningIcon } from './svgIcons/WarningIcon';
|
|
45
45
|
import { WarningIconRounded } from './svgIcons/WarningIconRounded';
|
|
46
46
|
import { WkAppIcon } from './svgIcons/WkAppIcon';
|
|
47
|
+
import { AnalyticsIcon } from './svgIcons/AnalyticsIcon';
|
|
48
|
+
import { WikicasaIcon } from './svgIcons/WikicasaIcon';
|
|
49
|
+
import { GearIcon } from './svgIcons/GearIcon';
|
|
47
50
|
import { WkFavIcon } from './svgIcons/WkFavIcon';
|
|
48
51
|
import { WikicasaDatiLogoIcon } from './svgImages/WikicasaDatiLogo';
|
|
49
52
|
import { WikicasaLogoIcon } from './svgImages/WikicasaLogo';
|
|
50
53
|
import { WikiNerdIcon } from './svgImages/WikiNerdIcon';
|
|
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 };
|
|
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 };
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
export declare const ArrowIcon: FunctionalComponent<Partial<SvgProps>>;
|
|
1
|
+
import type { FunctionalSvgIconComponent } from '../../Types/FunctionalSvgIconComponent';
|
|
2
|
+
export declare const ArrowIcon: FunctionalSvgIconComponent;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { FunctionalSvgIconComponent } from '../../Types/FunctionalSvgIconComponent';
|
|
2
|
+
import type { SvgProps } from '@wikicasa-dev/types';
|
|
3
|
+
export declare const WikicasaIcon: FunctionalSvgIconComponent<Partial<SvgProps> & Partial<{
|
|
4
|
+
bgColor: string;
|
|
5
|
+
color: string;
|
|
6
|
+
borderColor: string;
|
|
7
|
+
}>>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { h as e } from "vue";
|
|
2
|
+
import { g } from "./DefaultValues-k7iQWtC2.js";
|
|
3
|
+
const p = ({ props: o, svgNodeAttrs: r, childrenNodes: s }) => {
|
|
4
|
+
const t = { ...g(), ...o };
|
|
5
|
+
return e(
|
|
6
|
+
"svg",
|
|
7
|
+
{
|
|
8
|
+
height: t.height,
|
|
9
|
+
//Setting default height (20px)
|
|
10
|
+
width: t.width,
|
|
11
|
+
//Setting default width (20px)
|
|
12
|
+
...r
|
|
13
|
+
},
|
|
14
|
+
s
|
|
15
|
+
);
|
|
16
|
+
};
|
|
17
|
+
export {
|
|
18
|
+
p as s
|
|
19
|
+
};
|