@wikicasa-dev/svg-icons 0.1.7 → 0.1.9
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/AirConditionerIcon.js +35 -0
- package/dist/AlarmIcon.js +35 -0
- package/dist/AttachedIcon.js +110 -0
- package/dist/AtticIcon.js +40 -0
- package/dist/CeilingIcon.js +51 -0
- package/dist/CellarIcon.js +32 -0
- package/dist/ClosetIcon.js +35 -0
- package/dist/DishwasherIcon.js +39 -0
- package/dist/ElectricGateIcon.js +54 -0
- package/dist/EntranceIcon.js +30 -0
- package/dist/FireplaceIcon.js +35 -0
- package/dist/FixturesIcon.js +40 -0
- package/dist/FridgeIcon.js +28 -0
- package/dist/FrontBuildingIcon.js +43 -0
- package/dist/FurnishedIcon.js +40 -0
- package/dist/HobIcon.js +36 -0
- package/dist/HotWaterIcon.js +64 -0
- package/dist/KitchenIcon.js +34 -0
- package/dist/LaundryIcon.js +43 -0
- package/dist/MezzanineIcon.js +33 -0
- package/dist/OpticFiberIcon.js +36 -0
- package/dist/PhotoAlbumIcon.js +168 -0
- package/dist/RoofIcon.js +32 -0
- package/dist/SatelliteSystemIcon.js +36 -0
- package/dist/SecurityDoorIcon.js +53 -0
- package/dist/TavernIcon.js +34 -0
- package/dist/TypeFloorIcon.js +43 -0
- package/dist/TypeRollerShutterIcon.js +35 -0
- package/dist/TypeTvIcon.js +35 -0
- package/dist/TypeViewIcon.js +34 -0
- package/dist/WashingMachineIcon.js +33 -0
- package/dist/WhirlpoolIcon.js +52 -0
- package/dist/index.js +210 -146
- package/dist/lib/index.d.ts +32 -0
- package/dist/lib/svgIcons/AirConditionerIcon.d.ts +7 -0
- package/dist/lib/svgIcons/AlarmIcon.d.ts +7 -0
- package/dist/lib/svgIcons/AttachedIcon.d.ts +7 -0
- package/dist/lib/svgIcons/AtticIcon.d.ts +7 -0
- package/dist/lib/svgIcons/CeilingIcon.d.ts +7 -0
- package/dist/lib/svgIcons/CellarIcon.d.ts +7 -0
- package/dist/lib/svgIcons/ClosetIcon.d.ts +7 -0
- package/dist/lib/svgIcons/DishwasherIcon.d.ts +7 -0
- package/dist/lib/svgIcons/ElectricGateIcon.d.ts +7 -0
- package/dist/lib/svgIcons/EntranceIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FireplaceIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FixturesIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FridgeIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FrontBuildingIcon.d.ts +7 -0
- package/dist/lib/svgIcons/FurnishedIcon.d.ts +7 -0
- package/dist/lib/svgIcons/HobIcon.d.ts +7 -0
- package/dist/lib/svgIcons/HotWaterIcon.d.ts +7 -0
- package/dist/lib/svgIcons/KitchenIcon.d.ts +7 -0
- package/dist/lib/svgIcons/LaundryIcon.d.ts +7 -0
- package/dist/lib/svgIcons/MezzanineIcon.d.ts +7 -0
- package/dist/lib/svgIcons/OpticFiberIcon.d.ts +7 -0
- package/dist/lib/svgIcons/PhotoAlbumIcon.d.ts +7 -0
- package/dist/lib/svgIcons/RoofIcon.d.ts +7 -0
- package/dist/lib/svgIcons/SatelliteSystemIcon.d.ts +7 -0
- package/dist/lib/svgIcons/SecurityDoorIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TavernIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeFloorIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeRollerShutterIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeTvIcon.d.ts +7 -0
- package/dist/lib/svgIcons/TypeViewIcon.d.ts +7 -0
- package/dist/lib/svgIcons/WashingMachineIcon.d.ts +7 -0
- package/dist/lib/svgIcons/WhirlpoolIcon.d.ts +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { h as r } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const n = (t) => o({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 20.947 17.095",
|
|
8
|
+
width: t.width ?? 20,
|
|
9
|
+
height: t.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: r(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: t["stroke-color"] ?? "#222",
|
|
16
|
+
"stroke-linecap": "round",
|
|
17
|
+
"stroke-linejoin": "round",
|
|
18
|
+
"stroke-width": t["stroke-width"] ?? 1,
|
|
19
|
+
transform: "translate(0 .001)"
|
|
20
|
+
},
|
|
21
|
+
[
|
|
22
|
+
r("rect", {
|
|
23
|
+
width: "19.853",
|
|
24
|
+
height: "12.832",
|
|
25
|
+
rx: "2",
|
|
26
|
+
transform: "translate(.547 .546)"
|
|
27
|
+
}),
|
|
28
|
+
r("path", { d: "M4.67 16.547h11.607" }),
|
|
29
|
+
r("path", { d: "M10.473 13.378v3.168" })
|
|
30
|
+
]
|
|
31
|
+
)
|
|
32
|
+
});
|
|
33
|
+
export {
|
|
34
|
+
n as TypeTvIcon
|
|
35
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const i = (e) => o({
|
|
4
|
+
props: e,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 18.604 17",
|
|
8
|
+
width: e.width ?? 18,
|
|
9
|
+
height: e.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
t(
|
|
14
|
+
"g",
|
|
15
|
+
{
|
|
16
|
+
fill: "none",
|
|
17
|
+
stroke: e["stroke-color"] ?? "#222",
|
|
18
|
+
"stroke-width": e["stroke-width"] ?? 1,
|
|
19
|
+
"stroke-linecap": "round",
|
|
20
|
+
"stroke-linejoin": "round"
|
|
21
|
+
},
|
|
22
|
+
[
|
|
23
|
+
t("path", { d: "M3.9.5h10.8a2 2 0 0 1 2 2v12H1.9v-12a2 2 0 0 1 2-2Z" }),
|
|
24
|
+
t("path", { d: "M5.137 2.616h8.331a1 1 0 0 1 1 1V14.5H4.137V3.616a1 1 0 0 1 1-1Z" }),
|
|
25
|
+
t("rect", { width: "17.604", height: "2", rx: ".902", transform: "translate(.5 14.5)" }),
|
|
26
|
+
t("path", { d: "m4.137 10.455 3.217-3.217 7.114 7.262" }),
|
|
27
|
+
t("path", { d: "m8.889 8.806 3.471-3.271 2.108 2.13" })
|
|
28
|
+
]
|
|
29
|
+
)
|
|
30
|
+
)
|
|
31
|
+
});
|
|
32
|
+
export {
|
|
33
|
+
i as TypeViewIcon
|
|
34
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const n = (r) => o({
|
|
4
|
+
props: r,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 14.507 17.001",
|
|
8
|
+
width: r.width ?? 14,
|
|
9
|
+
height: r.height ?? 17
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t(
|
|
12
|
+
"g",
|
|
13
|
+
{
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: r["stroke-color"] ?? "#222",
|
|
16
|
+
"stroke-width": r["stroke-width"] ?? 1,
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round",
|
|
19
|
+
transform: "translate(.5 .5)"
|
|
20
|
+
},
|
|
21
|
+
[
|
|
22
|
+
t("path", { d: "M0 3.67h13.507V13.9A2.1 2.1 0 0 1 11.4 16H2.1A2.1 2.1 0 0 1 0 13.9Z" }),
|
|
23
|
+
t("path", { d: "M2.1 0h9.3a2.1 2.1 0 0 1 2.105 2.1v1.571H0V2.1A2.1 2.1 0 0 1 2.1 0Z" }),
|
|
24
|
+
t("circle", { cx: "4.193", cy: "4.193", r: "4.193", transform: "translate(2.559 5.642)" }),
|
|
25
|
+
t("path", { d: "M4.401 0v3.671" }),
|
|
26
|
+
t("path", { d: "M9.992 1.835h1.298" }),
|
|
27
|
+
t("path", { d: "M9.582 6.748s-3.031 3.084 0 6.174" })
|
|
28
|
+
]
|
|
29
|
+
)
|
|
30
|
+
});
|
|
31
|
+
export {
|
|
32
|
+
n as WashingMachineIcon
|
|
33
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { h as t } from "vue";
|
|
2
|
+
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
+
const i = (o) => e({
|
|
4
|
+
props: o,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 19.834 16.5",
|
|
8
|
+
width: o.width ?? 19,
|
|
9
|
+
height: o.height ?? 16
|
|
10
|
+
},
|
|
11
|
+
childrenNodes: t("g", [
|
|
12
|
+
t("path", {
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
15
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
16
|
+
"stroke-linecap": "round",
|
|
17
|
+
"stroke-linejoin": "round",
|
|
18
|
+
d: "M17.896 7.262a1.434 1.434 0 0 1 1.418 1.65l-.627 3.433A4.3 4.3 0 0 1 14.433 16H5.402a4.3 4.3 0 0 1-4.254-3.655L.519 8.912a1.434 1.434 0 0 1 1.418-1.65"
|
|
19
|
+
}),
|
|
20
|
+
t("path", {
|
|
21
|
+
fill: "none",
|
|
22
|
+
stroke: o["stroke-color"] ?? "#222",
|
|
23
|
+
"stroke-width": o["stroke-width"] ?? 1,
|
|
24
|
+
"stroke-linecap": "round",
|
|
25
|
+
"stroke-linejoin": "round",
|
|
26
|
+
d: "M4.202 7.115a2.2 2.2 0 0 1 1.452-.5c.732.058.863.564 1.576.622.892.073 1.126-.685 1.99-.58.716.087.774.634 1.411.622.734-.014.906-.747 1.576-.7.571.035.683.585 1.285.7a1.934 1.934 0 0 0 1.618-.664"
|
|
27
|
+
}),
|
|
28
|
+
t("path", {
|
|
29
|
+
fill: o["stroke-color"] ?? "#222",
|
|
30
|
+
d: "M4.978 3.6a.945.945 0 1 1-.945-.945.945.945 0 0 1 .945.945"
|
|
31
|
+
}),
|
|
32
|
+
t("path", {
|
|
33
|
+
fill: o["stroke-color"] ?? "#222",
|
|
34
|
+
d: "M10.119 1.9A1.857 1.857 0 1 1 8.261.041 1.858 1.858 0 0 1 10.119 1.9"
|
|
35
|
+
}),
|
|
36
|
+
t("path", {
|
|
37
|
+
fill: o["stroke-color"] ?? "#222",
|
|
38
|
+
d: "M13.145 3.684a1.091 1.091 0 1 1-1.092-1.092 1.092 1.092 0 0 1 1.092 1.092"
|
|
39
|
+
}),
|
|
40
|
+
t("path", {
|
|
41
|
+
fill: o["stroke-color"] ?? "#222",
|
|
42
|
+
d: "M13.747.6a.6.6 0 1 1-.6-.6.6.6 0 0 1 .6.6"
|
|
43
|
+
}),
|
|
44
|
+
t("path", {
|
|
45
|
+
fill: o["stroke-color"] ?? "#222",
|
|
46
|
+
d: "M16.234 3.653a.706.706 0 1 1-.706-.706.706.706 0 0 1 .706.706"
|
|
47
|
+
})
|
|
48
|
+
])
|
|
49
|
+
});
|
|
50
|
+
export {
|
|
51
|
+
i as WhirlpoolIcon
|
|
52
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -4,24 +4,24 @@ import { BarChartIcon as c } from "./BarChartIcon.js";
|
|
|
4
4
|
import { BellIcon as I } 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 d } from "./CheckInactiveIcon.js";
|
|
8
8
|
import { CloseIcon as g } from "./CloseIcon.js";
|
|
9
|
-
import { DashboardIcon as
|
|
9
|
+
import { DashboardIcon as h } from "./DashboardIcon.js";
|
|
10
10
|
import { DeleteIcon as W } from "./DeleteIcon.js";
|
|
11
|
-
import { DrawIcon as
|
|
12
|
-
import { EditIcon as
|
|
13
|
-
import { GermanyFlagIcon as
|
|
14
|
-
import { HeartIcon as
|
|
15
|
-
import { HidePswIcon as
|
|
11
|
+
import { DrawIcon as P } from "./DrawIcon.js";
|
|
12
|
+
import { EditIcon as y } from "./EditIcon.js";
|
|
13
|
+
import { GermanyFlagIcon as w } from "./GermanyFlagIcon.js";
|
|
14
|
+
import { HeartIcon as F } from "./HeartIcon.js";
|
|
15
|
+
import { HidePswIcon as N } from "./HidePswIcon.js";
|
|
16
16
|
import { HomeIcon as D } from "./HomeIcon.js";
|
|
17
|
-
import { ItalyFlagIcon as
|
|
18
|
-
import { LayersIcon as
|
|
19
|
-
import { LocationIcon as
|
|
20
|
-
import { LogoutIcon as
|
|
21
|
-
import { MailIcon as
|
|
17
|
+
import { ItalyFlagIcon as L } from "./ItalyFlagIcon.js";
|
|
18
|
+
import { LayersIcon as B } from "./LayersIcon.js";
|
|
19
|
+
import { LocationIcon as V } from "./LocationIcon.js";
|
|
20
|
+
import { LogoutIcon as E } from "./LogoutIcon.js";
|
|
21
|
+
import { MailIcon as q } from "./MailIcon.js";
|
|
22
22
|
import { MapIcon as K } from "./MapIcon.js";
|
|
23
|
-
import { NewsIcon as
|
|
24
|
-
import { NotesIcon as
|
|
23
|
+
import { NewsIcon as Q } from "./NewsIcon.js";
|
|
24
|
+
import { NotesIcon as j } from "./NotesIcon.js";
|
|
25
25
|
import { PhoneIcon as X } from "./PhoneIcon.js";
|
|
26
26
|
import { PinIcon as _ } from "./PinIcon.js";
|
|
27
27
|
import { PlanIcon as oo } from "./PlanIcon.js";
|
|
@@ -32,23 +32,23 @@ import { ProfileIcon as Io } from "./ProfileIcon.js";
|
|
|
32
32
|
import { QuotesIcon as xo } from "./QuotesIcon.js";
|
|
33
33
|
import { RequestIcon as io } from "./RequestIcon.js";
|
|
34
34
|
import { SearchIcon as so } from "./SearchIcon.js";
|
|
35
|
-
import { ShareIcon as
|
|
36
|
-
import { SuitcaseIcon as
|
|
37
|
-
import { TieIcon as
|
|
35
|
+
import { ShareIcon as uo } from "./ShareIcon.js";
|
|
36
|
+
import { SuitcaseIcon as ko } from "./SuitcaseIcon.js";
|
|
37
|
+
import { TieIcon as So } from "./TieIcon.js";
|
|
38
38
|
import { TourIcon as Ao } from "./TourIcon.js";
|
|
39
39
|
import { UkFlagIcon as Co } from "./UkFlagIcon.js";
|
|
40
40
|
import { ValuationIcon as bo } from "./ValuationIcon.js";
|
|
41
|
-
import { VideoIcon as
|
|
42
|
-
import { ViewPswIcon as
|
|
41
|
+
import { VideoIcon as To } from "./VideoIcon.js";
|
|
42
|
+
import { ViewPswIcon as vo } from "./ViewPswIcon.js";
|
|
43
43
|
import { WalletIcon as Ho } from "./WalletIcon.js";
|
|
44
|
-
import { WarningIcon as
|
|
44
|
+
import { WarningIcon as Ro } from "./WarningIcon.js";
|
|
45
45
|
import { WarningIconRounded as Mo } from "./WarningIconRounded.js";
|
|
46
|
-
import { WkAppIcon as
|
|
47
|
-
import { AnalyticsIcon as
|
|
46
|
+
import { WkAppIcon as Go } from "./WkAppIcon.js";
|
|
47
|
+
import { AnalyticsIcon as Uo } from "./AnalyticsIcon.js";
|
|
48
48
|
import { WikicasaIcon as zo } from "./WikicasaIcon.js";
|
|
49
|
-
import { GearIcon as
|
|
50
|
-
import { WkFavIcon as
|
|
51
|
-
import { FacebookIcon as
|
|
49
|
+
import { GearIcon as Oo } from "./GearIcon.js";
|
|
50
|
+
import { WkFavIcon as Yo } from "./WkFavIcon.js";
|
|
51
|
+
import { FacebookIcon as Jo } from "./FacebookIcon.js";
|
|
52
52
|
import { LinkedinIcon as Zo } from "./LinkedinIcon.js";
|
|
53
53
|
import { InstagramIcon as $o } from "./InstagramIcon.js";
|
|
54
54
|
import { YoutubeIcon as rr } from "./YoutubeIcon.js";
|
|
@@ -57,25 +57,25 @@ import { GoogleIcon as mr } from "./GoogleIcon.js";
|
|
|
57
57
|
import { WikicasaRoundedIcon as pr } from "./WikicasaRoundedIcon.js";
|
|
58
58
|
import { ArrowIndicatorIcon as fr } from "./ArrowIndicatorIcon.js";
|
|
59
59
|
import { PrincipalIcon as ar } from "./PrincipalIcon.js";
|
|
60
|
-
import { PinShadowedIcon as
|
|
60
|
+
import { PinShadowedIcon as lr } from "./PinShadowedIcon.js";
|
|
61
61
|
import { HouseValuationIcon as sr } from "./HouseValuationIcon.js";
|
|
62
|
-
import { CheckRoundedIcon as
|
|
63
|
-
import { DownloadIcon as
|
|
64
|
-
import { SquareMeterIcon as
|
|
62
|
+
import { CheckRoundedIcon as ur } from "./CheckRoundedIcon.js";
|
|
63
|
+
import { DownloadIcon as kr } from "./DownloadIcon.js";
|
|
64
|
+
import { SquareMeterIcon as Sr } from "./SquareMeterIcon.js";
|
|
65
65
|
import { PriceIcon as Ar } from "./PriceIcon.js";
|
|
66
66
|
import { DemandIcon as Cr } from "./DemandIcon.js";
|
|
67
67
|
import { TransactionIcon as br } from "./TransactionIcon.js";
|
|
68
|
-
import { InfoIcon as
|
|
69
|
-
import { CheckIcon as
|
|
68
|
+
import { InfoIcon as Tr } from "./InfoIcon.js";
|
|
69
|
+
import { CheckIcon as vr } from "./CheckIcon.js";
|
|
70
70
|
import { ExternalLinkIcon as Hr } from "./ExternalLinkIcon.js";
|
|
71
|
-
import { BathroomIcon as
|
|
71
|
+
import { BathroomIcon as Rr } from "./BathroomIcon.js";
|
|
72
72
|
import { EnergyClassIcon as Mr } from "./EnergyClassIcon.js";
|
|
73
|
-
import { AuctionHammerIcon as
|
|
74
|
-
import { PhotoIcon as
|
|
73
|
+
import { AuctionHammerIcon as Gr } from "./AuctionHammerIcon.js";
|
|
74
|
+
import { PhotoIcon as Ur } from "./PhotoIcon.js";
|
|
75
75
|
import { TelegramRoundedIcon as zr } from "./TelegramRoundedIcon.js";
|
|
76
|
-
import { WhatsappRoundedIcon as
|
|
77
|
-
import { FacebookRoundedIcon as
|
|
78
|
-
import { CredipassIcon as
|
|
76
|
+
import { WhatsappRoundedIcon as Or } from "./WhatsappRoundedIcon.js";
|
|
77
|
+
import { FacebookRoundedIcon as Yr } from "./FacebookRoundedIcon.js";
|
|
78
|
+
import { CredipassIcon as Jr } from "./CredipassIcon.js";
|
|
79
79
|
import { HeartShadowedIcon as Zr } from "./HeartShadowedIcon.js";
|
|
80
80
|
import { SortIcon as $r } from "./SortIcon.js";
|
|
81
81
|
import { StreetViewIcon as re } from "./StreetViewIcon.js";
|
|
@@ -84,171 +84,235 @@ import { PartnershipIcon as me } from "./PartnershipIcon.js";
|
|
|
84
84
|
import { LockIcon as pe } from "./LockIcon.js";
|
|
85
85
|
import { KeyIcon as fe } from "./KeyIcon.js";
|
|
86
86
|
import { MegaphoneIcon as ae } from "./MegaphoneIcon.js";
|
|
87
|
-
import { ParkingSpotIcon as
|
|
87
|
+
import { ParkingSpotIcon as le } from "./ParkingSpotIcon.js";
|
|
88
88
|
import { BoxIcon as se } from "./BoxIcon.js";
|
|
89
|
-
import { ParkingIcon as
|
|
90
|
-
import { PoolIcon as
|
|
91
|
-
import { PrivateGardenIcon as
|
|
89
|
+
import { ParkingIcon as ue } from "./ParkingIcon.js";
|
|
90
|
+
import { PoolIcon as ke } from "./PoolIcon.js";
|
|
91
|
+
import { PrivateGardenIcon as Se } from "./PrivateGardenIcon.js";
|
|
92
92
|
import { CommunalGardenIcon as Ae } from "./CommunalGardenIcon.js";
|
|
93
93
|
import { TennisIcon as Ce } from "./TennisIcon.js";
|
|
94
94
|
import { ReceptionIcon as be } from "./ReceptionIcon.js";
|
|
95
|
-
import { ArchitecturalBarriersIcon as
|
|
96
|
-
import { UploadIcon as
|
|
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 {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
95
|
+
import { ArchitecturalBarriersIcon as Te } from "./ArchitecturalBarriersIcon.js";
|
|
96
|
+
import { UploadIcon as ve } from "./UploadIcon.js";
|
|
97
|
+
import { HobIcon as He } from "./HobIcon.js";
|
|
98
|
+
import { FridgeIcon as Re } from "./FridgeIcon.js";
|
|
99
|
+
import { WashingMachineIcon as Me } from "./WashingMachineIcon.js";
|
|
100
|
+
import { DishwasherIcon as Ge } from "./DishwasherIcon.js";
|
|
101
|
+
import { PhotoAlbumIcon as Ue } from "./PhotoAlbumIcon.js";
|
|
102
|
+
import { FurnishedIcon as ze } from "./FurnishedIcon.js";
|
|
103
|
+
import { CellarIcon as Oe } from "./CellarIcon.js";
|
|
104
|
+
import { KitchenIcon as Ye } from "./KitchenIcon.js";
|
|
105
|
+
import { AirConditionerIcon as Je } from "./AirConditionerIcon.js";
|
|
106
|
+
import { AtticIcon as Ze } from "./AtticIcon.js";
|
|
107
|
+
import { TavernIcon as $e } from "./TavernIcon.js";
|
|
108
|
+
import { RoofIcon as rt } from "./RoofIcon.js";
|
|
109
|
+
import { AlarmIcon as tt } from "./AlarmIcon.js";
|
|
110
|
+
import { ClosetIcon as mt } from "./ClosetIcon.js";
|
|
111
|
+
import { FixturesIcon as pt } from "./FixturesIcon.js";
|
|
112
|
+
import { TypeViewIcon as ft } from "./TypeViewIcon.js";
|
|
113
|
+
import { HotWaterIcon as at } from "./HotWaterIcon.js";
|
|
114
|
+
import { CeilingIcon as lt } from "./CeilingIcon.js";
|
|
115
|
+
import { EntranceIcon as st } from "./EntranceIcon.js";
|
|
116
|
+
import { OpticFiberIcon as ut } from "./OpticFiberIcon.js";
|
|
117
|
+
import { ElectricGateIcon as kt } from "./ElectricGateIcon.js";
|
|
118
|
+
import { WhirlpoolIcon as St } from "./WhirlpoolIcon.js";
|
|
119
|
+
import { FireplaceIcon as At } from "./FireplaceIcon.js";
|
|
120
|
+
import { SecurityDoorIcon as Ct } from "./SecurityDoorIcon.js";
|
|
121
|
+
import { TypeTvIcon as bt } from "./TypeTvIcon.js";
|
|
122
|
+
import { SatelliteSystemIcon as Tt } from "./SatelliteSystemIcon.js";
|
|
123
|
+
import { TypeRollerShutterIcon as vt } from "./TypeRollerShutterIcon.js";
|
|
124
|
+
import { TypeFloorIcon as Ht } from "./TypeFloorIcon.js";
|
|
125
|
+
import { FrontBuildingIcon as Rt } from "./FrontBuildingIcon.js";
|
|
126
|
+
import { LaundryIcon as Mt } from "./LaundryIcon.js";
|
|
127
|
+
import { MezzanineIcon as Gt } from "./MezzanineIcon.js";
|
|
128
|
+
import { AttachedIcon as Ut } from "./AttachedIcon.js";
|
|
129
|
+
import { BankIcon as zt } from "./BankIcon.js";
|
|
130
|
+
import { BusIcon as Ot } from "./BusIcon.js";
|
|
131
|
+
import { CartIcon as Yt } from "./CartIcon.js";
|
|
132
|
+
import { ChargeIcon as Jt } from "./Charge.js";
|
|
133
|
+
import { HospitalIcon as Zt } from "./HospitalIcon.js";
|
|
134
|
+
import { PharmacyIcon as $t } from "./PharmacyIcon.js";
|
|
135
|
+
import { PostIcon as rn } from "./PostIcon.js";
|
|
136
|
+
import { SchoolIcon as tn } from "./SchoolIcon.js";
|
|
137
|
+
import { SubwayIcon as mn } from "./SubwayIcon.js";
|
|
138
|
+
import { TrainIcon as pn } from "./TrainIcon.js";
|
|
139
|
+
import { TrainAltIcon as fn } from "./TrainAltIcon.js";
|
|
140
|
+
import { WikicasaDatiLogoIcon as an } from "./WikicasaDatiLogo.js";
|
|
141
|
+
import { WikicasaLogoIcon as dn } from "./WikicasaLogo.js";
|
|
142
|
+
import { WikiNerdImg as gn } from "./WikiNerd.js";
|
|
143
|
+
import { WikiNerdValutaMobileImg as hn } from "./WikiNerdValutaMobile.js";
|
|
144
|
+
import { WikiNerdMercatoImg as Wn } from "./WikiNerdMercatoHome.js";
|
|
145
|
+
import { WikiNerdValutaDesktopImg as Pn } from "./WikiNerdValutaDesktop.js";
|
|
146
|
+
import { WikiNerdDownloadAppImg as yn } from "./WikiNerdDownloadApp.js";
|
|
147
|
+
import { WikicasaStudioLogoIcon as wn } from "./WikicasaStudioLogo.js";
|
|
148
|
+
import { GenericUserWikiAvatarImg as Fn } from "./GenericUserWikiAvatar.js";
|
|
149
|
+
import { ShieldImg as Nn } from "./ShieldImg.js";
|
|
150
|
+
import { SnapImg as Dn } from "./SnapImg.js";
|
|
151
|
+
import { StopWatchImg as Ln } from "./StopWatchImg.js";
|
|
152
|
+
import { CheckImg as Bn } from "./CheckImg.js";
|
|
153
|
+
import { IareeImg as Vn } from "./IareeImg.js";
|
|
154
|
+
import { WikiNerdAnalyzeImg as En } from "./WikiNerdAnalyzeImg.js";
|
|
155
|
+
import { WikiNerdValuationNotAvailableImg as qn } from "./WikiNerdValuationNotAvailableImg.js";
|
|
156
|
+
import { InsightImg as Kn } from "./InsightImg.js";
|
|
157
|
+
import { GenericUserWikiAvatarSquaredImg as Qn } from "./GenericUserWikiAvatarSquaredImg.js";
|
|
158
|
+
import { WikiNoSavedSearchesImg as jn } from "./WikiNoSavedSearches.js";
|
|
127
159
|
export {
|
|
128
160
|
e as AboutUsIcon,
|
|
129
|
-
|
|
130
|
-
|
|
161
|
+
Je as AirConditionerIcon,
|
|
162
|
+
tt as AlarmIcon,
|
|
163
|
+
Uo as AnalyticsIcon,
|
|
164
|
+
Te as ArchitecturalBarriersIcon,
|
|
131
165
|
n as ArrowIcon,
|
|
132
166
|
fr as ArrowIndicatorIcon,
|
|
133
|
-
|
|
134
|
-
|
|
167
|
+
Ut as AttachedIcon,
|
|
168
|
+
Ze as AtticIcon,
|
|
169
|
+
Gr as AuctionHammerIcon,
|
|
170
|
+
zt as BankIcon,
|
|
135
171
|
c as BarChartIcon,
|
|
136
|
-
|
|
172
|
+
Rr as BathroomIcon,
|
|
137
173
|
I as BellIcon,
|
|
138
174
|
se as BoxIcon,
|
|
139
175
|
x as BulbIcon,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
176
|
+
Ot as BusIcon,
|
|
177
|
+
Yt as CartIcon,
|
|
178
|
+
lt as CeilingIcon,
|
|
179
|
+
Oe as CellarIcon,
|
|
180
|
+
Jt as ChargeIcon,
|
|
143
181
|
i as CheckActiveIcon,
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
182
|
+
vr as CheckIcon,
|
|
183
|
+
Bn as CheckImg,
|
|
184
|
+
d as CheckInactiveIcon,
|
|
185
|
+
ur as CheckRoundedIcon,
|
|
148
186
|
g as CloseIcon,
|
|
187
|
+
mt as ClosetIcon,
|
|
149
188
|
Ae as CommunalGardenIcon,
|
|
150
|
-
|
|
151
|
-
|
|
189
|
+
Jr as CredipassIcon,
|
|
190
|
+
h as DashboardIcon,
|
|
152
191
|
W as DeleteIcon,
|
|
153
192
|
Cr as DemandIcon,
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
193
|
+
Ge as DishwasherIcon,
|
|
194
|
+
kr as DownloadIcon,
|
|
195
|
+
P as DrawIcon,
|
|
196
|
+
y as EditIcon,
|
|
197
|
+
kt as ElectricGateIcon,
|
|
157
198
|
Mr as EnergyClassIcon,
|
|
199
|
+
st as EntranceIcon,
|
|
158
200
|
Hr as ExternalLinkIcon,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
201
|
+
Jo as FacebookIcon,
|
|
202
|
+
Yr as FacebookRoundedIcon,
|
|
203
|
+
At as FireplaceIcon,
|
|
204
|
+
pt as FixturesIcon,
|
|
205
|
+
Re as FridgeIcon,
|
|
206
|
+
Rt as FrontBuildingIcon,
|
|
207
|
+
ze as FurnishedIcon,
|
|
208
|
+
Oo as GearIcon,
|
|
209
|
+
Fn as GenericUserWikiAvatarImg,
|
|
210
|
+
Qn as GenericUserWikiAvatarSquaredImg,
|
|
211
|
+
w as GermanyFlagIcon,
|
|
165
212
|
mr as GoogleIcon,
|
|
166
213
|
tr as HamburgerMenuIcon,
|
|
167
|
-
|
|
214
|
+
F as HeartIcon,
|
|
168
215
|
Zr as HeartShadowedIcon,
|
|
169
|
-
|
|
216
|
+
N as HidePswIcon,
|
|
217
|
+
He as HobIcon,
|
|
170
218
|
D as HomeIcon,
|
|
171
|
-
|
|
219
|
+
Zt as HospitalIcon,
|
|
220
|
+
at as HotWaterIcon,
|
|
172
221
|
sr as HouseValuationIcon,
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
222
|
+
Vn as IareeImg,
|
|
223
|
+
Tr as InfoIcon,
|
|
224
|
+
Kn as InsightImg,
|
|
176
225
|
$o as InstagramIcon,
|
|
177
|
-
|
|
226
|
+
L as ItalyFlagIcon,
|
|
178
227
|
fe as KeyIcon,
|
|
179
|
-
|
|
228
|
+
Ye as KitchenIcon,
|
|
229
|
+
Mt as LaundryIcon,
|
|
230
|
+
B as LayersIcon,
|
|
180
231
|
Zo as LinkedinIcon,
|
|
181
|
-
|
|
232
|
+
V as LocationIcon,
|
|
182
233
|
pe as LockIcon,
|
|
183
|
-
|
|
184
|
-
|
|
234
|
+
E as LogoutIcon,
|
|
235
|
+
q as MailIcon,
|
|
185
236
|
K as MapIcon,
|
|
186
237
|
ae as MegaphoneIcon,
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
238
|
+
Gt as MezzanineIcon,
|
|
239
|
+
Q as NewsIcon,
|
|
240
|
+
j as NotesIcon,
|
|
241
|
+
ut as OpticFiberIcon,
|
|
242
|
+
ue as ParkingIcon,
|
|
243
|
+
le as ParkingSpotIcon,
|
|
191
244
|
me as PartnershipIcon,
|
|
192
|
-
|
|
245
|
+
$t as PharmacyIcon,
|
|
193
246
|
X as PhoneIcon,
|
|
194
|
-
|
|
247
|
+
Ue as PhotoAlbumIcon,
|
|
248
|
+
Ur as PhotoIcon,
|
|
195
249
|
_ as PinIcon,
|
|
196
|
-
|
|
250
|
+
lr as PinShadowedIcon,
|
|
197
251
|
oo as PlanIcon,
|
|
198
252
|
eo as PlusIcon,
|
|
199
|
-
|
|
200
|
-
|
|
253
|
+
ke as PoolIcon,
|
|
254
|
+
rn as PostIcon,
|
|
201
255
|
no as PrestigeIcon,
|
|
202
256
|
Ar as PriceIcon,
|
|
203
257
|
ar as PrincipalIcon,
|
|
204
258
|
co as PrintIcon,
|
|
205
|
-
|
|
259
|
+
Se as PrivateGardenIcon,
|
|
206
260
|
Io as ProfileIcon,
|
|
207
261
|
xo as QuotesIcon,
|
|
208
262
|
be as ReceptionIcon,
|
|
209
263
|
io as RequestIcon,
|
|
210
|
-
|
|
264
|
+
rt as RoofIcon,
|
|
265
|
+
Tt as SatelliteSystemIcon,
|
|
266
|
+
tn as SchoolIcon,
|
|
211
267
|
so as SearchIcon,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
268
|
+
Ct as SecurityDoorIcon,
|
|
269
|
+
uo as ShareIcon,
|
|
270
|
+
Nn as ShieldImg,
|
|
271
|
+
Dn as SnapImg,
|
|
215
272
|
$r as SortIcon,
|
|
216
|
-
|
|
273
|
+
Sr as SquareMeterIcon,
|
|
217
274
|
te as StarIcon,
|
|
218
|
-
|
|
275
|
+
Ln as StopWatchImg,
|
|
219
276
|
re as StreetViewIcon,
|
|
220
|
-
|
|
221
|
-
|
|
277
|
+
mn as SubwayIcon,
|
|
278
|
+
ko as SuitcaseIcon,
|
|
279
|
+
$e as TavernIcon,
|
|
222
280
|
zr as TelegramRoundedIcon,
|
|
223
281
|
Ce as TennisIcon,
|
|
224
|
-
|
|
282
|
+
So as TieIcon,
|
|
225
283
|
Ao as TourIcon,
|
|
226
|
-
|
|
227
|
-
|
|
284
|
+
fn as TrainAltIcon,
|
|
285
|
+
pn as TrainIcon,
|
|
228
286
|
br as TransactionIcon,
|
|
287
|
+
Ht as TypeFloorIcon,
|
|
288
|
+
vt as TypeRollerShutterIcon,
|
|
289
|
+
bt as TypeTvIcon,
|
|
290
|
+
ft as TypeViewIcon,
|
|
229
291
|
Co as UkFlagIcon,
|
|
230
|
-
|
|
292
|
+
ve as UploadIcon,
|
|
231
293
|
bo as ValuationIcon,
|
|
232
|
-
|
|
233
|
-
|
|
294
|
+
To as VideoIcon,
|
|
295
|
+
vo as ViewPswIcon,
|
|
234
296
|
Ho as WalletIcon,
|
|
235
|
-
|
|
297
|
+
Ro as WarningIcon,
|
|
236
298
|
Mo as WarningIconRounded,
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
299
|
+
Me as WashingMachineIcon,
|
|
300
|
+
Or as WhatsappRoundedIcon,
|
|
301
|
+
St as WhirlpoolIcon,
|
|
302
|
+
En as WikiNerdAnalyzeImg,
|
|
303
|
+
yn as WikiNerdDownloadAppImg,
|
|
304
|
+
gn as WikiNerdImg,
|
|
305
|
+
Wn as WikiNerdMercatoImg,
|
|
306
|
+
qn as WikiNerdValuationNotAvailableImg,
|
|
307
|
+
Pn as WikiNerdValutaDesktopImg,
|
|
308
|
+
hn as WikiNerdValutaMobileImg,
|
|
309
|
+
jn as WikiNoSavedSearchesImg,
|
|
310
|
+
an as WikicasaDatiLogoIcon,
|
|
247
311
|
zo as WikicasaIcon,
|
|
248
|
-
|
|
312
|
+
dn as WikicasaLogoIcon,
|
|
249
313
|
pr as WikicasaRoundedIcon,
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
314
|
+
wn as WikicasaStudioLogoIcon,
|
|
315
|
+
Go as WkAppIcon,
|
|
316
|
+
Yo as WkFavIcon,
|
|
253
317
|
rr as YoutubeIcon
|
|
254
318
|
};
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -94,6 +94,38 @@ export { TennisIcon } from './svgIcons/TennisIcon';
|
|
|
94
94
|
export { ReceptionIcon } from './svgIcons/ReceptionIcon';
|
|
95
95
|
export { ArchitecturalBarriersIcon } from './svgIcons/ArchitecturalBarriersIcon';
|
|
96
96
|
export { UploadIcon } from './svgIcons/UploadIcon';
|
|
97
|
+
export { HobIcon } from './svgIcons/HobIcon';
|
|
98
|
+
export { FridgeIcon } from './svgIcons/FridgeIcon';
|
|
99
|
+
export { WashingMachineIcon } from './svgIcons/WashingMachineIcon';
|
|
100
|
+
export { DishwasherIcon } from './svgIcons/DishwasherIcon';
|
|
101
|
+
export { PhotoAlbumIcon } from './svgIcons/PhotoAlbumIcon';
|
|
102
|
+
export { FurnishedIcon } from './svgIcons/FurnishedIcon';
|
|
103
|
+
export { CellarIcon } from './svgIcons/CellarIcon';
|
|
104
|
+
export { KitchenIcon } from './svgIcons/KitchenIcon';
|
|
105
|
+
export { AirConditionerIcon } from './svgIcons/AirConditionerIcon';
|
|
106
|
+
export { AtticIcon } from './svgIcons/AtticIcon';
|
|
107
|
+
export { TavernIcon } from './svgIcons/TavernIcon';
|
|
108
|
+
export { RoofIcon } from './svgIcons/RoofIcon';
|
|
109
|
+
export { AlarmIcon } from './svgIcons/AlarmIcon';
|
|
110
|
+
export { ClosetIcon } from './svgIcons/ClosetIcon';
|
|
111
|
+
export { FixturesIcon } from './svgIcons/FixturesIcon';
|
|
112
|
+
export { TypeViewIcon } from './svgIcons/TypeViewIcon';
|
|
113
|
+
export { HotWaterIcon } from './svgIcons/HotWaterIcon';
|
|
114
|
+
export { CeilingIcon } from './svgIcons/CeilingIcon';
|
|
115
|
+
export { EntranceIcon } from './svgIcons/EntranceIcon';
|
|
116
|
+
export { OpticFiberIcon } from './svgIcons/OpticFiberIcon';
|
|
117
|
+
export { ElectricGateIcon } from './svgIcons/ElectricGateIcon';
|
|
118
|
+
export { WhirlpoolIcon } from './svgIcons/WhirlpoolIcon';
|
|
119
|
+
export { FireplaceIcon } from './svgIcons/FireplaceIcon';
|
|
120
|
+
export { SecurityDoorIcon } from './svgIcons/SecurityDoorIcon';
|
|
121
|
+
export { TypeTvIcon } from './svgIcons/TypeTvIcon';
|
|
122
|
+
export { SatelliteSystemIcon } from './svgIcons/SatelliteSystemIcon';
|
|
123
|
+
export { TypeRollerShutterIcon } from './svgIcons/TypeRollerShutterIcon';
|
|
124
|
+
export { TypeFloorIcon } from './svgIcons/TypeFloorIcon';
|
|
125
|
+
export { FrontBuildingIcon } from './svgIcons/FrontBuildingIcon';
|
|
126
|
+
export { LaundryIcon } from './svgIcons/LaundryIcon';
|
|
127
|
+
export { MezzanineIcon } from './svgIcons/MezzanineIcon';
|
|
128
|
+
export { AttachedIcon } from './svgIcons/AttachedIcon';
|
|
97
129
|
export { BankIcon } from './svgIcons/poi/BankIcon';
|
|
98
130
|
export { BusIcon } from './svgIcons/poi/BusIcon';
|
|
99
131
|
export { CartIcon } from './svgIcons/poi/CartIcon';
|