@wikicasa-dev/svg-icons 1.0.3 → 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/CrossIcon.js +40 -0
- package/dist/ZoomIcon.js +54 -0
- package/dist/index.js +99 -95
- package/dist/lib/index.d.ts +2 -0
- package/dist/lib/svgIcons/CrossIcon.d.ts +4 -0
- package/dist/lib/svgIcons/ZoomIcon.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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,7 +4,7 @@ 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
9
|
import { DashboardIcon as k } from "./DashboardIcon.js";
|
|
10
10
|
import { DeleteIcon as W } from "./DeleteIcon.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";
|
|
@@ -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,7 +58,7 @@ 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
63
|
import { DownloadIcon as hr } from "./DownloadIcon.js";
|
|
64
64
|
import { SquareMeterIcon as Sr } from "./SquareMeterIcon.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,7 +85,7 @@ 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
90
|
import { PoolIcon as he } from "./PoolIcon.js";
|
|
91
91
|
import { PrivateGardenIcon as Se } from "./PrivateGardenIcon.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,7 +112,7 @@ 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
117
|
import { ElectricGateIcon as ht } from "./ElectricGateIcon.js";
|
|
118
118
|
import { WhirlpoolIcon as St } from "./WhirlpoolIcon.js";
|
|
@@ -129,74 +129,77 @@ 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 { ClockIcon as
|
|
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 {
|
|
166
|
-
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";
|
|
167
169
|
export {
|
|
168
170
|
e as AboutUsIcon,
|
|
169
|
-
|
|
171
|
+
je as AirConditionerIcon,
|
|
170
172
|
tt as AlarmIcon,
|
|
171
173
|
Uo as AnalyticsIcon,
|
|
172
174
|
Fe as ArchitecturalBarriersIcon,
|
|
173
175
|
n as ArrowIcon,
|
|
174
176
|
Ir as ArrowIndicatorIcon,
|
|
175
177
|
Ut as AttachedIcon,
|
|
176
|
-
|
|
178
|
+
Xe as AtticIcon,
|
|
177
179
|
Gr as AuctionHammerIcon,
|
|
178
180
|
Yt as BalconyIcon,
|
|
179
|
-
|
|
181
|
+
tn as BankIcon,
|
|
180
182
|
m as BarChartIcon,
|
|
181
183
|
Hr as BathroomIcon,
|
|
182
184
|
f as BellIcon,
|
|
183
|
-
|
|
185
|
+
de as BoxIcon,
|
|
184
186
|
x as BulbIcon,
|
|
185
|
-
|
|
186
|
-
|
|
187
|
+
wn as BusIcon,
|
|
188
|
+
cn as CartIcon,
|
|
187
189
|
lt as CeilingIcon,
|
|
188
190
|
Oe as CellarIcon,
|
|
189
|
-
|
|
191
|
+
pn as ChargeIcon,
|
|
190
192
|
i as CheckActiveIcon,
|
|
191
193
|
Lr as CheckIcon,
|
|
192
|
-
|
|
193
|
-
|
|
194
|
+
_n as CheckImg,
|
|
195
|
+
s as CheckInactiveIcon,
|
|
194
196
|
ur as CheckRoundedIcon,
|
|
195
|
-
|
|
197
|
+
Xt as ClockIcon,
|
|
196
198
|
g as CloseIcon,
|
|
197
199
|
ct as ClosetIcon,
|
|
198
200
|
Ae as CommunalGardenIcon,
|
|
199
|
-
|
|
201
|
+
jr as CredipassIcon,
|
|
202
|
+
$t as CrossIcon,
|
|
200
203
|
k as DashboardIcon,
|
|
201
204
|
W as DeleteIcon,
|
|
202
205
|
Cr as DemandIcon,
|
|
@@ -206,9 +209,9 @@ export {
|
|
|
206
209
|
y as EditIcon,
|
|
207
210
|
ht as ElectricGateIcon,
|
|
208
211
|
Rr as EnergyClassIcon,
|
|
209
|
-
|
|
212
|
+
dt as EntranceIcon,
|
|
210
213
|
Br as ExternalLinkIcon,
|
|
211
|
-
|
|
214
|
+
jo as FacebookIcon,
|
|
212
215
|
Yr as FacebookRoundedIcon,
|
|
213
216
|
At as FireplaceIcon,
|
|
214
217
|
pt as FixturesIcon,
|
|
@@ -216,22 +219,22 @@ export {
|
|
|
216
219
|
Ht as FrontBuildingIcon,
|
|
217
220
|
ze as FurnishedIcon,
|
|
218
221
|
Oo as GearIcon,
|
|
219
|
-
|
|
220
|
-
|
|
222
|
+
Kn as GenericUserWikiAvatarImg,
|
|
223
|
+
fc as GenericUserWikiAvatarSquaredImg,
|
|
221
224
|
w as GermanyFlagIcon,
|
|
222
225
|
cr as GoogleIcon,
|
|
223
226
|
tr as HamburgerMenuIcon,
|
|
224
227
|
b as HeartIcon,
|
|
225
|
-
|
|
228
|
+
Xr as HeartShadowedIcon,
|
|
226
229
|
N as HidePswIcon,
|
|
227
230
|
Be as HobIcon,
|
|
228
231
|
v as HomeIcon,
|
|
229
|
-
|
|
232
|
+
In as HospitalIcon,
|
|
230
233
|
at as HotWaterIcon,
|
|
231
|
-
|
|
232
|
-
|
|
234
|
+
dr as HouseValuationIcon,
|
|
235
|
+
oc as IareeImg,
|
|
233
236
|
Fr as InfoIcon,
|
|
234
|
-
|
|
237
|
+
mc as InsightImg,
|
|
235
238
|
$o as InstagramIcon,
|
|
236
239
|
D as ItalyFlagIcon,
|
|
237
240
|
Ie as KeyIcon,
|
|
@@ -239,23 +242,23 @@ export {
|
|
|
239
242
|
Rt as LaundryIcon,
|
|
240
243
|
M as LayersIcon,
|
|
241
244
|
Ot as LiftIcon,
|
|
242
|
-
|
|
245
|
+
Xo as LinkedinIcon,
|
|
243
246
|
V as LocationIcon,
|
|
244
247
|
pe as LockIcon,
|
|
245
248
|
E as LogoutIcon,
|
|
246
249
|
q as MailIcon,
|
|
247
250
|
K as MapIcon,
|
|
248
251
|
ae as MegaphoneIcon,
|
|
249
|
-
|
|
252
|
+
Pn as MetroIcon,
|
|
250
253
|
Gt as MezzanineIcon,
|
|
251
254
|
Q as NewsIcon,
|
|
252
|
-
|
|
255
|
+
Z as NotesIcon,
|
|
253
256
|
ut as OpticFiberIcon,
|
|
254
257
|
ue as ParkingIcon,
|
|
255
258
|
le as ParkingSpotIcon,
|
|
256
259
|
ce as PartnershipIcon,
|
|
257
|
-
|
|
258
|
-
|
|
260
|
+
an as PharmacyIcon,
|
|
261
|
+
J as PhoneIcon,
|
|
259
262
|
Ue as PhotoAlbumIcon,
|
|
260
263
|
Ur as PhotoIcon,
|
|
261
264
|
_ as PinIcon,
|
|
@@ -263,7 +266,7 @@ export {
|
|
|
263
266
|
oo as PlanIcon,
|
|
264
267
|
eo as PlusIcon,
|
|
265
268
|
he as PoolIcon,
|
|
266
|
-
|
|
269
|
+
sn as PostOfficeIcon,
|
|
267
270
|
no as PrestigeIcon,
|
|
268
271
|
Ar as PriceIcon,
|
|
269
272
|
ar as PrincipalIcon,
|
|
@@ -275,29 +278,29 @@ export {
|
|
|
275
278
|
io as RequestIcon,
|
|
276
279
|
rt as RoofIcon,
|
|
277
280
|
Ft as SatelliteSystemIcon,
|
|
278
|
-
|
|
281
|
+
gn as SchoolIcon,
|
|
279
282
|
so as SearchIcon,
|
|
280
283
|
Ct as SecurityDoorIcon,
|
|
281
284
|
uo as ShareIcon,
|
|
282
|
-
|
|
283
|
-
|
|
285
|
+
Qn as ShieldImg,
|
|
286
|
+
Zn as SnapImg,
|
|
284
287
|
$r as SortIcon,
|
|
285
288
|
Sr as SquareMeterIcon,
|
|
286
289
|
te as StarIcon,
|
|
287
|
-
|
|
290
|
+
Jn as StopWatchImg,
|
|
288
291
|
re as StreetViewIcon,
|
|
289
|
-
|
|
292
|
+
kn as SubwayIcon,
|
|
290
293
|
ho as SuitcaseIcon,
|
|
291
294
|
zt as SupermarketIcon,
|
|
292
295
|
$e as TavernIcon,
|
|
293
296
|
zr as TelegramRoundedIcon,
|
|
294
297
|
Ce as TennisIcon,
|
|
295
|
-
|
|
298
|
+
jt as TerraceIcon,
|
|
296
299
|
So as TieIcon,
|
|
297
300
|
Ao as TourIcon,
|
|
298
|
-
|
|
301
|
+
yn as TrainIcon,
|
|
299
302
|
Tr as TransactionIcon,
|
|
300
|
-
|
|
303
|
+
Wn as TransportIcon,
|
|
301
304
|
Bt as TypeFloorIcon,
|
|
302
305
|
Lt as TypeRollerShutterIcon,
|
|
303
306
|
Tt as TypeTvIcon,
|
|
@@ -313,22 +316,23 @@ export {
|
|
|
313
316
|
Re as WashingMachineIcon,
|
|
314
317
|
Or as WhatsappRoundedIcon,
|
|
315
318
|
St as WhirlpoolIcon,
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
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,
|
|
326
329
|
zo as WikicasaIcon,
|
|
327
|
-
|
|
328
|
-
|
|
330
|
+
Nn as WikicasaLogoIcon,
|
|
331
|
+
ic as WikicasaProIcon,
|
|
329
332
|
pr as WikicasaRoundedIcon,
|
|
330
|
-
|
|
333
|
+
qn as WikicasaStudioLogoIcon,
|
|
331
334
|
Go as WkAppIcon,
|
|
332
335
|
Yo as WkFavIcon,
|
|
333
|
-
rr as YoutubeIcon
|
|
336
|
+
rr as YoutubeIcon,
|
|
337
|
+
rn as ZoomIcon
|
|
334
338
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -131,6 +131,8 @@ export { LiftIcon } from './svgIcons/LiftIcon';
|
|
|
131
131
|
export { BalconyIcon } from './svgIcons/BalconyIcon';
|
|
132
132
|
export { TerraceIcon } from './svgIcons/TerraceIcon';
|
|
133
133
|
export { ClockIcon } from './svgIcons/ClockIcon';
|
|
134
|
+
export { CrossIcon } from './svgIcons/CrossIcon';
|
|
135
|
+
export { ZoomIcon } from './svgIcons/ZoomIcon';
|
|
134
136
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
135
137
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|
|
136
138
|
export { ChargeIcon } from './svgIcons/poi/ChargeIcon';
|