@wikicasa-dev/svg-icons 1.2.0 → 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/GpsIcon.js +33 -0
- package/dist/index.js +88 -86
- package/dist/lib/index.d.ts +1 -0
- package/dist/lib/svgIcons/GpsIcon.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
|
+
};
|
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,8 +41,8 @@ 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
|
|
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";
|
|
@@ -68,8 +68,8 @@ 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
|
|
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";
|
|
@@ -95,8 +95,8 @@ 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
|
|
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";
|
|
@@ -122,8 +122,8 @@ 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
|
|
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,40 @@ 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 { 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";
|
|
171
172
|
export {
|
|
172
173
|
e as AboutUsIcon,
|
|
173
174
|
je as AirConditionerIcon,
|
|
@@ -180,20 +181,20 @@ export {
|
|
|
180
181
|
Xe as AtticIcon,
|
|
181
182
|
Vr as AuctionHammerIcon,
|
|
182
183
|
Yt as BalconyIcon,
|
|
183
|
-
|
|
184
|
+
In as BankIcon,
|
|
184
185
|
m as BarChartIcon,
|
|
185
|
-
|
|
186
|
+
Gr as BathroomIcon,
|
|
186
187
|
f as BellIcon,
|
|
187
188
|
de as BoxIcon,
|
|
188
189
|
x as BulbIcon,
|
|
189
|
-
|
|
190
|
-
|
|
190
|
+
vn as BusIcon,
|
|
191
|
+
an as CartIcon,
|
|
191
192
|
lt as CeilingIcon,
|
|
192
193
|
Oe as CellarIcon,
|
|
193
|
-
|
|
194
|
+
sn as ChargeIcon,
|
|
194
195
|
i as CheckActiveIcon,
|
|
195
196
|
Lr as CheckIcon,
|
|
196
|
-
|
|
197
|
+
nc as CheckImg,
|
|
197
198
|
s as CheckInactiveIcon,
|
|
198
199
|
ur as CheckRoundedIcon,
|
|
199
200
|
Xt as ClockIcon,
|
|
@@ -211,49 +212,50 @@ export {
|
|
|
211
212
|
P as DrawIcon,
|
|
212
213
|
A as EditIcon,
|
|
213
214
|
ht as ElectricGateIcon,
|
|
214
|
-
|
|
215
|
+
Mr as EnergyClassIcon,
|
|
215
216
|
dt as EntranceIcon,
|
|
216
217
|
Br as ExternalLinkIcon,
|
|
217
218
|
jo as FacebookIcon,
|
|
218
219
|
Yr as FacebookRoundedIcon,
|
|
219
220
|
yt as FireplaceIcon,
|
|
220
221
|
pt as FixturesIcon,
|
|
221
|
-
|
|
222
|
-
|
|
222
|
+
Ge as FridgeIcon,
|
|
223
|
+
Gt as FrontBuildingIcon,
|
|
223
224
|
ze as FurnishedIcon,
|
|
224
225
|
Oo as GearIcon,
|
|
225
|
-
|
|
226
|
-
|
|
226
|
+
Jn as GenericUserWikiAvatarImg,
|
|
227
|
+
sc as GenericUserWikiAvatarSquaredImg,
|
|
227
228
|
cn as GeolocationIcon,
|
|
228
229
|
w as GermanyFlagIcon,
|
|
229
230
|
cr as GoogleIcon,
|
|
231
|
+
pn as GpsIcon,
|
|
230
232
|
tr as HamburgerMenuIcon,
|
|
231
233
|
b as HeartIcon,
|
|
232
234
|
Xr as HeartShadowedIcon,
|
|
233
235
|
N as HidePswIcon,
|
|
234
236
|
Be as HobIcon,
|
|
235
237
|
v as HomeIcon,
|
|
236
|
-
|
|
238
|
+
gn as HospitalIcon,
|
|
237
239
|
at as HotWaterIcon,
|
|
238
240
|
dr as HouseValuationIcon,
|
|
239
|
-
|
|
241
|
+
mc as IareeImg,
|
|
240
242
|
Fr as InfoIcon,
|
|
241
|
-
|
|
243
|
+
ic as InsightImg,
|
|
242
244
|
$o as InstagramIcon,
|
|
243
245
|
D as ItalyFlagIcon,
|
|
244
246
|
Ie as KeyIcon,
|
|
245
247
|
Ye as KitchenIcon,
|
|
246
|
-
|
|
247
|
-
|
|
248
|
+
Mt as LaundryIcon,
|
|
249
|
+
H as LayersIcon,
|
|
248
250
|
Ot as LiftIcon,
|
|
249
251
|
Xo as LinkedinIcon,
|
|
250
|
-
|
|
252
|
+
R as LocationIcon,
|
|
251
253
|
pe as LockIcon,
|
|
252
254
|
E as LogoutIcon,
|
|
253
255
|
q as MailIcon,
|
|
254
256
|
K as MapIcon,
|
|
255
257
|
ae as MegaphoneIcon,
|
|
256
|
-
|
|
258
|
+
bn as MetroIcon,
|
|
257
259
|
Vt as MezzanineIcon,
|
|
258
260
|
Q as NewsIcon,
|
|
259
261
|
Z as NotesIcon,
|
|
@@ -261,7 +263,7 @@ export {
|
|
|
261
263
|
ue as ParkingIcon,
|
|
262
264
|
le as ParkingSpotIcon,
|
|
263
265
|
ce as PartnershipIcon,
|
|
264
|
-
|
|
266
|
+
kn as PharmacyIcon,
|
|
265
267
|
J as PhoneIcon,
|
|
266
268
|
Ue as PhotoAlbumIcon,
|
|
267
269
|
Ur as PhotoIcon,
|
|
@@ -270,7 +272,7 @@ export {
|
|
|
270
272
|
oo as PlanIcon,
|
|
271
273
|
eo as PlusIcon,
|
|
272
274
|
he as PoolIcon,
|
|
273
|
-
|
|
275
|
+
Wn as PostOfficeIcon,
|
|
274
276
|
no as PrestigeIcon,
|
|
275
277
|
yr as PriceIcon,
|
|
276
278
|
ar as PrincipalIcon,
|
|
@@ -282,18 +284,18 @@ export {
|
|
|
282
284
|
io as RequestIcon,
|
|
283
285
|
rt as RoofIcon,
|
|
284
286
|
Ft as SatelliteSystemIcon,
|
|
285
|
-
|
|
287
|
+
Pn as SchoolIcon,
|
|
286
288
|
so as SearchIcon,
|
|
287
289
|
Ct as SecurityDoorIcon,
|
|
288
290
|
uo as ShareIcon,
|
|
289
|
-
|
|
290
|
-
|
|
291
|
+
_n as ShieldImg,
|
|
292
|
+
oc as SnapImg,
|
|
291
293
|
$r as SortIcon,
|
|
292
294
|
Sr as SquareMeterIcon,
|
|
293
295
|
te as StarIcon,
|
|
294
|
-
|
|
296
|
+
ec as StopWatchImg,
|
|
295
297
|
re as StreetViewIcon,
|
|
296
|
-
|
|
298
|
+
An as SubwayIcon,
|
|
297
299
|
ho as SuitcaseIcon,
|
|
298
300
|
zt as SupermarketIcon,
|
|
299
301
|
$e as TavernIcon,
|
|
@@ -302,9 +304,9 @@ export {
|
|
|
302
304
|
jt as TerraceIcon,
|
|
303
305
|
So as TieIcon,
|
|
304
306
|
yo as TourIcon,
|
|
305
|
-
|
|
307
|
+
Nn as TrainIcon,
|
|
306
308
|
Tr as TransactionIcon,
|
|
307
|
-
|
|
309
|
+
wn as TransportIcon,
|
|
308
310
|
Bt as TypeFloorIcon,
|
|
309
311
|
Lt as TypeRollerShutterIcon,
|
|
310
312
|
Tt as TypeTvIcon,
|
|
@@ -315,26 +317,26 @@ export {
|
|
|
315
317
|
Fo as VideoIcon,
|
|
316
318
|
Lo as ViewPswIcon,
|
|
317
319
|
Bo as WalletIcon,
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
320
|
+
Go as WarningIcon,
|
|
321
|
+
Mo as WarningIconRounded,
|
|
322
|
+
Me as WashingMachineIcon,
|
|
321
323
|
Or as WhatsappRoundedIcon,
|
|
322
324
|
St as WhirlpoolIcon,
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
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,
|
|
333
335
|
zo as WikicasaIcon,
|
|
334
|
-
|
|
335
|
-
|
|
336
|
+
Hn as WikicasaLogoIcon,
|
|
337
|
+
kc as WikicasaProIcon,
|
|
336
338
|
pr as WikicasaRoundedIcon,
|
|
337
|
-
|
|
339
|
+
Zn as WikicasaStudioLogoIcon,
|
|
338
340
|
Vo as WkAppIcon,
|
|
339
341
|
Yo as WkFavIcon,
|
|
340
342
|
rr as YoutubeIcon,
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ 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';
|
|
138
139
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
139
140
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|
|
140
141
|
export { ChargeIcon } from './svgIcons/poi/ChargeIcon';
|