@wikicasa-dev/svg-icons 0.0.44 → 0.0.45
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/StreetViewIcon.js +36 -0
- package/dist/index.js +76 -74
- package/dist/lib/index.d.ts +1 -0
- package/dist/lib/svgIcons/StreetViewIcon.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as r } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const d = (o, { attrs: e }) => r({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 20.017 17.3",
|
|
8
|
+
width: o.width ?? 20,
|
|
9
|
+
height: o.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: e["stroke-color"] ?? "#222",
|
|
16
|
+
"stroke-linecap": "round",
|
|
17
|
+
"stroke-linejoin": "round",
|
|
18
|
+
"stroke-width": e["stroke-width"] ?? "1.3"
|
|
19
|
+
},
|
|
20
|
+
[
|
|
21
|
+
t("path", {
|
|
22
|
+
d: "M14.469 11.418c2.917.471 4.9 1.391 4.9 2.448 0 1.537-4.191 2.784-9.359 2.784S.65 15.404.65 13.866c0-1.055 1.963-1.97 4.857-2.443"
|
|
23
|
+
}),
|
|
24
|
+
t("path", {
|
|
25
|
+
d: "M11.86 2.501a1.851 1.851 0 1 0-1.851 1.849 1.851 1.851 0 0 0 1.851-1.849"
|
|
26
|
+
}),
|
|
27
|
+
t("path", { d: "M10.009.65a1.851 1.851 0 1 1-1.851 1.851A1.851 1.851 0 0 1 10.009.65Z" }),
|
|
28
|
+
t("path", {
|
|
29
|
+
d: "M11.18 13.114a8.14 8.14 0 0 1 .941-2.3 4.594 4.594 0 0 0 .7-2.369V6.978c0-.72-.412-1.127-.921-1.127H8.113a.919.919 0 0 0-.92.92v1.706a4.675 4.675 0 0 0 .612 2.293 11.781 11.781 0 0 1 .98 2.352.93.93 0 0 0 .885.671h.624a.9.9 0 0 0 .886-.679Z"
|
|
30
|
+
})
|
|
31
|
+
]
|
|
32
|
+
)
|
|
33
|
+
});
|
|
34
|
+
export {
|
|
35
|
+
d as StreetViewIcon
|
|
36
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -9,12 +9,12 @@ 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";
|
|
11
11
|
import { DrawIcon as P } from "./DrawIcon.js";
|
|
12
|
-
import { EditIcon as
|
|
12
|
+
import { EditIcon as A } from "./EditIcon.js";
|
|
13
13
|
import { GermanyFlagIcon as N } from "./GermanyFlagIcon.js";
|
|
14
14
|
import { HeartIcon as y } from "./HeartIcon.js";
|
|
15
15
|
import { HidePswIcon as H } from "./HidePswIcon.js";
|
|
16
|
-
import { HomeIcon as
|
|
17
|
-
import { ItalyFlagIcon as
|
|
16
|
+
import { HomeIcon as V } from "./HomeIcon.js";
|
|
17
|
+
import { ItalyFlagIcon as R } from "./ItalyFlagIcon.js";
|
|
18
18
|
import { LayersIcon as F } from "./LayersIcon.js";
|
|
19
19
|
import { LocationIcon as T } from "./LocationIcon.js";
|
|
20
20
|
import { LogoutIcon as U } from "./LogoutIcon.js";
|
|
@@ -35,12 +35,12 @@ import { SearchIcon as so } from "./SearchIcon.js";
|
|
|
35
35
|
import { ShareIcon as uo } from "./ShareIcon.js";
|
|
36
36
|
import { SuitcaseIcon as ho } from "./SuitcaseIcon.js";
|
|
37
37
|
import { TieIcon as So } from "./TieIcon.js";
|
|
38
|
-
import { TourIcon as
|
|
38
|
+
import { TourIcon as wo } from "./TourIcon.js";
|
|
39
39
|
import { UkFlagIcon as Co } from "./UkFlagIcon.js";
|
|
40
40
|
import { ValuationIcon as bo } from "./ValuationIcon.js";
|
|
41
41
|
import { VideoIcon as Do } from "./VideoIcon.js";
|
|
42
42
|
import { ViewPswIcon as Lo } from "./ViewPswIcon.js";
|
|
43
|
-
import { WalletIcon as
|
|
43
|
+
import { WalletIcon as vo } from "./WalletIcon.js";
|
|
44
44
|
import { WarningIcon as Bo } from "./WarningIcon.js";
|
|
45
45
|
import { WarningIconRounded as Mo } from "./WarningIconRounded.js";
|
|
46
46
|
import { WkAppIcon as Go } from "./WkAppIcon.js";
|
|
@@ -62,12 +62,12 @@ import { HouseValuationIcon as sr } 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";
|
|
65
|
-
import { PriceIcon as
|
|
65
|
+
import { PriceIcon as wr } from "./PriceIcon.js";
|
|
66
66
|
import { DemandIcon as Cr } from "./DemandIcon.js";
|
|
67
67
|
import { TransactionIcon as br } from "./TransactionIcon.js";
|
|
68
68
|
import { InfoIcon as Dr } from "./InfoIcon.js";
|
|
69
69
|
import { CheckIcon as Lr } from "./CheckIcon.js";
|
|
70
|
-
import { ExternalLinkIcon as
|
|
70
|
+
import { ExternalLinkIcon as vr } from "./ExternalLinkIcon.js";
|
|
71
71
|
import { BathroomIcon as Br } from "./BathroomIcon.js";
|
|
72
72
|
import { EnergyClassIcon as Mr } from "./EnergyClassIcon.js";
|
|
73
73
|
import { AuctionHammerIcon as Gr } from "./AuctionHammerIcon.js";
|
|
@@ -78,53 +78,54 @@ import { FacebookRoundedIcon as Jr } from "./FacebookRoundedIcon.js";
|
|
|
78
78
|
import { CredipassIcon as Or } from "./CredipassIcon.js";
|
|
79
79
|
import { HeartShadowedIcon as Zr } from "./HeartShadowedIcon.js";
|
|
80
80
|
import { SortIcon as $r } from "./SortIcon.js";
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
81
|
+
import { StreetViewIcon as re } from "./StreetViewIcon.js";
|
|
82
|
+
import { BankIcon as te } from "./BankIcon.js";
|
|
83
|
+
import { BusIcon as me } from "./BusIcon.js";
|
|
84
|
+
import { CartIcon as pe } from "./CartIcon.js";
|
|
85
|
+
import { ChargeIcon as fe } from "./Charge.js";
|
|
86
|
+
import { HospitalIcon as ae } from "./HospitalIcon.js";
|
|
87
|
+
import { PharmacyIcon as de } from "./PharmacyIcon.js";
|
|
88
|
+
import { PostIcon as se } from "./PostIcon.js";
|
|
89
|
+
import { SchoolIcon as ue } from "./SchoolIcon.js";
|
|
90
|
+
import { SubwayIcon as he } from "./SubwayIcon.js";
|
|
91
|
+
import { TrainIcon as Se } from "./TrainIcon.js";
|
|
92
|
+
import { TrainAltIcon as we } from "./TrainAltIcon.js";
|
|
93
|
+
import { WikicasaDatiLogoIcon as Ce } from "./WikicasaDatiLogo.js";
|
|
94
|
+
import { WikicasaLogoIcon as be } from "./WikicasaLogo.js";
|
|
95
|
+
import { WikiNerdImg as De } from "./WikiNerd.js";
|
|
96
|
+
import { WikiNerdValutaMobileImg as Le } from "./WikiNerdValutaMobile.js";
|
|
97
|
+
import { WikiNerdMercatoImg as ve } from "./WikiNerdMercatoHome.js";
|
|
98
|
+
import { WikiNerdValutaDesktopImg as Be } from "./WikiNerdValutaDesktop.js";
|
|
99
|
+
import { WikiNerdDownloadAppImg as Me } from "./WikiNerdDownloadApp.js";
|
|
100
|
+
import { WikicasaStudioLogoIcon as Ge } from "./WikicasaStudioLogo.js";
|
|
101
|
+
import { GenericUserWikiAvatarImg as qe } from "./GenericUserWikiAvatar.js";
|
|
102
|
+
import { ShieldImg as ze } from "./ShieldImg.js";
|
|
103
|
+
import { SnapImg as Ye } from "./SnapImg.js";
|
|
104
|
+
import { StopWatchImg as Je } from "./StopWatchImg.js";
|
|
105
|
+
import { CheckImg as Oe } from "./CheckImg.js";
|
|
106
|
+
import { IareeImg as Ze } from "./IareeImg.js";
|
|
107
|
+
import { WikiNerdAnalyzeImg as $e } from "./WikiNerdAnalyzeImg.js";
|
|
108
|
+
import { WikiNerdValuationNotAvailableImg as rt } from "./WikiNerdValuationNotAvailableImg.js";
|
|
109
|
+
import { InsightImg as tt } from "./InsightImg.js";
|
|
110
|
+
import { GenericUserWikiAvatarSquaredImg as mt } from "./GenericUserWikiAvatarSquaredImg.js";
|
|
111
|
+
import { WikiNoSavedSearchesImg as pt } from "./WikiNoSavedSearches.js";
|
|
111
112
|
export {
|
|
112
113
|
e as AboutUsIcon,
|
|
113
114
|
qo as AnalyticsIcon,
|
|
114
115
|
n as ArrowIcon,
|
|
115
116
|
fr as ArrowIndicatorIcon,
|
|
116
117
|
Gr as AuctionHammerIcon,
|
|
117
|
-
|
|
118
|
+
te as BankIcon,
|
|
118
119
|
c as BarChartIcon,
|
|
119
120
|
Br as BathroomIcon,
|
|
120
121
|
I as BellIcon,
|
|
121
122
|
x as BulbIcon,
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
123
|
+
me as BusIcon,
|
|
124
|
+
pe as CartIcon,
|
|
125
|
+
fe as ChargeIcon,
|
|
125
126
|
i as CheckActiveIcon,
|
|
126
127
|
Lr as CheckIcon,
|
|
127
|
-
|
|
128
|
+
Oe as CheckImg,
|
|
128
129
|
l as CheckInactiveIcon,
|
|
129
130
|
ur as CheckRoundedIcon,
|
|
130
131
|
g as CloseIcon,
|
|
@@ -134,28 +135,28 @@ export {
|
|
|
134
135
|
Cr as DemandIcon,
|
|
135
136
|
hr as DownloadIcon,
|
|
136
137
|
P as DrawIcon,
|
|
137
|
-
|
|
138
|
+
A as EditIcon,
|
|
138
139
|
Mr as EnergyClassIcon,
|
|
139
|
-
|
|
140
|
+
vr as ExternalLinkIcon,
|
|
140
141
|
Oo as FacebookIcon,
|
|
141
142
|
Jr as FacebookRoundedIcon,
|
|
142
143
|
Yo as GearIcon,
|
|
143
|
-
|
|
144
|
-
|
|
144
|
+
qe as GenericUserWikiAvatarImg,
|
|
145
|
+
mt as GenericUserWikiAvatarSquaredImg,
|
|
145
146
|
N as GermanyFlagIcon,
|
|
146
147
|
mr as GoogleIcon,
|
|
147
148
|
tr as HamburgerMenuIcon,
|
|
148
149
|
y as HeartIcon,
|
|
149
150
|
Zr as HeartShadowedIcon,
|
|
150
151
|
H as HidePswIcon,
|
|
151
|
-
|
|
152
|
-
|
|
152
|
+
V as HomeIcon,
|
|
153
|
+
ae as HospitalIcon,
|
|
153
154
|
sr as HouseValuationIcon,
|
|
154
|
-
|
|
155
|
+
Ze as IareeImg,
|
|
155
156
|
Dr as InfoIcon,
|
|
156
|
-
|
|
157
|
+
tt as InsightImg,
|
|
157
158
|
$o as InstagramIcon,
|
|
158
|
-
|
|
159
|
+
R as ItalyFlagIcon,
|
|
159
160
|
F as LayersIcon,
|
|
160
161
|
Zo as LinkedinIcon,
|
|
161
162
|
T as LocationIcon,
|
|
@@ -164,58 +165,59 @@ export {
|
|
|
164
165
|
Q as MapIcon,
|
|
165
166
|
j as NewsIcon,
|
|
166
167
|
K as NotesIcon,
|
|
167
|
-
|
|
168
|
+
de as PharmacyIcon,
|
|
168
169
|
X as PhoneIcon,
|
|
169
170
|
qr as PhotoIcon,
|
|
170
171
|
_ as PinIcon,
|
|
171
172
|
dr as PinShadowedIcon,
|
|
172
173
|
oo as PlanIcon,
|
|
173
174
|
eo as PlusIcon,
|
|
174
|
-
|
|
175
|
+
se as PostIcon,
|
|
175
176
|
no as PrestigeIcon,
|
|
176
|
-
|
|
177
|
+
wr as PriceIcon,
|
|
177
178
|
ar as PrincipalIcon,
|
|
178
179
|
co as PrintIcon,
|
|
179
180
|
Io as ProfileIcon,
|
|
180
181
|
xo as QuotesIcon,
|
|
181
182
|
io as RequestIcon,
|
|
182
|
-
|
|
183
|
+
ue as SchoolIcon,
|
|
183
184
|
so as SearchIcon,
|
|
184
185
|
uo as ShareIcon,
|
|
185
|
-
|
|
186
|
-
|
|
186
|
+
ze as ShieldImg,
|
|
187
|
+
Ye as SnapImg,
|
|
187
188
|
$r as SortIcon,
|
|
188
189
|
Sr as SquareMeterIcon,
|
|
189
|
-
|
|
190
|
-
|
|
190
|
+
Je as StopWatchImg,
|
|
191
|
+
re as StreetViewIcon,
|
|
192
|
+
he as SubwayIcon,
|
|
191
193
|
ho as SuitcaseIcon,
|
|
192
194
|
zr as TelegramRoundedIcon,
|
|
193
195
|
So as TieIcon,
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
196
|
+
wo as TourIcon,
|
|
197
|
+
we as TrainAltIcon,
|
|
198
|
+
Se as TrainIcon,
|
|
197
199
|
br as TransactionIcon,
|
|
198
200
|
Co as UkFlagIcon,
|
|
199
201
|
bo as ValuationIcon,
|
|
200
202
|
Do as VideoIcon,
|
|
201
203
|
Lo as ViewPswIcon,
|
|
202
|
-
|
|
204
|
+
vo as WalletIcon,
|
|
203
205
|
Bo as WarningIcon,
|
|
204
206
|
Mo as WarningIconRounded,
|
|
205
207
|
Yr as WhatsappRoundedIcon,
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
208
|
+
$e as WikiNerdAnalyzeImg,
|
|
209
|
+
Me as WikiNerdDownloadAppImg,
|
|
210
|
+
De as WikiNerdImg,
|
|
211
|
+
ve as WikiNerdMercatoImg,
|
|
212
|
+
rt as WikiNerdValuationNotAvailableImg,
|
|
213
|
+
Be as WikiNerdValutaDesktopImg,
|
|
214
|
+
Le as WikiNerdValutaMobileImg,
|
|
215
|
+
pt as WikiNoSavedSearchesImg,
|
|
216
|
+
Ce as WikicasaDatiLogoIcon,
|
|
215
217
|
zo as WikicasaIcon,
|
|
216
|
-
|
|
218
|
+
be as WikicasaLogoIcon,
|
|
217
219
|
pr as WikicasaRoundedIcon,
|
|
218
|
-
|
|
220
|
+
Ge as WikicasaStudioLogoIcon,
|
|
219
221
|
Go as WkAppIcon,
|
|
220
222
|
Jo as WkFavIcon,
|
|
221
223
|
rr as YoutubeIcon
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -78,6 +78,7 @@ export { FacebookRoundedIcon } from './svgIcons/FacebookRoundedIcon';
|
|
|
78
78
|
export { CredipassIcon } from './svgIcons/CredipassIcon';
|
|
79
79
|
export { HeartShadowedIcon } from './svgIcons/HeartShadowedIcon';
|
|
80
80
|
export { SortIcon } from './svgIcons/SortIcon';
|
|
81
|
+
export { StreetViewIcon } from './svgIcons/StreetViewIcon';
|
|
81
82
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
82
83
|
export { BusIcon } from './svgIcons/poi/BusIcon';
|
|
83
84
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|