@wikicasa-dev/svg-icons 1.0.2 → 1.1.0
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/ArrowIndicatorIcon.js +0 -8
- package/dist/ClockIcon.js +35 -0
- package/dist/CrossIcon.js +40 -0
- package/dist/ZoomIcon.js +54 -0
- package/dist/index.js +109 -103
- package/dist/lib/index.d.ts +3 -0
- package/dist/lib/svgIcons/ClockIcon.d.ts +3 -0
- package/dist/lib/svgIcons/CrossIcon.d.ts +4 -0
- package/dist/lib/svgIcons/ZoomIcon.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,13 +1,5 @@
|
|
|
1
1
|
import { h as o } from "vue";
|
|
2
2
|
import { s as t } from "./svgIconFactory-BpnFimFz.js";
|
|
3
|
-
o(
|
|
4
|
-
"svg",
|
|
5
|
-
{ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 28.5 20.243" },
|
|
6
|
-
o("g", { fill: "none", stroke: "#222", "stroke-linecap": "round", "stroke-width": "3" }, [
|
|
7
|
-
o("path", { "stroke-linejoin": "round", d: "m9.501 2.121-8 8 8 8" }),
|
|
8
|
-
o("path", { d: "M2 10.121h25" })
|
|
9
|
-
])
|
|
10
|
-
);
|
|
11
3
|
const s = (r) => t({
|
|
12
4
|
props: r,
|
|
13
5
|
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 28.5 20.243" },
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as t } from "./svgIconFactory-BpnFimFz.js";
|
|
3
|
+
const s = (r) => t({
|
|
4
|
+
props: r,
|
|
5
|
+
svgNodeAttrs: { viewBox: "0 0 16 16" },
|
|
6
|
+
childrenNodes: o("g", { id: "Raggruppa_17421", transform: "translate(-315 -225)" }, [
|
|
7
|
+
o(
|
|
8
|
+
"g",
|
|
9
|
+
{
|
|
10
|
+
id: "Ellisse_22",
|
|
11
|
+
transform: "translate(315 225)",
|
|
12
|
+
fill: "none",
|
|
13
|
+
stroke: r["stroke-color"] ?? "#222",
|
|
14
|
+
"stroke-width": r["stroke-width"] ?? 1.3
|
|
15
|
+
},
|
|
16
|
+
[
|
|
17
|
+
o("circle", { cx: "8", cy: "8", r: "8", stroke: "none" }),
|
|
18
|
+
o("circle", { cx: "8", cy: "8", r: "7.35", fill: "none" })
|
|
19
|
+
]
|
|
20
|
+
),
|
|
21
|
+
o("path", {
|
|
22
|
+
id: "Tracciato_543",
|
|
23
|
+
d: "M322.5,228.261v4.929h3.53",
|
|
24
|
+
transform: "translate(0.413 -0.055)",
|
|
25
|
+
fill: "none",
|
|
26
|
+
stroke: r["stroke-color"] ?? "#222",
|
|
27
|
+
"stroke-linecap": "round",
|
|
28
|
+
"stroke-linejoin": "round",
|
|
29
|
+
"stroke-width": r["stroke-width"] ?? 1.3
|
|
30
|
+
})
|
|
31
|
+
])
|
|
32
|
+
});
|
|
33
|
+
export {
|
|
34
|
+
s as ClockIcon
|
|
35
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
const i = (r, { attrs: o }) => {
|
|
3
|
+
const { width: e = 16, height: n = 16 } = r;
|
|
4
|
+
return t(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
width: `${e}`,
|
|
9
|
+
height: `${n}`,
|
|
10
|
+
viewBox: "0 0 16 16"
|
|
11
|
+
},
|
|
12
|
+
t(
|
|
13
|
+
"g",
|
|
14
|
+
{
|
|
15
|
+
transform: "translate(-541.5 -228.5)"
|
|
16
|
+
},
|
|
17
|
+
[
|
|
18
|
+
t("line", {
|
|
19
|
+
y2: "14",
|
|
20
|
+
transform: "translate(549.5 229.5)",
|
|
21
|
+
fill: "none",
|
|
22
|
+
stroke: o["stroke-color"] ?? "#fff",
|
|
23
|
+
"stroke-linecap": "round",
|
|
24
|
+
"stroke-width": "2"
|
|
25
|
+
}),
|
|
26
|
+
t("line", {
|
|
27
|
+
y2: "14",
|
|
28
|
+
transform: "translate(556.5 236.5) rotate(90)",
|
|
29
|
+
fill: "none",
|
|
30
|
+
stroke: o["stroke-color"] ?? "#fff",
|
|
31
|
+
"stroke-linecap": "round",
|
|
32
|
+
"stroke-width": "2"
|
|
33
|
+
})
|
|
34
|
+
]
|
|
35
|
+
)
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
export {
|
|
39
|
+
i as CrossIcon
|
|
40
|
+
};
|
package/dist/ZoomIcon.js
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { g as l } from "./DefaultValues-CpabIgVz.js";
|
|
3
|
+
const h = (e, { attrs: o }) => {
|
|
4
|
+
e = { ...l(), ...e };
|
|
5
|
+
const { width: i, height: r } = e;
|
|
6
|
+
return t(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: `${i}`,
|
|
11
|
+
height: `${r}`,
|
|
12
|
+
class: e.class ?? "",
|
|
13
|
+
"aria-hidden": o["aria-hidden"] ?? "true",
|
|
14
|
+
viewBox: "0 0 17.977 19.365"
|
|
15
|
+
},
|
|
16
|
+
t(
|
|
17
|
+
"g",
|
|
18
|
+
{
|
|
19
|
+
stroke: e["stroke-color"] ?? "#385cf6",
|
|
20
|
+
"stroke-linecap": "round",
|
|
21
|
+
"stroke-width": "2"
|
|
22
|
+
},
|
|
23
|
+
[
|
|
24
|
+
t(
|
|
25
|
+
"g",
|
|
26
|
+
{
|
|
27
|
+
fill: e["fill-color"] ?? "#fff"
|
|
28
|
+
},
|
|
29
|
+
[
|
|
30
|
+
t("circle", {
|
|
31
|
+
cx: "7.361",
|
|
32
|
+
cy: "7.361",
|
|
33
|
+
r: "7.361",
|
|
34
|
+
stroke: "none"
|
|
35
|
+
}),
|
|
36
|
+
t("circle", {
|
|
37
|
+
cx: "7.361",
|
|
38
|
+
cy: "7.361",
|
|
39
|
+
r: "6.361",
|
|
40
|
+
fill: "none"
|
|
41
|
+
})
|
|
42
|
+
]
|
|
43
|
+
),
|
|
44
|
+
t("path", {
|
|
45
|
+
fill: "none",
|
|
46
|
+
d: "m11.656 13.043 4.907 4.907"
|
|
47
|
+
})
|
|
48
|
+
]
|
|
49
|
+
)
|
|
50
|
+
);
|
|
51
|
+
};
|
|
52
|
+
export {
|
|
53
|
+
h as ZoomIcon
|
|
54
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -4,9 +4,9 @@ import { BarChartIcon as m } 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 s } from "./CheckInactiveIcon.js";
|
|
8
8
|
import { CloseIcon as g } from "./CloseIcon.js";
|
|
9
|
-
import { DashboardIcon as
|
|
9
|
+
import { DashboardIcon as k } from "./DashboardIcon.js";
|
|
10
10
|
import { DeleteIcon as W } from "./DeleteIcon.js";
|
|
11
11
|
import { DrawIcon as P } from "./DrawIcon.js";
|
|
12
12
|
import { EditIcon as y } from "./EditIcon.js";
|
|
@@ -21,8 +21,8 @@ import { LogoutIcon as E } from "./LogoutIcon.js";
|
|
|
21
21
|
import { MailIcon as q } from "./MailIcon.js";
|
|
22
22
|
import { MapIcon as K } from "./MapIcon.js";
|
|
23
23
|
import { NewsIcon as Q } from "./NewsIcon.js";
|
|
24
|
-
import { NotesIcon as
|
|
25
|
-
import { PhoneIcon as
|
|
24
|
+
import { NotesIcon as Z } from "./NotesIcon.js";
|
|
25
|
+
import { PhoneIcon as J } 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";
|
|
@@ -33,7 +33,7 @@ import { QuotesIcon as xo } from "./QuotesIcon.js";
|
|
|
33
33
|
import { RequestIcon as io } from "./RequestIcon.js";
|
|
34
34
|
import { SearchIcon as so } from "./SearchIcon.js";
|
|
35
35
|
import { ShareIcon as uo } from "./ShareIcon.js";
|
|
36
|
-
import { SuitcaseIcon as
|
|
36
|
+
import { SuitcaseIcon as ho } from "./SuitcaseIcon.js";
|
|
37
37
|
import { TieIcon as So } from "./TieIcon.js";
|
|
38
38
|
import { TourIcon as Ao } from "./TourIcon.js";
|
|
39
39
|
import { UkFlagIcon as Co } from "./UkFlagIcon.js";
|
|
@@ -48,8 +48,8 @@ import { AnalyticsIcon as Uo } from "./AnalyticsIcon.js";
|
|
|
48
48
|
import { WikicasaIcon as zo } from "./WikicasaIcon.js";
|
|
49
49
|
import { GearIcon as Oo } from "./GearIcon.js";
|
|
50
50
|
import { WkFavIcon as Yo } from "./WkFavIcon.js";
|
|
51
|
-
import { FacebookIcon as
|
|
52
|
-
import { LinkedinIcon as
|
|
51
|
+
import { FacebookIcon as jo } from "./FacebookIcon.js";
|
|
52
|
+
import { LinkedinIcon as Xo } from "./LinkedinIcon.js";
|
|
53
53
|
import { InstagramIcon as $o } from "./InstagramIcon.js";
|
|
54
54
|
import { YoutubeIcon as rr } from "./YoutubeIcon.js";
|
|
55
55
|
import { HamburgerMenuIcon as tr } from "./HamburgerMenuIcon.js";
|
|
@@ -58,9 +58,9 @@ import { WikicasaRoundedIcon as pr } from "./WikicasaRoundedIcon.js";
|
|
|
58
58
|
import { ArrowIndicatorIcon as Ir } from "./ArrowIndicatorIcon.js";
|
|
59
59
|
import { PrincipalIcon as ar } from "./PrincipalIcon.js";
|
|
60
60
|
import { PinShadowedIcon as lr } from "./PinShadowedIcon.js";
|
|
61
|
-
import { HouseValuationIcon as
|
|
61
|
+
import { HouseValuationIcon as dr } from "./HouseValuationIcon.js";
|
|
62
62
|
import { CheckRoundedIcon as ur } from "./CheckRoundedIcon.js";
|
|
63
|
-
import { DownloadIcon as
|
|
63
|
+
import { DownloadIcon as hr } from "./DownloadIcon.js";
|
|
64
64
|
import { SquareMeterIcon as Sr } from "./SquareMeterIcon.js";
|
|
65
65
|
import { PriceIcon as Ar } from "./PriceIcon.js";
|
|
66
66
|
import { DemandIcon as Cr } from "./DemandIcon.js";
|
|
@@ -75,8 +75,8 @@ import { PhotoIcon as Ur } from "./PhotoIcon.js";
|
|
|
75
75
|
import { TelegramRoundedIcon as zr } from "./TelegramRoundedIcon.js";
|
|
76
76
|
import { WhatsappRoundedIcon as Or } from "./WhatsappRoundedIcon.js";
|
|
77
77
|
import { FacebookRoundedIcon as Yr } from "./FacebookRoundedIcon.js";
|
|
78
|
-
import { CredipassIcon as
|
|
79
|
-
import { HeartShadowedIcon as
|
|
78
|
+
import { CredipassIcon as jr } from "./CredipassIcon.js";
|
|
79
|
+
import { HeartShadowedIcon as Xr } from "./HeartShadowedIcon.js";
|
|
80
80
|
import { SortIcon as $r } from "./SortIcon.js";
|
|
81
81
|
import { StreetViewIcon as re } from "./StreetViewIcon.js";
|
|
82
82
|
import { StarIcon as te } from "./StarIcon.js";
|
|
@@ -85,9 +85,9 @@ import { LockIcon as pe } from "./LockIcon.js";
|
|
|
85
85
|
import { KeyIcon as Ie } from "./KeyIcon.js";
|
|
86
86
|
import { MegaphoneIcon as ae } from "./MegaphoneIcon.js";
|
|
87
87
|
import { ParkingSpotIcon as le } from "./ParkingSpotIcon.js";
|
|
88
|
-
import { BoxIcon as
|
|
88
|
+
import { BoxIcon as de } from "./BoxIcon.js";
|
|
89
89
|
import { ParkingIcon as ue } from "./ParkingIcon.js";
|
|
90
|
-
import { PoolIcon as
|
|
90
|
+
import { PoolIcon as he } from "./PoolIcon.js";
|
|
91
91
|
import { PrivateGardenIcon as Se } from "./PrivateGardenIcon.js";
|
|
92
92
|
import { CommunalGardenIcon as Ae } from "./CommunalGardenIcon.js";
|
|
93
93
|
import { TennisIcon as Ce } from "./TennisIcon.js";
|
|
@@ -102,8 +102,8 @@ import { PhotoAlbumIcon as Ue } from "./PhotoAlbumIcon.js";
|
|
|
102
102
|
import { FurnishedIcon as ze } from "./FurnishedIcon.js";
|
|
103
103
|
import { CellarIcon as Oe } from "./CellarIcon.js";
|
|
104
104
|
import { KitchenIcon as Ye } from "./KitchenIcon.js";
|
|
105
|
-
import { AirConditionerIcon as
|
|
106
|
-
import { AtticIcon as
|
|
105
|
+
import { AirConditionerIcon as je } from "./AirConditionerIcon.js";
|
|
106
|
+
import { AtticIcon as Xe } from "./AtticIcon.js";
|
|
107
107
|
import { TavernIcon as $e } from "./TavernIcon.js";
|
|
108
108
|
import { RoofIcon as rt } from "./RoofIcon.js";
|
|
109
109
|
import { AlarmIcon as tt } from "./AlarmIcon.js";
|
|
@@ -112,9 +112,9 @@ import { FixturesIcon as pt } from "./FixturesIcon.js";
|
|
|
112
112
|
import { TypeViewIcon as It } from "./TypeViewIcon.js";
|
|
113
113
|
import { HotWaterIcon as at } from "./HotWaterIcon.js";
|
|
114
114
|
import { CeilingIcon as lt } from "./CeilingIcon.js";
|
|
115
|
-
import { EntranceIcon as
|
|
115
|
+
import { EntranceIcon as dt } from "./EntranceIcon.js";
|
|
116
116
|
import { OpticFiberIcon as ut } from "./OpticFiberIcon.js";
|
|
117
|
-
import { ElectricGateIcon as
|
|
117
|
+
import { ElectricGateIcon as ht } from "./ElectricGateIcon.js";
|
|
118
118
|
import { WhirlpoolIcon as St } from "./WhirlpoolIcon.js";
|
|
119
119
|
import { FireplaceIcon as At } from "./FireplaceIcon.js";
|
|
120
120
|
import { SecurityDoorIcon as Ct } from "./SecurityDoorIcon.js";
|
|
@@ -129,84 +129,89 @@ import { AttachedIcon as Ut } from "./AttachedIcon.js";
|
|
|
129
129
|
import { SupermarketIcon as zt } from "./SupermarketIcon.js";
|
|
130
130
|
import { LiftIcon as Ot } from "./LiftIcon.js";
|
|
131
131
|
import { BalconyIcon as Yt } from "./BalconyIcon.js";
|
|
132
|
-
import { TerraceIcon as
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
132
|
+
import { TerraceIcon as jt } from "./TerraceIcon.js";
|
|
133
|
+
import { ClockIcon as Xt } from "./ClockIcon.js";
|
|
134
|
+
import { CrossIcon as $t } from "./CrossIcon.js";
|
|
135
|
+
import { ZoomIcon as rn } from "./ZoomIcon.js";
|
|
136
|
+
import { BankIcon as tn } from "./BankIcon.js";
|
|
137
|
+
import { CartIcon as cn } from "./CartIcon.js";
|
|
138
|
+
import { ChargeIcon as pn } from "./ChargeIcon.js";
|
|
139
|
+
import { HospitalIcon as In } from "./HospitalIcon.js";
|
|
140
|
+
import { PharmacyIcon as an } from "./PharmacyIcon.js";
|
|
141
|
+
import { PostOfficeIcon as sn } from "./PostOfficeIcon.js";
|
|
142
|
+
import { SchoolIcon as gn } from "./SchoolIcon.js";
|
|
143
|
+
import { SubwayIcon as kn } from "./SubwayIcon.js";
|
|
144
|
+
import { TransportIcon as Wn } from "./TransportIcon.js";
|
|
145
|
+
import { MetroIcon as Pn } from "./MetroIcon.js";
|
|
146
|
+
import { TrainIcon as yn } from "./TrainIcon.js";
|
|
147
|
+
import { BusIcon as wn } from "./BusIcon.js";
|
|
148
|
+
import { WikicasaDatiLogoIcon as bn } from "./WikicasaDatiLogo.js";
|
|
149
|
+
import { WikicasaLogoIcon as Nn } from "./WikicasaLogo.js";
|
|
150
|
+
import { WikiNerdImg as vn } from "./WikiNerd.js";
|
|
151
|
+
import { WikiNerdValutaMobileImg as Dn } from "./WikiNerdValutaMobile.js";
|
|
152
|
+
import { WikiNerdMercatoImg as Mn } from "./WikiNerdMercatoHome.js";
|
|
153
|
+
import { WikiNerdValutaDesktopImg as Vn } from "./WikiNerdValutaDesktop.js";
|
|
154
|
+
import { WikiNerdDownloadAppImg as En } from "./WikiNerdDownloadApp.js";
|
|
155
|
+
import { WikicasaStudioLogoIcon as qn } from "./WikicasaStudioLogo.js";
|
|
156
|
+
import { GenericUserWikiAvatarImg as Kn } from "./GenericUserWikiAvatar.js";
|
|
157
|
+
import { ShieldImg as Qn } from "./ShieldImg.js";
|
|
158
|
+
import { SnapImg as Zn } from "./SnapImg.js";
|
|
159
|
+
import { StopWatchImg as Jn } from "./StopWatchImg.js";
|
|
160
|
+
import { CheckImg as _n } from "./CheckImg.js";
|
|
161
|
+
import { IareeImg as oc } from "./IareeImg.js";
|
|
162
|
+
import { WikiNerdAnalyzeImg as ec } from "./WikiNerdAnalyzeImg.js";
|
|
163
|
+
import { WikiNerdValuationNotAvailableImg as nc } from "./WikiNerdValuationNotAvailableImg.js";
|
|
164
|
+
import { InsightImg as mc } from "./InsightImg.js";
|
|
165
|
+
import { GenericUserWikiAvatarSquaredImg as fc } from "./GenericUserWikiAvatarSquaredImg.js";
|
|
166
|
+
import { WikiNoSavedSearchesImg as xc } from "./WikiNoSavedSearches.js";
|
|
167
|
+
import { WikicasaProIcon as ic } from "./WikicasaProIcon.js";
|
|
168
|
+
import { WikiNerdAgency as sc } from "./WikiNerdAgency.js";
|
|
166
169
|
export {
|
|
167
170
|
e as AboutUsIcon,
|
|
168
|
-
|
|
171
|
+
je as AirConditionerIcon,
|
|
169
172
|
tt as AlarmIcon,
|
|
170
173
|
Uo as AnalyticsIcon,
|
|
171
174
|
Fe as ArchitecturalBarriersIcon,
|
|
172
175
|
n as ArrowIcon,
|
|
173
176
|
Ir as ArrowIndicatorIcon,
|
|
174
177
|
Ut as AttachedIcon,
|
|
175
|
-
|
|
178
|
+
Xe as AtticIcon,
|
|
176
179
|
Gr as AuctionHammerIcon,
|
|
177
180
|
Yt as BalconyIcon,
|
|
178
|
-
|
|
181
|
+
tn as BankIcon,
|
|
179
182
|
m as BarChartIcon,
|
|
180
183
|
Hr as BathroomIcon,
|
|
181
184
|
f as BellIcon,
|
|
182
|
-
|
|
185
|
+
de as BoxIcon,
|
|
183
186
|
x as BulbIcon,
|
|
184
|
-
|
|
185
|
-
|
|
187
|
+
wn as BusIcon,
|
|
188
|
+
cn as CartIcon,
|
|
186
189
|
lt as CeilingIcon,
|
|
187
190
|
Oe as CellarIcon,
|
|
188
|
-
|
|
191
|
+
pn as ChargeIcon,
|
|
189
192
|
i as CheckActiveIcon,
|
|
190
193
|
Lr as CheckIcon,
|
|
191
|
-
|
|
192
|
-
|
|
194
|
+
_n as CheckImg,
|
|
195
|
+
s as CheckInactiveIcon,
|
|
193
196
|
ur as CheckRoundedIcon,
|
|
197
|
+
Xt as ClockIcon,
|
|
194
198
|
g as CloseIcon,
|
|
195
199
|
ct as ClosetIcon,
|
|
196
200
|
Ae as CommunalGardenIcon,
|
|
197
|
-
|
|
198
|
-
|
|
201
|
+
jr as CredipassIcon,
|
|
202
|
+
$t as CrossIcon,
|
|
203
|
+
k as DashboardIcon,
|
|
199
204
|
W as DeleteIcon,
|
|
200
205
|
Cr as DemandIcon,
|
|
201
206
|
Ge as DishwasherIcon,
|
|
202
|
-
|
|
207
|
+
hr as DownloadIcon,
|
|
203
208
|
P as DrawIcon,
|
|
204
209
|
y as EditIcon,
|
|
205
|
-
|
|
210
|
+
ht as ElectricGateIcon,
|
|
206
211
|
Rr as EnergyClassIcon,
|
|
207
|
-
|
|
212
|
+
dt as EntranceIcon,
|
|
208
213
|
Br as ExternalLinkIcon,
|
|
209
|
-
|
|
214
|
+
jo as FacebookIcon,
|
|
210
215
|
Yr as FacebookRoundedIcon,
|
|
211
216
|
At as FireplaceIcon,
|
|
212
217
|
pt as FixturesIcon,
|
|
@@ -214,22 +219,22 @@ export {
|
|
|
214
219
|
Ht as FrontBuildingIcon,
|
|
215
220
|
ze as FurnishedIcon,
|
|
216
221
|
Oo as GearIcon,
|
|
217
|
-
|
|
218
|
-
|
|
222
|
+
Kn as GenericUserWikiAvatarImg,
|
|
223
|
+
fc as GenericUserWikiAvatarSquaredImg,
|
|
219
224
|
w as GermanyFlagIcon,
|
|
220
225
|
cr as GoogleIcon,
|
|
221
226
|
tr as HamburgerMenuIcon,
|
|
222
227
|
b as HeartIcon,
|
|
223
|
-
|
|
228
|
+
Xr as HeartShadowedIcon,
|
|
224
229
|
N as HidePswIcon,
|
|
225
230
|
Be as HobIcon,
|
|
226
231
|
v as HomeIcon,
|
|
227
|
-
|
|
232
|
+
In as HospitalIcon,
|
|
228
233
|
at as HotWaterIcon,
|
|
229
|
-
|
|
230
|
-
|
|
234
|
+
dr as HouseValuationIcon,
|
|
235
|
+
oc as IareeImg,
|
|
231
236
|
Fr as InfoIcon,
|
|
232
|
-
|
|
237
|
+
mc as InsightImg,
|
|
233
238
|
$o as InstagramIcon,
|
|
234
239
|
D as ItalyFlagIcon,
|
|
235
240
|
Ie as KeyIcon,
|
|
@@ -237,31 +242,31 @@ export {
|
|
|
237
242
|
Rt as LaundryIcon,
|
|
238
243
|
M as LayersIcon,
|
|
239
244
|
Ot as LiftIcon,
|
|
240
|
-
|
|
245
|
+
Xo as LinkedinIcon,
|
|
241
246
|
V as LocationIcon,
|
|
242
247
|
pe as LockIcon,
|
|
243
248
|
E as LogoutIcon,
|
|
244
249
|
q as MailIcon,
|
|
245
250
|
K as MapIcon,
|
|
246
251
|
ae as MegaphoneIcon,
|
|
247
|
-
|
|
252
|
+
Pn as MetroIcon,
|
|
248
253
|
Gt as MezzanineIcon,
|
|
249
254
|
Q as NewsIcon,
|
|
250
|
-
|
|
255
|
+
Z as NotesIcon,
|
|
251
256
|
ut as OpticFiberIcon,
|
|
252
257
|
ue as ParkingIcon,
|
|
253
258
|
le as ParkingSpotIcon,
|
|
254
259
|
ce as PartnershipIcon,
|
|
255
|
-
|
|
256
|
-
|
|
260
|
+
an as PharmacyIcon,
|
|
261
|
+
J as PhoneIcon,
|
|
257
262
|
Ue as PhotoAlbumIcon,
|
|
258
263
|
Ur as PhotoIcon,
|
|
259
264
|
_ as PinIcon,
|
|
260
265
|
lr as PinShadowedIcon,
|
|
261
266
|
oo as PlanIcon,
|
|
262
267
|
eo as PlusIcon,
|
|
263
|
-
|
|
264
|
-
|
|
268
|
+
he as PoolIcon,
|
|
269
|
+
sn as PostOfficeIcon,
|
|
265
270
|
no as PrestigeIcon,
|
|
266
271
|
Ar as PriceIcon,
|
|
267
272
|
ar as PrincipalIcon,
|
|
@@ -273,29 +278,29 @@ export {
|
|
|
273
278
|
io as RequestIcon,
|
|
274
279
|
rt as RoofIcon,
|
|
275
280
|
Ft as SatelliteSystemIcon,
|
|
276
|
-
|
|
281
|
+
gn as SchoolIcon,
|
|
277
282
|
so as SearchIcon,
|
|
278
283
|
Ct as SecurityDoorIcon,
|
|
279
284
|
uo as ShareIcon,
|
|
280
|
-
|
|
281
|
-
|
|
285
|
+
Qn as ShieldImg,
|
|
286
|
+
Zn as SnapImg,
|
|
282
287
|
$r as SortIcon,
|
|
283
288
|
Sr as SquareMeterIcon,
|
|
284
289
|
te as StarIcon,
|
|
285
|
-
|
|
290
|
+
Jn as StopWatchImg,
|
|
286
291
|
re as StreetViewIcon,
|
|
287
|
-
|
|
288
|
-
|
|
292
|
+
kn as SubwayIcon,
|
|
293
|
+
ho as SuitcaseIcon,
|
|
289
294
|
zt as SupermarketIcon,
|
|
290
295
|
$e as TavernIcon,
|
|
291
296
|
zr as TelegramRoundedIcon,
|
|
292
297
|
Ce as TennisIcon,
|
|
293
|
-
|
|
298
|
+
jt as TerraceIcon,
|
|
294
299
|
So as TieIcon,
|
|
295
300
|
Ao as TourIcon,
|
|
296
|
-
|
|
301
|
+
yn as TrainIcon,
|
|
297
302
|
Tr as TransactionIcon,
|
|
298
|
-
|
|
303
|
+
Wn as TransportIcon,
|
|
299
304
|
Bt as TypeFloorIcon,
|
|
300
305
|
Lt as TypeRollerShutterIcon,
|
|
301
306
|
Tt as TypeTvIcon,
|
|
@@ -311,22 +316,23 @@ export {
|
|
|
311
316
|
Re as WashingMachineIcon,
|
|
312
317
|
Or as WhatsappRoundedIcon,
|
|
313
318
|
St as WhirlpoolIcon,
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
319
|
+
sc as WikiNerdAgency,
|
|
320
|
+
ec as WikiNerdAnalyzeImg,
|
|
321
|
+
En as WikiNerdDownloadAppImg,
|
|
322
|
+
vn as WikiNerdImg,
|
|
323
|
+
Mn as WikiNerdMercatoImg,
|
|
324
|
+
nc as WikiNerdValuationNotAvailableImg,
|
|
325
|
+
Vn as WikiNerdValutaDesktopImg,
|
|
326
|
+
Dn as WikiNerdValutaMobileImg,
|
|
327
|
+
xc as WikiNoSavedSearchesImg,
|
|
328
|
+
bn as WikicasaDatiLogoIcon,
|
|
324
329
|
zo as WikicasaIcon,
|
|
325
|
-
|
|
326
|
-
|
|
330
|
+
Nn as WikicasaLogoIcon,
|
|
331
|
+
ic as WikicasaProIcon,
|
|
327
332
|
pr as WikicasaRoundedIcon,
|
|
328
|
-
|
|
333
|
+
qn as WikicasaStudioLogoIcon,
|
|
329
334
|
Go as WkAppIcon,
|
|
330
335
|
Yo as WkFavIcon,
|
|
331
|
-
rr as YoutubeIcon
|
|
336
|
+
rr as YoutubeIcon,
|
|
337
|
+
rn as ZoomIcon
|
|
332
338
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -130,6 +130,9 @@ export { SupermarketIcon } from './svgIcons/poi/SupermarketIcon';
|
|
|
130
130
|
export { LiftIcon } from './svgIcons/LiftIcon';
|
|
131
131
|
export { BalconyIcon } from './svgIcons/BalconyIcon';
|
|
132
132
|
export { TerraceIcon } from './svgIcons/TerraceIcon';
|
|
133
|
+
export { ClockIcon } from './svgIcons/ClockIcon';
|
|
134
|
+
export { CrossIcon } from './svgIcons/CrossIcon';
|
|
135
|
+
export { ZoomIcon } from './svgIcons/ZoomIcon';
|
|
133
136
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
134
137
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|
|
135
138
|
export { ChargeIcon } from './svgIcons/poi/ChargeIcon';
|