@wikicasa-dev/svg-icons 0.0.30 → 0.0.32

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.
@@ -0,0 +1,28 @@
1
+ import { h as o } from "vue";
2
+ import { s as t } from "./svgIconFactory-B4HDiwZr.js";
3
+ const s = (e, { attrs: r }) => t({
4
+ props: e,
5
+ svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 26 26" },
6
+ childrenNodes: o(
7
+ "g",
8
+ {
9
+ fill: "none",
10
+ stroke: r["stroke-color"] ?? "#222",
11
+ "stroke-width": r["stroke-width"] ?? "2"
12
+ },
13
+ [
14
+ o("path", {
15
+ "stroke-linecap": "round",
16
+ "stroke-linejoin": "round",
17
+ d: "m7.551 14.336 3.488 2.959 6.646-6.978"
18
+ }),
19
+ o("g", [
20
+ o("circle", { cx: "13", cy: "13", r: "13", stroke: "none" }),
21
+ o("circle", { cx: "13", cy: "13", r: "12" })
22
+ ])
23
+ ]
24
+ )
25
+ });
26
+ export {
27
+ s as CheckRoundedIcon
28
+ };
@@ -0,0 +1,59 @@
1
+ import { h as r } from "vue";
2
+ import { s as o } from "./svgIconFactory-B4HDiwZr.js";
3
+ const n = (t, { attrs: a }) => o({
4
+ props: t,
5
+ svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 14.069" },
6
+ childrenNodes: r(
7
+ "g",
8
+ r(
9
+ "g",
10
+ {
11
+ fill: a["fill-color"] ?? "#fff",
12
+ stroke: a["stroke-color"] ?? "#222",
13
+ "stroke-linecap": "round",
14
+ "stroke-linejoin": "round"
15
+ },
16
+ [
17
+ r("g", { transform: "translate(.5 .5)" }, [
18
+ r("path", {
19
+ d: "M7.039 9.441H.404a.407.407 0 0 1-.4-.409V7.177a2.693 2.693 0 0 1 2.675-2.711h2.093a2.694 2.694 0 0 1 2.675 2.711v1.855a.407.407 0 0 1-.4.409Z"
20
+ }),
21
+ r("ellipse", {
22
+ cx: "2.322",
23
+ cy: "2.373",
24
+ rx: "2.322",
25
+ ry: "2.373",
26
+ transform: "translate(1.399)"
27
+ })
28
+ ]),
29
+ r("g", { transform: "translate(3.617 .5)" }, [
30
+ r("path", {
31
+ d: "M8.17 10.955H.47a.471.471 0 0 1-.468-.475V8.33a3.127 3.127 0 0 1 3.1-3.147h2.434a3.126 3.126 0 0 1 3.1 3.147v2.153a.471.471 0 0 1-.472.472Z"
32
+ }),
33
+ r("ellipse", {
34
+ cx: "2.696",
35
+ cy: "2.754",
36
+ rx: "2.696",
37
+ ry: "2.754",
38
+ transform: "translate(1.624)"
39
+ })
40
+ ]),
41
+ r("g", { transform: "translate(6.184 .5)" }, [
42
+ r("path", {
43
+ d: "M9.757 13.07h-9.2a.563.563 0 0 1-.56-.567v-2.57a3.733 3.733 0 0 1 3.708-3.76h2.9a3.734 3.734 0 0 1 3.707 3.759v2.571a.563.563 0 0 1-.555.567Z"
44
+ }),
45
+ r("ellipse", {
46
+ cx: "3.219",
47
+ cy: "3.289",
48
+ rx: "3.219",
49
+ ry: "3.289",
50
+ transform: "translate(1.94)"
51
+ })
52
+ ])
53
+ ]
54
+ )
55
+ )
56
+ });
57
+ export {
58
+ n as DemandIcon
59
+ };
@@ -0,0 +1,47 @@
1
+ import { h as o } from "vue";
2
+ import { s as e } from "./svgIconFactory-B4HDiwZr.js";
3
+ o(
4
+ "svg",
5
+ { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 13.504 13.504" },
6
+ o(
7
+ "g",
8
+ o(
9
+ "g",
10
+ {
11
+ fill: "none",
12
+ stroke: "#2b5dff",
13
+ "stroke-linecap": "round",
14
+ "stroke-linejoin": "round",
15
+ "stroke-width": "1.5"
16
+ },
17
+ [
18
+ o("path", { d: "m4.301 6.809 2.45 2.451 2.451-2.451L6.751 9.26V.745" }),
19
+ o("path", { d: "M.75 12.754h12.004" })
20
+ ]
21
+ )
22
+ )
23
+ );
24
+ const d = (r, { attrs: t }) => e({
25
+ props: r,
26
+ svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 13.504 13.504" },
27
+ childrenNodes: o(
28
+ "g",
29
+ o(
30
+ "g",
31
+ {
32
+ fill: "none",
33
+ stroke: t["stroke-color"] ?? "#2b5dff",
34
+ "stroke-linecap": "round",
35
+ "stroke-linejoin": "round",
36
+ "stroke-width": t["stroke-width"] ?? "1.5"
37
+ },
38
+ [
39
+ o("path", { d: "m4.301 6.809 2.45 2.451 2.451-2.451L6.751 9.26V.745" }),
40
+ o("path", { d: "M.75 12.754h12.004" })
41
+ ]
42
+ )
43
+ )
44
+ });
45
+ export {
46
+ d as DownloadIcon
47
+ };
@@ -0,0 +1,20 @@
1
+ import { h as r } from "vue";
2
+ import { s as e } from "./svgIconFactory-B4HDiwZr.js";
3
+ const i = (t, { attrs: o }) => e({
4
+ props: t,
5
+ svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14.3 14.384" },
6
+ childrenNodes: r(
7
+ "g",
8
+ r("path", {
9
+ fill: "none",
10
+ stroke: o["stroke-color"] ?? "#222",
11
+ "stroke-linecap": "round",
12
+ "stroke-linejoin": "round",
13
+ "stroke-width": o["stroke-width"] ?? "1.3",
14
+ d: "m8.189 1.124 4.875 4.21a1.72 1.72 0 0 1 .586 1.3v5.411a1.66 1.66 0 0 1-1.625 1.689h-9.75A1.66 1.66 0 0 1 .65 12.046V6.634a1.72 1.72 0 0 1 .586-1.3l4.875-4.21a1.58 1.58 0 0 1 2.078 0"
15
+ })
16
+ )
17
+ });
18
+ export {
19
+ i as HomeIcon
20
+ };
@@ -1,20 +1,21 @@
1
1
  import { h as o } from "vue";
2
- import { s as c } from "./svgIconFactory-B4HDiwZr.js";
3
- const e = (t) => c({
4
- props: t,
5
- svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17.746 17.001" },
6
- childrenNodes: o("g", { fill: "none", stroke: "#222", "stroke-linecap": "round" }, [
2
+ import { s as t } from "./svgIconFactory-B4HDiwZr.js";
3
+ o("svg", { xmlns: "http://www.w3.org/2000/svg" });
4
+ const s = (r) => t({
5
+ props: r,
6
+ svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 26 26" },
7
+ childrenNodes: o("g", { fill: "none", stroke: "#fff", "stroke-width": "2" }, [
7
8
  o("path", {
8
- d: "M13.613 16.491v-.2c-.005-1.94 0-3.879-.01-5.817a3.106 3.106 0 0 0-.29-1.388 1.584 1.584 0 0 0-1.574-.905 1.843 1.843 0 0 0-1.331.564 1.9 1.9 0 0 0-.6 1.319c-.014.756-.014 1.518-.014 2.274v4.018c0 .088-.01.14-.122.14-1.14 0-3.476 0-3.5-.01V5.573c.046 0 2.354 0 3.466-.007.135 0 .163.042.159.163v1.2c.009.134.112.027.153-.033a3.511 3.511 0 0 1 2.607-1.55 4.474 4.474 0 0 1 2.471.407 3.527 3.527 0 0 1 1.561 1.509 6.084 6.084 0 0 1 .658 2.99c.01 1.409.005 2.821.005 4.236v2Z"
9
+ "stroke-linecap": "round",
10
+ "stroke-linejoin": "round",
11
+ d: "m7.551 14.336 3.488 2.959 6.646-6.978"
9
12
  }),
10
- o("path", {
11
- d: "M4.356 16.492H.731V5.739c0-.135.038-.167.173-.167h3.3c.135-.006.16.042.16.163q-.01 5.3-.006 10.608Z"
12
- }),
13
- o("path", {
14
- d: "M2.536 4.285a1.929 1.929 0 0 1-1.73-.87A1.855 1.855 0 0 1 1.835.623a2.227 2.227 0 0 1 2 .267 1.782 1.782 0 0 1 .743 1.765 1.714 1.714 0 0 1-1.192 1.481 3.693 3.693 0 0 1-.85.149Z"
15
- })
13
+ o("g", [
14
+ o("circle", { cx: "13", cy: "13", r: "13", stroke: "none" }),
15
+ o("circle", { cx: "13", cy: "13", r: "12" })
16
+ ])
16
17
  ])
17
18
  });
18
19
  export {
19
- e as LinkedinIcon
20
+ s as LinkedinIcon
20
21
  };
@@ -0,0 +1,25 @@
1
+ import { h as o } from "vue";
2
+ import { s as e } from "./svgIconFactory-B4HDiwZr.js";
3
+ const i = (r, { attrs: t }) => e({
4
+ props: r,
5
+ svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 18.701 17.024" },
6
+ childrenNodes: o(
7
+ "g",
8
+ {
9
+ fill: "none",
10
+ stroke: t["stroke-color"] ?? "#222",
11
+ "stroke-linecap": "round",
12
+ "stroke-linejoin": "round"
13
+ },
14
+ [
15
+ o("path", {
16
+ d: "M18.017 12.9a7.441 7.441 0 0 1-3.157 2.922 7.738 7.738 0 0 1-10.9-7.468v.3a7.738 7.738 0 0 1 10.9-7.473A7.446 7.446 0 0 1 18.017 4.1"
17
+ }),
18
+ o("path", { d: "M.5 6.284h10.684" }),
19
+ o("path", { d: "M.5 11.305h10.684" })
20
+ ]
21
+ )
22
+ });
23
+ export {
24
+ i as PriceIcon
25
+ };
@@ -0,0 +1,26 @@
1
+ import { h as r } from "vue";
2
+ import { s as e } from "./svgIconFactory-B4HDiwZr.js";
3
+ const a = (o, { attrs: t }) => e({
4
+ props: o,
5
+ svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17.3 17.3" },
6
+ childrenNodes: r(
7
+ "g",
8
+ {
9
+ fill: "none",
10
+ stroke: t["stroke-color"] ?? "#222",
11
+ "stroke-linecap": "round",
12
+ "stroke-linejoin": "round",
13
+ "stroke-width": t["stroke-width"] ?? "1.3",
14
+ transform: "translate(.15 .15)"
15
+ },
16
+ [
17
+ r("rect", { width: "16", height: "16", rx: "1.699", transform: "translate(.5 .5)" }),
18
+ r("path", { d: "m4.563 4.611 7.831 7.831" }),
19
+ r("path", { d: "M4.558 7.966V4.615h3.251" }),
20
+ r("path", { d: "M12.441 9.133v3.351H9.19" })
21
+ ]
22
+ )
23
+ });
24
+ export {
25
+ a as SquareMeterIcon
26
+ };
@@ -0,0 +1,22 @@
1
+ import { h as o } from "vue";
2
+ import { s as n } from "./svgIconFactory-B4HDiwZr.js";
3
+ const i = (r, { attrs: t }) => n({
4
+ props: r,
5
+ svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16.219 17.436" },
6
+ childrenNodes: o(
7
+ "g",
8
+ o("g", { fill: "none", stroke: t["stroke-color"] ?? "#222", "stroke-linecap": "round" }, [
9
+ o("g", [
10
+ o("path", { d: "M.5 4.244h14.367" }),
11
+ o("path", { "stroke-linejoin": "round", d: "m11.898.707 3.821 3.821-3.821 3.821" })
12
+ ]),
13
+ o("g", [
14
+ o("path", { d: "M15.718 12.625H1.351" }),
15
+ o("path", { "stroke-linejoin": "round", d: "M4.321 9.088.5 12.909l3.821 3.821" })
16
+ ])
17
+ ])
18
+ )
19
+ });
20
+ export {
21
+ i as TransactionIcon
22
+ };
package/dist/index.js CHANGED
@@ -5,18 +5,18 @@ 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
7
  import { CheckInactiveIcon as s } from "./CheckInactiveIcon.js";
8
- import { CloseIcon as u } from "./CloseIcon.js";
9
- import { DashboardIcon as d } from "./DashboardIcon.js";
8
+ import { CloseIcon as g } from "./CloseIcon.js";
9
+ import { DashboardIcon as k } from "./DashboardIcon.js";
10
10
  import { DeleteIcon as h } from "./DeleteIcon.js";
11
11
  import { DrawIcon as w } from "./DrawIcon.js";
12
- import { EditIcon as S } from "./EditIcon.js";
13
- import { GermanyFlagIcon as N } from "./GermanyFlagIcon.js";
14
- import { HeartIcon as C } from "./HeartIcon.js";
15
- import { HidePswIcon as D } from "./HidePswIcon.js";
16
- import { HouseIcon as V } from "./HouseIcon.js";
17
- import { ItalyFlagIcon as F } from "./ItalyFlagIcon.js";
18
- import { LayersIcon as v } from "./LayersIcon.js";
19
- import { LocationIcon as T } from "./LocationIcon.js";
12
+ import { EditIcon as A } from "./EditIcon.js";
13
+ import { GermanyFlagIcon as C } from "./GermanyFlagIcon.js";
14
+ import { HeartIcon as N } from "./HeartIcon.js";
15
+ import { HidePswIcon as L } from "./HidePswIcon.js";
16
+ import { HomeIcon as M } from "./HomeIcon.js";
17
+ import { ItalyFlagIcon as B } from "./ItalyFlagIcon.js";
18
+ import { LayersIcon as T } from "./LayersIcon.js";
19
+ import { LocationIcon as G } from "./LocationIcon.js";
20
20
  import { LogoutIcon as U } from "./LogoutIcon.js";
21
21
  import { MailIcon as z } from "./MailIcon.js";
22
22
  import { MapIcon as Q } from "./MapIcon.js";
@@ -35,14 +35,14 @@ import { SearchIcon as so } from "./SearchIcon.js";
35
35
  import { ShareIcon as uo } from "./ShareIcon.js";
36
36
  import { SuitcaseIcon as Wo } from "./SuitcaseIcon.js";
37
37
  import { TieIcon as Po } from "./TieIcon.js";
38
- import { TourIcon as Ao } from "./TourIcon.js";
38
+ import { TourIcon as So } from "./TourIcon.js";
39
39
  import { UkFlagIcon as bo } from "./UkFlagIcon.js";
40
- import { ValuationIcon as yo } from "./ValuationIcon.js";
41
- import { VideoIcon as Lo } from "./VideoIcon.js";
40
+ import { ValuationIcon as Do } from "./ValuationIcon.js";
41
+ import { VideoIcon as yo } from "./VideoIcon.js";
42
42
  import { ViewPswIcon as Ho } from "./ViewPswIcon.js";
43
- import { WalletIcon as Bo } from "./WalletIcon.js";
44
- import { WarningIcon as Mo } from "./WarningIcon.js";
45
- import { WarningIconRounded as Go } from "./WarningIconRounded.js";
43
+ import { WalletIcon as Vo } from "./WalletIcon.js";
44
+ import { WarningIcon as Fo } from "./WarningIcon.js";
45
+ import { WarningIconRounded as vo } from "./WarningIconRounded.js";
46
46
  import { WkAppIcon as Ro } from "./WkAppIcon.js";
47
47
  import { AnalyticsIcon as qo } from "./AnalyticsIcon.js";
48
48
  import { WikicasaIcon as Eo } from "./WikicasaIcon.js";
@@ -58,116 +58,128 @@ 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
60
  import { PinShadowedIcon as lr } from "./PinShadowedIcon.js";
61
- import { HouseValuationIcon as gr } from "./HouseValuationIcon.js";
62
- import { BankIcon as kr } from "./BankIcon.js";
63
- import { BusIcon as Wr } from "./BusIcon.js";
64
- import { CartIcon as Pr } from "./CartIcon.js";
65
- import { ChargeIcon as Ar } from "./Charge.js";
66
- import { HospitalIcon as br } from "./HospitalIcon.js";
67
- import { PharmacyIcon as yr } from "./PharmacyIcon.js";
68
- import { PostIcon as Lr } from "./PostIcon.js";
69
- import { SchoolIcon as Hr } from "./SchoolIcon.js";
70
- import { SubwayIcon as Br } from "./SubwayIcon.js";
71
- import { TrainIcon as Mr } from "./TrainIcon.js";
72
- import { TrainAltIcon as Gr } from "./TrainAltIcon.js";
73
- import { WikicasaDatiLogoIcon as Rr } from "./WikicasaDatiLogo.js";
74
- import { WikicasaLogoIcon as qr } from "./WikicasaLogo.js";
75
- import { WikiNerdImg as Er } from "./WikiNerd.js";
76
- import { WikiNerdValutaMobileImg as Yr } from "./WikiNerdValutaMobile.js";
77
- import { WikiNerdMercatoImg as Jr } from "./WikiNerdMercatoHome.js";
78
- import { WikiNerdValutaDesktopImg as Or } from "./WikiNerdValutaDesktop.js";
79
- import { WikiNerdDownloadAppImg as Zr } from "./WikiNerdDownloadApp.js";
80
- import { WikicasaStudioLogoIcon as $r } from "./WikicasaStudioLogo.js";
81
- import { GenericUserWikiAvatarImg as re } from "./GenericUserWikiAvatar.js";
82
- import { ShieldImg as te } from "./ShieldImg.js";
83
- import { SnapImg as me } from "./SnapImg.js";
84
- import { StopWatchImg as pe } from "./StopWatchImg.js";
85
- import { CheckImg as fe } from "./CheckImg.js";
86
- import { WikiNerdAnalyzeImg as ae } from "./WikiNerdAnalyzeImg.js";
61
+ import { HouseValuationIcon as dr } from "./HouseValuationIcon.js";
62
+ import { CheckRoundedIcon as ur } from "./CheckRoundedIcon.js";
63
+ import { DownloadIcon as Wr } from "./DownloadIcon.js";
64
+ import { SquareMeterIcon as Pr } from "./SquareMeterIcon.js";
65
+ import { PriceIcon as Sr } from "./PriceIcon.js";
66
+ import { DemandIcon as br } from "./DemandIcon.js";
67
+ import { TransactionIcon as Dr } from "./TransactionIcon.js";
68
+ import { BankIcon as yr } from "./BankIcon.js";
69
+ import { BusIcon as Hr } from "./BusIcon.js";
70
+ import { CartIcon as Vr } from "./CartIcon.js";
71
+ import { ChargeIcon as Fr } from "./Charge.js";
72
+ import { HospitalIcon as vr } from "./HospitalIcon.js";
73
+ import { PharmacyIcon as Rr } from "./PharmacyIcon.js";
74
+ import { PostIcon as qr } from "./PostIcon.js";
75
+ import { SchoolIcon as Er } from "./SchoolIcon.js";
76
+ import { SubwayIcon as Yr } from "./SubwayIcon.js";
77
+ import { TrainIcon as Jr } from "./TrainIcon.js";
78
+ import { TrainAltIcon as Or } from "./TrainAltIcon.js";
79
+ import { WikicasaDatiLogoIcon as Zr } from "./WikicasaDatiLogo.js";
80
+ import { WikicasaLogoIcon as $r } from "./WikicasaLogo.js";
81
+ import { WikiNerdImg as re } from "./WikiNerd.js";
82
+ import { WikiNerdValutaMobileImg as te } from "./WikiNerdValutaMobile.js";
83
+ import { WikiNerdMercatoImg as me } from "./WikiNerdMercatoHome.js";
84
+ import { WikiNerdValutaDesktopImg as pe } from "./WikiNerdValutaDesktop.js";
85
+ import { WikiNerdDownloadAppImg as fe } from "./WikiNerdDownloadApp.js";
86
+ import { WikicasaStudioLogoIcon as ae } from "./WikicasaStudioLogo.js";
87
+ import { GenericUserWikiAvatarImg as le } from "./GenericUserWikiAvatar.js";
88
+ import { ShieldImg as de } from "./ShieldImg.js";
89
+ import { SnapImg as ue } from "./SnapImg.js";
90
+ import { StopWatchImg as We } from "./StopWatchImg.js";
91
+ import { CheckImg as Pe } from "./CheckImg.js";
92
+ import { WikiNerdAnalyzeImg as Se } from "./WikiNerdAnalyzeImg.js";
87
93
  export {
88
94
  e as AboutUsIcon,
89
95
  qo as AnalyticsIcon,
90
96
  n as ArrowIcon,
91
97
  fr as ArrowIndicatorIcon,
92
- kr as BankIcon,
98
+ yr as BankIcon,
93
99
  c as BarChartIcon,
94
100
  I as BellIcon,
95
101
  x as BulbIcon,
96
- Wr as BusIcon,
97
- Pr as CartIcon,
98
- Ar as ChargeIcon,
102
+ Hr as BusIcon,
103
+ Vr as CartIcon,
104
+ Fr as ChargeIcon,
99
105
  i as CheckActiveIcon,
100
- fe as CheckImg,
106
+ Pe as CheckImg,
101
107
  s as CheckInactiveIcon,
102
- u as CloseIcon,
103
- d as DashboardIcon,
108
+ ur as CheckRoundedIcon,
109
+ g as CloseIcon,
110
+ k as DashboardIcon,
104
111
  h as DeleteIcon,
112
+ br as DemandIcon,
113
+ Wr as DownloadIcon,
105
114
  w as DrawIcon,
106
- S as EditIcon,
115
+ A as EditIcon,
107
116
  Oo as FacebookIcon,
108
117
  Yo as GearIcon,
109
- re as GenericUserWikiAvatarImg,
110
- N as GermanyFlagIcon,
118
+ le as GenericUserWikiAvatarImg,
119
+ C as GermanyFlagIcon,
111
120
  mr as GoogleIcon,
112
121
  tr as HamburgerMenuIcon,
113
- C as HeartIcon,
114
- D as HidePswIcon,
115
- br as HospitalIcon,
116
- V as HouseIcon,
117
- gr as HouseValuationIcon,
122
+ N as HeartIcon,
123
+ L as HidePswIcon,
124
+ M as HomeIcon,
125
+ vr as HospitalIcon,
126
+ dr as HouseValuationIcon,
118
127
  $o as InstagramIcon,
119
- F as ItalyFlagIcon,
120
- v as LayersIcon,
128
+ B as ItalyFlagIcon,
129
+ T as LayersIcon,
121
130
  Zo as LinkedinIcon,
122
- T as LocationIcon,
131
+ G as LocationIcon,
123
132
  U as LogoutIcon,
124
133
  z as MailIcon,
125
134
  Q as MapIcon,
126
135
  j as NewsIcon,
127
136
  K as NotesIcon,
128
- yr as PharmacyIcon,
137
+ Rr as PharmacyIcon,
129
138
  X as PhoneIcon,
130
139
  _ as PinIcon,
131
140
  lr as PinShadowedIcon,
132
141
  oo as PlanIcon,
133
142
  eo as PlusIcon,
134
- Lr as PostIcon,
143
+ qr as PostIcon,
135
144
  no as PrestigeIcon,
145
+ Sr as PriceIcon,
136
146
  ar as PrincipalIcon,
137
147
  co as PrintIcon,
138
148
  Io as ProfileIcon,
139
149
  xo as QuotesIcon,
140
150
  io as RequestIcon,
141
- Hr as SchoolIcon,
151
+ Er as SchoolIcon,
142
152
  so as SearchIcon,
143
153
  uo as ShareIcon,
144
- te as ShieldImg,
145
- me as SnapImg,
146
- pe as StopWatchImg,
147
- Br as SubwayIcon,
154
+ de as ShieldImg,
155
+ ue as SnapImg,
156
+ Pr as SquareMeterIcon,
157
+ We as StopWatchImg,
158
+ Yr as SubwayIcon,
148
159
  Wo as SuitcaseIcon,
149
160
  Po as TieIcon,
150
- Ao as TourIcon,
151
- Gr as TrainAltIcon,
152
- Mr as TrainIcon,
161
+ So as TourIcon,
162
+ Or as TrainAltIcon,
163
+ Jr as TrainIcon,
164
+ Dr as TransactionIcon,
153
165
  bo as UkFlagIcon,
154
- yo as ValuationIcon,
155
- Lo as VideoIcon,
166
+ Do as ValuationIcon,
167
+ yo as VideoIcon,
156
168
  Ho as ViewPswIcon,
157
- Bo as WalletIcon,
158
- Mo as WarningIcon,
159
- Go as WarningIconRounded,
160
- ae as WikiNerdAnalyzeImg,
161
- Zr as WikiNerdDownloadAppImg,
162
- Er as WikiNerdImg,
163
- Jr as WikiNerdMercatoImg,
164
- Or as WikiNerdValutaDesktopImg,
165
- Yr as WikiNerdValutaMobileImg,
166
- Rr as WikicasaDatiLogoIcon,
169
+ Vo as WalletIcon,
170
+ Fo as WarningIcon,
171
+ vo as WarningIconRounded,
172
+ Se as WikiNerdAnalyzeImg,
173
+ fe as WikiNerdDownloadAppImg,
174
+ re as WikiNerdImg,
175
+ me as WikiNerdMercatoImg,
176
+ pe as WikiNerdValutaDesktopImg,
177
+ te as WikiNerdValutaMobileImg,
178
+ Zr as WikicasaDatiLogoIcon,
167
179
  Eo as WikicasaIcon,
168
- qr as WikicasaLogoIcon,
180
+ $r as WikicasaLogoIcon,
169
181
  pr as WikicasaRoundedIcon,
170
- $r as WikicasaStudioLogoIcon,
182
+ ae as WikicasaStudioLogoIcon,
171
183
  Ro as WkAppIcon,
172
184
  Jo as WkFavIcon,
173
185
  rr as YoutubeIcon
@@ -13,7 +13,7 @@ import { EditIcon } from './svgIcons/EditIcon';
13
13
  import { GermanyFlagIcon } from './svgIcons/GermanyFlagIcon';
14
14
  import { HeartIcon } from './svgIcons/HeartIcon';
15
15
  import { HidePswIcon } from './svgIcons/HidePswIcon';
16
- import { HouseIcon } from './svgIcons/HouseIcon';
16
+ import { HomeIcon } from './svgIcons/HomeIcon';
17
17
  import { ItalyFlagIcon } from './svgIcons/ItalyFlagIcon';
18
18
  import { LayersIcon } from './svgIcons/LayersIcon';
19
19
  import { LocationIcon } from './svgIcons/LocationIcon';
@@ -59,6 +59,12 @@ import { ArrowIndicatorIcon } from './svgIcons/ArrowIndicatorIcon';
59
59
  import { PrincipalIcon } from './svgIcons/PrincipalIcon';
60
60
  import { PinShadowedIcon } from './svgIcons/PinShadowedIcon';
61
61
  import { HouseValuationIcon } from './svgIcons/HouseValuationIcon';
62
+ import { CheckRoundedIcon } from './svgIcons/CheckRoundedIcon';
63
+ import { DownloadIcon } from './svgIcons/DownloadIcon';
64
+ import { SquareMeterIcon } from './svgIcons/SquareMeterIcon';
65
+ import { PriceIcon } from './svgIcons/PriceIcon';
66
+ import { DemandIcon } from './svgIcons/DemandIcon';
67
+ import { TransactionIcon } from './svgIcons/TransactionIcon';
62
68
  import { BankIcon } from './svgIcons/poi/BankIcon';
63
69
  import { BusIcon } from './svgIcons/poi/BusIcon';
64
70
  import { CartIcon } from './svgIcons/poi/CartIcon';
@@ -84,4 +90,4 @@ import { SnapImg } from './svgImages/SnapImg';
84
90
  import { StopWatchImg } from './svgImages/StopWatchImg';
85
91
  import { CheckImg } from './svgImages/CheckImg';
86
92
  import { WikiNerdAnalyzeImg } from './svgImages/WikiNerdAnalyzeImg';
87
- export { GearIcon, WikicasaIcon, AnalyticsIcon, AboutUsIcon, ArrowIcon, BarChartIcon, BellIcon, BulbIcon, CheckActiveIcon, CheckInactiveIcon, CloseIcon, DashboardIcon, DeleteIcon, DrawIcon, EditIcon, GermanyFlagIcon, HeartIcon, HidePswIcon, HouseIcon, ItalyFlagIcon, LayersIcon, LocationIcon, LogoutIcon, MailIcon, MapIcon, NewsIcon, NotesIcon, PhoneIcon, PinIcon, PlanIcon, PlusIcon, PrestigeIcon, PrintIcon, ProfileIcon, QuotesIcon, RequestIcon, SearchIcon, ShareIcon, SuitcaseIcon, TieIcon, TourIcon, UkFlagIcon, ValuationIcon, VideoIcon, ViewPswIcon, WalletIcon, WarningIcon, WarningIconRounded, WikicasaLogoIcon, WikicasaDatiLogoIcon, WikiNerdImg, WkAppIcon, WkFavIcon, FacebookIcon, LinkedinIcon, InstagramIcon, YoutubeIcon, BankIcon, BusIcon, CartIcon, ChargeIcon, HospitalIcon, PharmacyIcon, PostIcon, SchoolIcon, SubwayIcon, TrainIcon, TrainAltIcon, HamburgerMenuIcon, WikiNerdValutaMobileImg, WikiNerdMercatoImg, WikiNerdValutaDesktopImg, WikiNerdDownloadAppImg, GoogleIcon, WikicasaStudioLogoIcon, GenericUserWikiAvatarImg, WikicasaRoundedIcon, ArrowIndicatorIcon, ShieldImg, SnapImg, StopWatchImg, PrincipalIcon, PinShadowedIcon, HouseValuationIcon, CheckImg, WikiNerdAnalyzeImg };
93
+ export { GearIcon, WikicasaIcon, AnalyticsIcon, AboutUsIcon, ArrowIcon, BarChartIcon, BellIcon, BulbIcon, CheckActiveIcon, CheckInactiveIcon, CloseIcon, DashboardIcon, DeleteIcon, DrawIcon, EditIcon, GermanyFlagIcon, HeartIcon, HidePswIcon, HomeIcon, ItalyFlagIcon, LayersIcon, LocationIcon, LogoutIcon, MailIcon, MapIcon, NewsIcon, NotesIcon, PhoneIcon, PinIcon, PlanIcon, PlusIcon, PrestigeIcon, PrintIcon, ProfileIcon, QuotesIcon, RequestIcon, SearchIcon, ShareIcon, SuitcaseIcon, TieIcon, TourIcon, UkFlagIcon, ValuationIcon, VideoIcon, ViewPswIcon, WalletIcon, WarningIcon, WarningIconRounded, WikicasaLogoIcon, WikicasaDatiLogoIcon, WikiNerdImg, WkAppIcon, WkFavIcon, FacebookIcon, LinkedinIcon, InstagramIcon, YoutubeIcon, BankIcon, BusIcon, CartIcon, ChargeIcon, HospitalIcon, PharmacyIcon, PostIcon, SchoolIcon, SubwayIcon, TrainIcon, TrainAltIcon, HamburgerMenuIcon, WikiNerdValutaMobileImg, WikiNerdMercatoImg, WikiNerdValutaDesktopImg, WikiNerdDownloadAppImg, GoogleIcon, WikicasaStudioLogoIcon, GenericUserWikiAvatarImg, WikicasaRoundedIcon, ArrowIndicatorIcon, ShieldImg, SnapImg, StopWatchImg, PrincipalIcon, PinShadowedIcon, HouseValuationIcon, CheckImg, WikiNerdAnalyzeImg, CheckRoundedIcon, DownloadIcon, SquareMeterIcon, PriceIcon, DemandIcon, TransactionIcon };
@@ -0,0 +1,2 @@
1
+ import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ export declare const CheckRoundedIcon: FunctionalSvgIconComponent;
@@ -0,0 +1,2 @@
1
+ import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ export declare const DemandIcon: FunctionalSvgIconComponent;
@@ -0,0 +1,2 @@
1
+ import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ export declare const DownloadIcon: FunctionalSvgIconComponent;
@@ -0,0 +1,2 @@
1
+ import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ export declare const HomeIcon: FunctionalSvgIconComponent;
@@ -0,0 +1,2 @@
1
+ import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ export declare const PriceIcon: FunctionalSvgIconComponent;
@@ -0,0 +1,2 @@
1
+ import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ export declare const SquareMeterIcon: FunctionalSvgIconComponent;
@@ -0,0 +1,2 @@
1
+ import type { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
2
+ export declare const TransactionIcon: FunctionalSvgIconComponent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wikicasa-dev/svg-icons",
3
- "version": "0.0.30",
3
+ "version": "0.0.32",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/lib/index.d.ts",
package/dist/HouseIcon.js DELETED
@@ -1,46 +0,0 @@
1
- import { h as i } from "vue";
2
- import { g as r } from "./DefaultValues-DOBkctU1.js";
3
- const d = (e, { attrs: o }) => {
4
- e = { ...r(), ...e };
5
- const { width: n, height: l } = e;
6
- return i(
7
- "svg",
8
- {
9
- xmlns: "http://www.w3.org/2000/svg",
10
- viewBox: "0 0 14.431 16.077",
11
- width: `${n}`,
12
- height: `${l}`,
13
- class: e.class ?? "",
14
- "aria-hidden": o["aria-hidden"] ?? "true"
15
- },
16
- [
17
- i("path", {
18
- fill: o["fill-color"] ?? "none",
19
- stroke: o["stroke-color"] ?? "#222",
20
- "stroke-linecap": `${o["stroke-linecap"] ?? "round"}`,
21
- "stroke-linejoin": `${o["stroke-linejoin"] ?? "round"}`,
22
- "stroke-width": `${o["stroke-width"] ?? "1.5"}`,
23
- d: "M.697 5.966v9.612H4.62v-5.535h5.153v5.535h3.924V5.966"
24
- }),
25
- i("path", {
26
- fill: o["fill-color"] ?? "none",
27
- stroke: o["stroke-color"] ?? "#222",
28
- "stroke-linecap": `${o["stroke-linecap"] ?? "round"}`,
29
- "stroke-linejoin": `${o["stroke-linejoin"] ?? "round"}`,
30
- "stroke-width": `${o["stroke-width"] ?? "1.5"}`,
31
- d: "M13.726 6 7.195.5.705 6"
32
- }),
33
- i("path", {
34
- fill: o["fill-color"] ?? "none",
35
- stroke: o["stroke-color"] ?? "#222",
36
- "stroke-linecap": `${o["stroke-linecap"] ?? "round"}`,
37
- "stroke-linejoin": `${o["stroke-linejoin"] ?? "round"}`,
38
- "stroke-width": `${o["stroke-width"] ?? "1.5"}`,
39
- d: "M4.743 15.577h5.656"
40
- })
41
- ]
42
- );
43
- };
44
- export {
45
- d as HouseIcon
46
- };
@@ -1,3 +0,0 @@
1
- import type { FunctionalComponent } from 'vue';
2
- import type { SvgProps } from '@wikicasa-dev/types';
3
- export declare const HouseIcon: FunctionalComponent<Partial<SvgProps>>;