@wikicasa-dev/svg-icons 1.1.1 → 1.2.1
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/GeolocationIcon.js +31 -0
- package/dist/GpsIcon.js +33 -0
- package/dist/index.js +98 -94
- package/dist/lib/index.d.ts +2 -0
- package/dist/lib/svgIcons/GeolocationIcon.d.ts +4 -0
- package/dist/lib/svgIcons/GpsIcon.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { h as e } from "vue";
|
|
2
|
+
import { g as n } from "./DefaultValues-CpabIgVz.js";
|
|
3
|
+
const s = (t, { attrs: o }) => {
|
|
4
|
+
t = { ...n(), ...t };
|
|
5
|
+
const { width: a, height: i } = t;
|
|
6
|
+
return e(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
viewBox: "0 0 17.019 17.019",
|
|
11
|
+
width: `${a}`,
|
|
12
|
+
height: `${i}`,
|
|
13
|
+
class: t.class ?? "",
|
|
14
|
+
"aria-hidden": o["aria-hidden"] ?? "true"
|
|
15
|
+
},
|
|
16
|
+
[
|
|
17
|
+
e("g", [
|
|
18
|
+
e("path", {
|
|
19
|
+
fill: "none",
|
|
20
|
+
stroke: "#222",
|
|
21
|
+
"stroke-linecap": "round",
|
|
22
|
+
"stroke-linejoin": "round",
|
|
23
|
+
d: "m16.453 1.356-6.264 14.51a1.074 1.074 0 0 1-2.045-.248l-.827-4.929a1.2 1.2 0 0 0-.987-.987l-4.929-.825a1.074 1.074 0 0 1-.248-2.046L15.667.566a.6.6 0 0 1 .786.79Z"
|
|
24
|
+
})
|
|
25
|
+
])
|
|
26
|
+
]
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
export {
|
|
30
|
+
s as GeolocationIcon
|
|
31
|
+
};
|
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
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -15,8 +15,8 @@ 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";
|
|
@@ -41,9 +41,9 @@ import { ValuationIcon as To } 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
|
|
46
|
-
import { WkAppIcon as
|
|
44
|
+
import { WarningIcon as Go } from "./WarningIcon.js";
|
|
45
|
+
import { WarningIconRounded as Mo } from "./WarningIconRounded.js";
|
|
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";
|
|
49
49
|
import { GearIcon as Oo } from "./GearIcon.js";
|
|
@@ -68,9 +68,9 @@ import { TransactionIcon as Tr } 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
|
|
73
|
-
import { AuctionHammerIcon as
|
|
71
|
+
import { BathroomIcon as Gr } from "./BathroomIcon.js";
|
|
72
|
+
import { EnergyClassIcon as Mr } from "./EnergyClassIcon.js";
|
|
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";
|
|
76
76
|
import { WhatsappRoundedIcon as Or } from "./WhatsappRoundedIcon.js";
|
|
@@ -95,9 +95,9 @@ import { ReceptionIcon as Te } 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
|
|
100
|
-
import { DishwasherIcon as
|
|
98
|
+
import { FridgeIcon as Ge } from "./FridgeIcon.js";
|
|
99
|
+
import { WashingMachineIcon as Me } from "./WashingMachineIcon.js";
|
|
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";
|
|
103
103
|
import { CellarIcon as Oe } from "./CellarIcon.js";
|
|
@@ -122,9 +122,9 @@ import { TypeTvIcon as Tt } 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
|
|
127
|
-
import { MezzanineIcon as
|
|
125
|
+
import { FrontBuildingIcon as Gt } from "./FrontBuildingIcon.js";
|
|
126
|
+
import { LaundryIcon as Mt } from "./LaundryIcon.js";
|
|
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";
|
|
130
130
|
import { LiftIcon as Ot } from "./LiftIcon.js";
|
|
@@ -134,39 +134,41 @@ import { ClockIcon as Xt } from "./ClockIcon.js";
|
|
|
134
134
|
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
|
-
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 {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
137
|
+
import { GeolocationIcon as cn } from "./GeolocationIcon.js";
|
|
138
|
+
import { GpsIcon as pn } from "./GpsIcon.js";
|
|
139
|
+
import { BankIcon as In } from "./BankIcon.js";
|
|
140
|
+
import { CartIcon as an } from "./CartIcon.js";
|
|
141
|
+
import { ChargeIcon as sn } from "./ChargeIcon.js";
|
|
142
|
+
import { HospitalIcon as gn } from "./HospitalIcon.js";
|
|
143
|
+
import { PharmacyIcon as kn } from "./PharmacyIcon.js";
|
|
144
|
+
import { PostOfficeIcon as Wn } from "./PostOfficeIcon.js";
|
|
145
|
+
import { SchoolIcon as Pn } from "./SchoolIcon.js";
|
|
146
|
+
import { SubwayIcon as An } from "./SubwayIcon.js";
|
|
147
|
+
import { TransportIcon as wn } from "./TransportIcon.js";
|
|
148
|
+
import { MetroIcon as bn } from "./MetroIcon.js";
|
|
149
|
+
import { TrainIcon as Nn } from "./TrainIcon.js";
|
|
150
|
+
import { BusIcon as vn } from "./BusIcon.js";
|
|
151
|
+
import { WikicasaDatiLogoIcon as Dn } from "./WikicasaDatiLogo.js";
|
|
152
|
+
import { WikicasaLogoIcon as Hn } from "./WikicasaLogo.js";
|
|
153
|
+
import { WikiNerdImg as Rn } from "./WikiNerd.js";
|
|
154
|
+
import { WikiNerdValutaMobileImg as En } from "./WikiNerdValutaMobile.js";
|
|
155
|
+
import { WikiNerdMercatoImg as qn } from "./WikiNerdMercatoHome.js";
|
|
156
|
+
import { WikiNerdValutaDesktopImg as Kn } from "./WikiNerdValutaDesktop.js";
|
|
157
|
+
import { WikiNerdDownloadAppImg as Qn } from "./WikiNerdDownloadApp.js";
|
|
158
|
+
import { WikicasaStudioLogoIcon as Zn } from "./WikicasaStudioLogo.js";
|
|
159
|
+
import { GenericUserWikiAvatarImg as Jn } from "./GenericUserWikiAvatar.js";
|
|
160
|
+
import { ShieldImg as _n } from "./ShieldImg.js";
|
|
161
|
+
import { SnapImg as oc } from "./SnapImg.js";
|
|
162
|
+
import { StopWatchImg as ec } from "./StopWatchImg.js";
|
|
163
|
+
import { CheckImg as nc } from "./CheckImg.js";
|
|
164
|
+
import { IareeImg as mc } from "./IareeImg.js";
|
|
165
|
+
import { WikiNerdAnalyzeImg as fc } from "./WikiNerdAnalyzeImg.js";
|
|
166
|
+
import { WikiNerdValuationNotAvailableImg as xc } from "./WikiNerdValuationNotAvailableImg.js";
|
|
167
|
+
import { InsightImg as ic } from "./InsightImg.js";
|
|
168
|
+
import { GenericUserWikiAvatarSquaredImg as sc } from "./GenericUserWikiAvatarSquaredImg.js";
|
|
169
|
+
import { WikiNoSavedSearchesImg as gc } from "./WikiNoSavedSearches.js";
|
|
170
|
+
import { WikicasaProIcon as kc } from "./WikicasaProIcon.js";
|
|
171
|
+
import { WikiNerdAgency as Wc } from "./WikiNerdAgency.js";
|
|
170
172
|
export {
|
|
171
173
|
e as AboutUsIcon,
|
|
172
174
|
je as AirConditionerIcon,
|
|
@@ -177,22 +179,22 @@ export {
|
|
|
177
179
|
Ir as ArrowIndicatorIcon,
|
|
178
180
|
Ut as AttachedIcon,
|
|
179
181
|
Xe as AtticIcon,
|
|
180
|
-
|
|
182
|
+
Vr as AuctionHammerIcon,
|
|
181
183
|
Yt as BalconyIcon,
|
|
182
|
-
|
|
184
|
+
In as BankIcon,
|
|
183
185
|
m as BarChartIcon,
|
|
184
|
-
|
|
186
|
+
Gr as BathroomIcon,
|
|
185
187
|
f as BellIcon,
|
|
186
188
|
de as BoxIcon,
|
|
187
189
|
x as BulbIcon,
|
|
188
|
-
|
|
189
|
-
|
|
190
|
+
vn as BusIcon,
|
|
191
|
+
an as CartIcon,
|
|
190
192
|
lt as CeilingIcon,
|
|
191
193
|
Oe as CellarIcon,
|
|
192
|
-
|
|
194
|
+
sn as ChargeIcon,
|
|
193
195
|
i as CheckActiveIcon,
|
|
194
196
|
Lr as CheckIcon,
|
|
195
|
-
|
|
197
|
+
nc as CheckImg,
|
|
196
198
|
s as CheckInactiveIcon,
|
|
197
199
|
ur as CheckRoundedIcon,
|
|
198
200
|
Xt as ClockIcon,
|
|
@@ -205,61 +207,63 @@ export {
|
|
|
205
207
|
k as DashboardIcon,
|
|
206
208
|
W as DeleteIcon,
|
|
207
209
|
Cr as DemandIcon,
|
|
208
|
-
|
|
210
|
+
Ve as DishwasherIcon,
|
|
209
211
|
hr as DownloadIcon,
|
|
210
212
|
P as DrawIcon,
|
|
211
213
|
A as EditIcon,
|
|
212
214
|
ht as ElectricGateIcon,
|
|
213
|
-
|
|
215
|
+
Mr as EnergyClassIcon,
|
|
214
216
|
dt as EntranceIcon,
|
|
215
217
|
Br as ExternalLinkIcon,
|
|
216
218
|
jo as FacebookIcon,
|
|
217
219
|
Yr as FacebookRoundedIcon,
|
|
218
220
|
yt as FireplaceIcon,
|
|
219
221
|
pt as FixturesIcon,
|
|
220
|
-
|
|
221
|
-
|
|
222
|
+
Ge as FridgeIcon,
|
|
223
|
+
Gt as FrontBuildingIcon,
|
|
222
224
|
ze as FurnishedIcon,
|
|
223
225
|
Oo as GearIcon,
|
|
224
|
-
|
|
225
|
-
|
|
226
|
+
Jn as GenericUserWikiAvatarImg,
|
|
227
|
+
sc as GenericUserWikiAvatarSquaredImg,
|
|
228
|
+
cn as GeolocationIcon,
|
|
226
229
|
w as GermanyFlagIcon,
|
|
227
230
|
cr as GoogleIcon,
|
|
231
|
+
pn as GpsIcon,
|
|
228
232
|
tr as HamburgerMenuIcon,
|
|
229
233
|
b as HeartIcon,
|
|
230
234
|
Xr as HeartShadowedIcon,
|
|
231
235
|
N as HidePswIcon,
|
|
232
236
|
Be as HobIcon,
|
|
233
237
|
v as HomeIcon,
|
|
234
|
-
|
|
238
|
+
gn as HospitalIcon,
|
|
235
239
|
at as HotWaterIcon,
|
|
236
240
|
dr as HouseValuationIcon,
|
|
237
|
-
|
|
241
|
+
mc as IareeImg,
|
|
238
242
|
Fr as InfoIcon,
|
|
239
|
-
|
|
243
|
+
ic as InsightImg,
|
|
240
244
|
$o as InstagramIcon,
|
|
241
245
|
D as ItalyFlagIcon,
|
|
242
246
|
Ie as KeyIcon,
|
|
243
247
|
Ye as KitchenIcon,
|
|
244
|
-
|
|
245
|
-
|
|
248
|
+
Mt as LaundryIcon,
|
|
249
|
+
H as LayersIcon,
|
|
246
250
|
Ot as LiftIcon,
|
|
247
251
|
Xo as LinkedinIcon,
|
|
248
|
-
|
|
252
|
+
R as LocationIcon,
|
|
249
253
|
pe as LockIcon,
|
|
250
254
|
E as LogoutIcon,
|
|
251
255
|
q as MailIcon,
|
|
252
256
|
K as MapIcon,
|
|
253
257
|
ae as MegaphoneIcon,
|
|
254
|
-
|
|
255
|
-
|
|
258
|
+
bn as MetroIcon,
|
|
259
|
+
Vt as MezzanineIcon,
|
|
256
260
|
Q as NewsIcon,
|
|
257
261
|
Z as NotesIcon,
|
|
258
262
|
ut as OpticFiberIcon,
|
|
259
263
|
ue as ParkingIcon,
|
|
260
264
|
le as ParkingSpotIcon,
|
|
261
265
|
ce as PartnershipIcon,
|
|
262
|
-
|
|
266
|
+
kn as PharmacyIcon,
|
|
263
267
|
J as PhoneIcon,
|
|
264
268
|
Ue as PhotoAlbumIcon,
|
|
265
269
|
Ur as PhotoIcon,
|
|
@@ -268,7 +272,7 @@ export {
|
|
|
268
272
|
oo as PlanIcon,
|
|
269
273
|
eo as PlusIcon,
|
|
270
274
|
he as PoolIcon,
|
|
271
|
-
|
|
275
|
+
Wn as PostOfficeIcon,
|
|
272
276
|
no as PrestigeIcon,
|
|
273
277
|
yr as PriceIcon,
|
|
274
278
|
ar as PrincipalIcon,
|
|
@@ -280,18 +284,18 @@ export {
|
|
|
280
284
|
io as RequestIcon,
|
|
281
285
|
rt as RoofIcon,
|
|
282
286
|
Ft as SatelliteSystemIcon,
|
|
283
|
-
|
|
287
|
+
Pn as SchoolIcon,
|
|
284
288
|
so as SearchIcon,
|
|
285
289
|
Ct as SecurityDoorIcon,
|
|
286
290
|
uo as ShareIcon,
|
|
287
|
-
|
|
288
|
-
|
|
291
|
+
_n as ShieldImg,
|
|
292
|
+
oc as SnapImg,
|
|
289
293
|
$r as SortIcon,
|
|
290
294
|
Sr as SquareMeterIcon,
|
|
291
295
|
te as StarIcon,
|
|
292
|
-
|
|
296
|
+
ec as StopWatchImg,
|
|
293
297
|
re as StreetViewIcon,
|
|
294
|
-
|
|
298
|
+
An as SubwayIcon,
|
|
295
299
|
ho as SuitcaseIcon,
|
|
296
300
|
zt as SupermarketIcon,
|
|
297
301
|
$e as TavernIcon,
|
|
@@ -300,9 +304,9 @@ export {
|
|
|
300
304
|
jt as TerraceIcon,
|
|
301
305
|
So as TieIcon,
|
|
302
306
|
yo as TourIcon,
|
|
303
|
-
|
|
307
|
+
Nn as TrainIcon,
|
|
304
308
|
Tr as TransactionIcon,
|
|
305
|
-
|
|
309
|
+
wn as TransportIcon,
|
|
306
310
|
Bt as TypeFloorIcon,
|
|
307
311
|
Lt as TypeRollerShutterIcon,
|
|
308
312
|
Tt as TypeTvIcon,
|
|
@@ -313,27 +317,27 @@ export {
|
|
|
313
317
|
Fo as VideoIcon,
|
|
314
318
|
Lo as ViewPswIcon,
|
|
315
319
|
Bo as WalletIcon,
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
320
|
+
Go as WarningIcon,
|
|
321
|
+
Mo as WarningIconRounded,
|
|
322
|
+
Me as WashingMachineIcon,
|
|
319
323
|
Or as WhatsappRoundedIcon,
|
|
320
324
|
St as WhirlpoolIcon,
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
325
|
+
Wc as WikiNerdAgency,
|
|
326
|
+
fc as WikiNerdAnalyzeImg,
|
|
327
|
+
Qn as WikiNerdDownloadAppImg,
|
|
328
|
+
Rn as WikiNerdImg,
|
|
329
|
+
qn as WikiNerdMercatoImg,
|
|
330
|
+
xc as WikiNerdValuationNotAvailableImg,
|
|
331
|
+
Kn as WikiNerdValutaDesktopImg,
|
|
332
|
+
En as WikiNerdValutaMobileImg,
|
|
333
|
+
gc as WikiNoSavedSearchesImg,
|
|
334
|
+
Dn as WikicasaDatiLogoIcon,
|
|
331
335
|
zo as WikicasaIcon,
|
|
332
|
-
|
|
333
|
-
|
|
336
|
+
Hn as WikicasaLogoIcon,
|
|
337
|
+
kc as WikicasaProIcon,
|
|
334
338
|
pr as WikicasaRoundedIcon,
|
|
335
|
-
|
|
336
|
-
|
|
339
|
+
Zn as WikicasaStudioLogoIcon,
|
|
340
|
+
Vo as WkAppIcon,
|
|
337
341
|
Yo as WkFavIcon,
|
|
338
342
|
rr as YoutubeIcon,
|
|
339
343
|
rn as ZoomIcon
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -134,6 +134,8 @@ export { ClockIcon } from './svgIcons/ClockIcon';
|
|
|
134
134
|
export { CrossIcon } from './svgIcons/CrossIcon';
|
|
135
135
|
export { ZoomIcon } from './svgIcons/ZoomIcon';
|
|
136
136
|
export { ConditionTypeIcon } from './svgIcons/ConditionTypeIcon';
|
|
137
|
+
export { GeolocationIcon } from './svgIcons/GeolocationIcon';
|
|
138
|
+
export { GpsIcon } from './svgIcons/GpsIcon';
|
|
137
139
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
138
140
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|
|
139
141
|
export { ChargeIcon } from './svgIcons/poi/ChargeIcon';
|