@wikicasa-dev/svg-icons 1.2.0 → 1.2.2
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/GpsIcon.js +33 -0
- package/dist/TradingIcon.js +33 -0
- package/dist/index.js +100 -96
- package/dist/lib/index.d.ts +2 -0
- package/dist/lib/svgIcons/GpsIcon.d.ts +3 -0
- package/dist/lib/svgIcons/TradingIcon.d.ts +3 -0
- package/package.json +1 -1
package/dist/GpsIcon.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as n } from "./svgIconFactory-BpnFimFz.js";
|
|
3
|
+
const l = (r) => n({
|
|
4
|
+
props: r,
|
|
5
|
+
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 23.85 23.35" },
|
|
6
|
+
childrenNodes: o(
|
|
7
|
+
"g",
|
|
8
|
+
{
|
|
9
|
+
stroke: r["stroke-color"] ?? "#2b5dff",
|
|
10
|
+
"stroke-linecap": "round",
|
|
11
|
+
"stroke-width": r["stroke-width"] ?? "1.2"
|
|
12
|
+
},
|
|
13
|
+
[
|
|
14
|
+
o("g", { fill: "none", "stroke-linejoin": "round", transform: "translate(3.1 3.25)" }, [
|
|
15
|
+
o("circle", { cx: "8.5", cy: "8.5", r: "8.5", stroke: "none" }),
|
|
16
|
+
o("circle", { cx: "8.5", cy: "8.5", r: "7.9" })
|
|
17
|
+
]),
|
|
18
|
+
o("path", { fill: "none", d: "M11.672 3.6v-3" }),
|
|
19
|
+
o("path", { fill: "none", d: "M11.672 22.75v-3" }),
|
|
20
|
+
o("g", { fill: "none" }, [
|
|
21
|
+
o("path", { d: "M20.251 12.179h3" }),
|
|
22
|
+
o("path", { d: "M.601 12.179h3" })
|
|
23
|
+
]),
|
|
24
|
+
o("g", { fill: "#fff", "stroke-linejoin": "round", transform: "translate(8.1 8.25)" }, [
|
|
25
|
+
o("circle", { cx: "3.5", cy: "3.5", r: "3.5", stroke: "none" }),
|
|
26
|
+
o("circle", { cx: "3.5", cy: "3.5", r: "2.9", fill: "none" })
|
|
27
|
+
])
|
|
28
|
+
]
|
|
29
|
+
)
|
|
30
|
+
});
|
|
31
|
+
export {
|
|
32
|
+
l as GpsIcon
|
|
33
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { h as o } from "vue";
|
|
2
|
+
import { s as a } from "./svgIconFactory-BpnFimFz.js";
|
|
3
|
+
const d = (t) => a({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
viewBox: "0 0 36.536 31.598"
|
|
7
|
+
},
|
|
8
|
+
childrenNodes: o(
|
|
9
|
+
"g",
|
|
10
|
+
{
|
|
11
|
+
fill: "none",
|
|
12
|
+
stroke: t["stroke-color"] ?? "#0e1e34",
|
|
13
|
+
"stroke-linecap": "round",
|
|
14
|
+
"stroke-linejoin": "round",
|
|
15
|
+
"stroke-width": t["stroke-width"] ?? "1.5"
|
|
16
|
+
},
|
|
17
|
+
[
|
|
18
|
+
o("path", {
|
|
19
|
+
d: "M22.419 27.086a3.761 3.761 0 0 1-3.762 3.759H4.512a3.762 3.762 0 0 1-3.767-3.759V4.512A3.762 3.762 0 0 1 4.512.75h14.145a3.761 3.761 0 0 1 3.762 3.762v2.45"
|
|
20
|
+
}),
|
|
21
|
+
o("path", {
|
|
22
|
+
d: "M16.943 23.871a.492.492 0 0 1-.5-.48v-.006l-.068-4.846a1.5 1.5 0 0 1 .421-1.063l12.387-12.89a2.006 2.006 0 0 1 2.835-.062l.008.006 3.141 3.022a2 2 0 0 1 .062 2.833l-.006.008-12.392 12.889a1.51 1.51 0 0 1-1.046.463Z"
|
|
23
|
+
}),
|
|
24
|
+
o("path", { d: "m26.664 7.207 6.112 5.73" }),
|
|
25
|
+
o("path", { d: "M12.061 23.871H5.353" }),
|
|
26
|
+
o("path", { d: "M13.942 10.073H5.353" }),
|
|
27
|
+
o("path", { d: "M17.592 5.982H5.353" })
|
|
28
|
+
]
|
|
29
|
+
)
|
|
30
|
+
});
|
|
31
|
+
export {
|
|
32
|
+
d as TradingIcon
|
|
33
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -10,13 +10,13 @@ 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 A } from "./EditIcon.js";
|
|
13
|
-
import { GermanyFlagIcon as
|
|
13
|
+
import { GermanyFlagIcon as T } from "./GermanyFlagIcon.js";
|
|
14
14
|
import { HeartIcon as b } from "./HeartIcon.js";
|
|
15
15
|
import { HidePswIcon as N } from "./HidePswIcon.js";
|
|
16
16
|
import { HomeIcon as v } from "./HomeIcon.js";
|
|
17
17
|
import { ItalyFlagIcon as D } from "./ItalyFlagIcon.js";
|
|
18
|
-
import { LayersIcon as
|
|
19
|
-
import { LocationIcon as
|
|
18
|
+
import { LayersIcon as H } from "./LayersIcon.js";
|
|
19
|
+
import { LocationIcon as R } from "./LocationIcon.js";
|
|
20
20
|
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";
|
|
@@ -37,12 +37,12 @@ import { SuitcaseIcon as ho } from "./SuitcaseIcon.js";
|
|
|
37
37
|
import { TieIcon as So } from "./TieIcon.js";
|
|
38
38
|
import { TourIcon as yo } from "./TourIcon.js";
|
|
39
39
|
import { UkFlagIcon as Co } from "./UkFlagIcon.js";
|
|
40
|
-
import { ValuationIcon as
|
|
40
|
+
import { ValuationIcon as wo } from "./ValuationIcon.js";
|
|
41
41
|
import { VideoIcon as Fo } from "./VideoIcon.js";
|
|
42
42
|
import { ViewPswIcon as Lo } from "./ViewPswIcon.js";
|
|
43
43
|
import { WalletIcon as Bo } from "./WalletIcon.js";
|
|
44
|
-
import { WarningIcon as
|
|
45
|
-
import { WarningIconRounded as
|
|
44
|
+
import { WarningIcon as Go } from "./WarningIcon.js";
|
|
45
|
+
import { WarningIconRounded as Mo } from "./WarningIconRounded.js";
|
|
46
46
|
import { WkAppIcon as Vo } from "./WkAppIcon.js";
|
|
47
47
|
import { AnalyticsIcon as Uo } from "./AnalyticsIcon.js";
|
|
48
48
|
import { WikicasaIcon as zo } from "./WikicasaIcon.js";
|
|
@@ -64,12 +64,12 @@ import { DownloadIcon as hr } from "./DownloadIcon.js";
|
|
|
64
64
|
import { SquareMeterIcon as Sr } from "./SquareMeterIcon.js";
|
|
65
65
|
import { PriceIcon as yr } from "./PriceIcon.js";
|
|
66
66
|
import { DemandIcon as Cr } from "./DemandIcon.js";
|
|
67
|
-
import { TransactionIcon as
|
|
67
|
+
import { TransactionIcon as wr } from "./TransactionIcon.js";
|
|
68
68
|
import { InfoIcon as Fr } from "./InfoIcon.js";
|
|
69
69
|
import { CheckIcon as Lr } from "./CheckIcon.js";
|
|
70
70
|
import { ExternalLinkIcon as Br } from "./ExternalLinkIcon.js";
|
|
71
|
-
import { BathroomIcon as
|
|
72
|
-
import { EnergyClassIcon as
|
|
71
|
+
import { BathroomIcon as Gr } from "./BathroomIcon.js";
|
|
72
|
+
import { EnergyClassIcon as Mr } from "./EnergyClassIcon.js";
|
|
73
73
|
import { AuctionHammerIcon as Vr } from "./AuctionHammerIcon.js";
|
|
74
74
|
import { PhotoIcon as Ur } from "./PhotoIcon.js";
|
|
75
75
|
import { TelegramRoundedIcon as zr } from "./TelegramRoundedIcon.js";
|
|
@@ -91,12 +91,12 @@ import { PoolIcon as he } from "./PoolIcon.js";
|
|
|
91
91
|
import { PrivateGardenIcon as Se } from "./PrivateGardenIcon.js";
|
|
92
92
|
import { CommunalGardenIcon as ye } from "./CommunalGardenIcon.js";
|
|
93
93
|
import { TennisIcon as Ce } from "./TennisIcon.js";
|
|
94
|
-
import { ReceptionIcon as
|
|
94
|
+
import { ReceptionIcon as we } from "./ReceptionIcon.js";
|
|
95
95
|
import { ArchitecturalBarriersIcon as Fe } from "./ArchitecturalBarriersIcon.js";
|
|
96
96
|
import { UploadIcon as Le } from "./UploadIcon.js";
|
|
97
97
|
import { HobIcon as Be } from "./HobIcon.js";
|
|
98
|
-
import { FridgeIcon as
|
|
99
|
-
import { WashingMachineIcon as
|
|
98
|
+
import { FridgeIcon as Ge } from "./FridgeIcon.js";
|
|
99
|
+
import { WashingMachineIcon as Me } from "./WashingMachineIcon.js";
|
|
100
100
|
import { DishwasherIcon as Ve } from "./DishwasherIcon.js";
|
|
101
101
|
import { PhotoAlbumIcon as Ue } from "./PhotoAlbumIcon.js";
|
|
102
102
|
import { FurnishedIcon as ze } from "./FurnishedIcon.js";
|
|
@@ -118,12 +118,12 @@ import { ElectricGateIcon as ht } from "./ElectricGateIcon.js";
|
|
|
118
118
|
import { WhirlpoolIcon as St } from "./WhirlpoolIcon.js";
|
|
119
119
|
import { FireplaceIcon as yt } from "./FireplaceIcon.js";
|
|
120
120
|
import { SecurityDoorIcon as Ct } from "./SecurityDoorIcon.js";
|
|
121
|
-
import { TypeTvIcon as
|
|
121
|
+
import { TypeTvIcon as wt } from "./TypeTvIcon.js";
|
|
122
122
|
import { SatelliteSystemIcon as Ft } from "./SatelliteSystemIcon.js";
|
|
123
123
|
import { TypeRollerShutterIcon as Lt } from "./TypeRollerShutterIcon.js";
|
|
124
124
|
import { TypeFloorIcon as Bt } from "./TypeFloorIcon.js";
|
|
125
|
-
import { FrontBuildingIcon as
|
|
126
|
-
import { LaundryIcon as
|
|
125
|
+
import { FrontBuildingIcon as Gt } from "./FrontBuildingIcon.js";
|
|
126
|
+
import { LaundryIcon as Mt } from "./LaundryIcon.js";
|
|
127
127
|
import { MezzanineIcon as Vt } from "./MezzanineIcon.js";
|
|
128
128
|
import { AttachedIcon as Ut } from "./AttachedIcon.js";
|
|
129
129
|
import { SupermarketIcon as zt } from "./SupermarketIcon.js";
|
|
@@ -135,39 +135,41 @@ import { CrossIcon as $t } from "./CrossIcon.js";
|
|
|
135
135
|
import { ZoomIcon as rn } from "./ZoomIcon.js";
|
|
136
136
|
import { ConditionTypeIcon as tn } from "./ConditionTypeIcon.js";
|
|
137
137
|
import { GeolocationIcon as cn } from "./GeolocationIcon.js";
|
|
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 {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
138
|
+
import { GpsIcon as pn } from "./GpsIcon.js";
|
|
139
|
+
import { TradingIcon as In } from "./TradingIcon.js";
|
|
140
|
+
import { BankIcon as an } from "./BankIcon.js";
|
|
141
|
+
import { CartIcon as sn } from "./CartIcon.js";
|
|
142
|
+
import { ChargeIcon as gn } from "./ChargeIcon.js";
|
|
143
|
+
import { HospitalIcon as kn } from "./HospitalIcon.js";
|
|
144
|
+
import { PharmacyIcon as Wn } from "./PharmacyIcon.js";
|
|
145
|
+
import { PostOfficeIcon as Pn } from "./PostOfficeIcon.js";
|
|
146
|
+
import { SchoolIcon as An } from "./SchoolIcon.js";
|
|
147
|
+
import { SubwayIcon as Tn } from "./SubwayIcon.js";
|
|
148
|
+
import { TransportIcon as bn } from "./TransportIcon.js";
|
|
149
|
+
import { MetroIcon as Nn } from "./MetroIcon.js";
|
|
150
|
+
import { TrainIcon as vn } from "./TrainIcon.js";
|
|
151
|
+
import { BusIcon as Dn } from "./BusIcon.js";
|
|
152
|
+
import { WikicasaDatiLogoIcon as Hn } from "./WikicasaDatiLogo.js";
|
|
153
|
+
import { WikicasaLogoIcon as Rn } from "./WikicasaLogo.js";
|
|
154
|
+
import { WikiNerdImg as En } from "./WikiNerd.js";
|
|
155
|
+
import { WikiNerdValutaMobileImg as qn } from "./WikiNerdValutaMobile.js";
|
|
156
|
+
import { WikiNerdMercatoImg as Kn } from "./WikiNerdMercatoHome.js";
|
|
157
|
+
import { WikiNerdValutaDesktopImg as Qn } from "./WikiNerdValutaDesktop.js";
|
|
158
|
+
import { WikiNerdDownloadAppImg as Zn } from "./WikiNerdDownloadApp.js";
|
|
159
|
+
import { WikicasaStudioLogoIcon as Jn } from "./WikicasaStudioLogo.js";
|
|
160
|
+
import { GenericUserWikiAvatarImg as _n } from "./GenericUserWikiAvatar.js";
|
|
161
|
+
import { ShieldImg as oc } from "./ShieldImg.js";
|
|
162
|
+
import { SnapImg as ec } from "./SnapImg.js";
|
|
163
|
+
import { StopWatchImg as nc } from "./StopWatchImg.js";
|
|
164
|
+
import { CheckImg as mc } from "./CheckImg.js";
|
|
165
|
+
import { IareeImg as fc } from "./IareeImg.js";
|
|
166
|
+
import { WikiNerdAnalyzeImg as xc } from "./WikiNerdAnalyzeImg.js";
|
|
167
|
+
import { WikiNerdValuationNotAvailableImg as ic } from "./WikiNerdValuationNotAvailableImg.js";
|
|
168
|
+
import { InsightImg as sc } from "./InsightImg.js";
|
|
169
|
+
import { GenericUserWikiAvatarSquaredImg as gc } from "./GenericUserWikiAvatarSquaredImg.js";
|
|
170
|
+
import { WikiNoSavedSearchesImg as kc } from "./WikiNoSavedSearches.js";
|
|
171
|
+
import { WikicasaProIcon as Wc } from "./WikicasaProIcon.js";
|
|
172
|
+
import { WikiNerdAgency as Pc } from "./WikiNerdAgency.js";
|
|
171
173
|
export {
|
|
172
174
|
e as AboutUsIcon,
|
|
173
175
|
je as AirConditionerIcon,
|
|
@@ -180,20 +182,20 @@ export {
|
|
|
180
182
|
Xe as AtticIcon,
|
|
181
183
|
Vr as AuctionHammerIcon,
|
|
182
184
|
Yt as BalconyIcon,
|
|
183
|
-
|
|
185
|
+
an as BankIcon,
|
|
184
186
|
m as BarChartIcon,
|
|
185
|
-
|
|
187
|
+
Gr as BathroomIcon,
|
|
186
188
|
f as BellIcon,
|
|
187
189
|
de as BoxIcon,
|
|
188
190
|
x as BulbIcon,
|
|
189
|
-
|
|
190
|
-
|
|
191
|
+
Dn as BusIcon,
|
|
192
|
+
sn as CartIcon,
|
|
191
193
|
lt as CeilingIcon,
|
|
192
194
|
Oe as CellarIcon,
|
|
193
|
-
|
|
195
|
+
gn as ChargeIcon,
|
|
194
196
|
i as CheckActiveIcon,
|
|
195
197
|
Lr as CheckIcon,
|
|
196
|
-
|
|
198
|
+
mc as CheckImg,
|
|
197
199
|
s as CheckInactiveIcon,
|
|
198
200
|
ur as CheckRoundedIcon,
|
|
199
201
|
Xt as ClockIcon,
|
|
@@ -211,49 +213,50 @@ export {
|
|
|
211
213
|
P as DrawIcon,
|
|
212
214
|
A as EditIcon,
|
|
213
215
|
ht as ElectricGateIcon,
|
|
214
|
-
|
|
216
|
+
Mr as EnergyClassIcon,
|
|
215
217
|
dt as EntranceIcon,
|
|
216
218
|
Br as ExternalLinkIcon,
|
|
217
219
|
jo as FacebookIcon,
|
|
218
220
|
Yr as FacebookRoundedIcon,
|
|
219
221
|
yt as FireplaceIcon,
|
|
220
222
|
pt as FixturesIcon,
|
|
221
|
-
|
|
222
|
-
|
|
223
|
+
Ge as FridgeIcon,
|
|
224
|
+
Gt as FrontBuildingIcon,
|
|
223
225
|
ze as FurnishedIcon,
|
|
224
226
|
Oo as GearIcon,
|
|
225
|
-
|
|
226
|
-
|
|
227
|
+
_n as GenericUserWikiAvatarImg,
|
|
228
|
+
gc as GenericUserWikiAvatarSquaredImg,
|
|
227
229
|
cn as GeolocationIcon,
|
|
228
|
-
|
|
230
|
+
T as GermanyFlagIcon,
|
|
229
231
|
cr as GoogleIcon,
|
|
232
|
+
pn as GpsIcon,
|
|
230
233
|
tr as HamburgerMenuIcon,
|
|
231
234
|
b as HeartIcon,
|
|
232
235
|
Xr as HeartShadowedIcon,
|
|
233
236
|
N as HidePswIcon,
|
|
234
237
|
Be as HobIcon,
|
|
235
238
|
v as HomeIcon,
|
|
236
|
-
|
|
239
|
+
kn as HospitalIcon,
|
|
237
240
|
at as HotWaterIcon,
|
|
238
241
|
dr as HouseValuationIcon,
|
|
239
|
-
|
|
242
|
+
fc as IareeImg,
|
|
240
243
|
Fr as InfoIcon,
|
|
241
|
-
|
|
244
|
+
sc as InsightImg,
|
|
242
245
|
$o as InstagramIcon,
|
|
243
246
|
D as ItalyFlagIcon,
|
|
244
247
|
Ie as KeyIcon,
|
|
245
248
|
Ye as KitchenIcon,
|
|
246
|
-
|
|
247
|
-
|
|
249
|
+
Mt as LaundryIcon,
|
|
250
|
+
H as LayersIcon,
|
|
248
251
|
Ot as LiftIcon,
|
|
249
252
|
Xo as LinkedinIcon,
|
|
250
|
-
|
|
253
|
+
R as LocationIcon,
|
|
251
254
|
pe as LockIcon,
|
|
252
255
|
E as LogoutIcon,
|
|
253
256
|
q as MailIcon,
|
|
254
257
|
K as MapIcon,
|
|
255
258
|
ae as MegaphoneIcon,
|
|
256
|
-
|
|
259
|
+
Nn as MetroIcon,
|
|
257
260
|
Vt as MezzanineIcon,
|
|
258
261
|
Q as NewsIcon,
|
|
259
262
|
Z as NotesIcon,
|
|
@@ -261,7 +264,7 @@ export {
|
|
|
261
264
|
ue as ParkingIcon,
|
|
262
265
|
le as ParkingSpotIcon,
|
|
263
266
|
ce as PartnershipIcon,
|
|
264
|
-
|
|
267
|
+
Wn as PharmacyIcon,
|
|
265
268
|
J as PhoneIcon,
|
|
266
269
|
Ue as PhotoAlbumIcon,
|
|
267
270
|
Ur as PhotoIcon,
|
|
@@ -270,7 +273,7 @@ export {
|
|
|
270
273
|
oo as PlanIcon,
|
|
271
274
|
eo as PlusIcon,
|
|
272
275
|
he as PoolIcon,
|
|
273
|
-
|
|
276
|
+
Pn as PostOfficeIcon,
|
|
274
277
|
no as PrestigeIcon,
|
|
275
278
|
yr as PriceIcon,
|
|
276
279
|
ar as PrincipalIcon,
|
|
@@ -278,22 +281,22 @@ export {
|
|
|
278
281
|
Se as PrivateGardenIcon,
|
|
279
282
|
fo as ProfileIcon,
|
|
280
283
|
xo as QuotesIcon,
|
|
281
|
-
|
|
284
|
+
we as ReceptionIcon,
|
|
282
285
|
io as RequestIcon,
|
|
283
286
|
rt as RoofIcon,
|
|
284
287
|
Ft as SatelliteSystemIcon,
|
|
285
|
-
|
|
288
|
+
An as SchoolIcon,
|
|
286
289
|
so as SearchIcon,
|
|
287
290
|
Ct as SecurityDoorIcon,
|
|
288
291
|
uo as ShareIcon,
|
|
289
|
-
|
|
290
|
-
|
|
292
|
+
oc as ShieldImg,
|
|
293
|
+
ec as SnapImg,
|
|
291
294
|
$r as SortIcon,
|
|
292
295
|
Sr as SquareMeterIcon,
|
|
293
296
|
te as StarIcon,
|
|
294
|
-
|
|
297
|
+
nc as StopWatchImg,
|
|
295
298
|
re as StreetViewIcon,
|
|
296
|
-
|
|
299
|
+
Tn as SubwayIcon,
|
|
297
300
|
ho as SuitcaseIcon,
|
|
298
301
|
zt as SupermarketIcon,
|
|
299
302
|
$e as TavernIcon,
|
|
@@ -302,39 +305,40 @@ export {
|
|
|
302
305
|
jt as TerraceIcon,
|
|
303
306
|
So as TieIcon,
|
|
304
307
|
yo as TourIcon,
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
+
In as TradingIcon,
|
|
309
|
+
vn as TrainIcon,
|
|
310
|
+
wr as TransactionIcon,
|
|
311
|
+
bn as TransportIcon,
|
|
308
312
|
Bt as TypeFloorIcon,
|
|
309
313
|
Lt as TypeRollerShutterIcon,
|
|
310
|
-
|
|
314
|
+
wt as TypeTvIcon,
|
|
311
315
|
It as TypeViewIcon,
|
|
312
316
|
Co as UkFlagIcon,
|
|
313
317
|
Le as UploadIcon,
|
|
314
|
-
|
|
318
|
+
wo as ValuationIcon,
|
|
315
319
|
Fo as VideoIcon,
|
|
316
320
|
Lo as ViewPswIcon,
|
|
317
321
|
Bo as WalletIcon,
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
322
|
+
Go as WarningIcon,
|
|
323
|
+
Mo as WarningIconRounded,
|
|
324
|
+
Me as WashingMachineIcon,
|
|
321
325
|
Or as WhatsappRoundedIcon,
|
|
322
326
|
St as WhirlpoolIcon,
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
327
|
+
Pc as WikiNerdAgency,
|
|
328
|
+
xc as WikiNerdAnalyzeImg,
|
|
329
|
+
Zn as WikiNerdDownloadAppImg,
|
|
330
|
+
En as WikiNerdImg,
|
|
331
|
+
Kn as WikiNerdMercatoImg,
|
|
332
|
+
ic as WikiNerdValuationNotAvailableImg,
|
|
333
|
+
Qn as WikiNerdValutaDesktopImg,
|
|
334
|
+
qn as WikiNerdValutaMobileImg,
|
|
335
|
+
kc as WikiNoSavedSearchesImg,
|
|
336
|
+
Hn as WikicasaDatiLogoIcon,
|
|
333
337
|
zo as WikicasaIcon,
|
|
334
|
-
|
|
335
|
-
|
|
338
|
+
Rn as WikicasaLogoIcon,
|
|
339
|
+
Wc as WikicasaProIcon,
|
|
336
340
|
pr as WikicasaRoundedIcon,
|
|
337
|
-
|
|
341
|
+
Jn as WikicasaStudioLogoIcon,
|
|
338
342
|
Vo as WkAppIcon,
|
|
339
343
|
Yo as WkFavIcon,
|
|
340
344
|
rr as YoutubeIcon,
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -135,6 +135,8 @@ export { CrossIcon } from './svgIcons/CrossIcon';
|
|
|
135
135
|
export { ZoomIcon } from './svgIcons/ZoomIcon';
|
|
136
136
|
export { ConditionTypeIcon } from './svgIcons/ConditionTypeIcon';
|
|
137
137
|
export { GeolocationIcon } from './svgIcons/GeolocationIcon';
|
|
138
|
+
export { GpsIcon } from './svgIcons/GpsIcon';
|
|
139
|
+
export { TradingIcon } from './svgIcons/TradingIcon';
|
|
138
140
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
139
141
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|
|
140
142
|
export { ChargeIcon } from './svgIcons/poi/ChargeIcon';
|