@wikicasa-dev/svg-icons 0.0.47 → 0.0.49
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/DemandIcon.js +45 -47
- package/dist/PriceIcon.js +4 -3
- package/dist/TransactionIcon.js +10 -5
- package/dist/WikicasaIcon.js +2 -2
- package/dist/lib/svgIcons/WikicasaIcon.d.ts +2 -2
- package/package.json +1 -1
package/dist/DemandIcon.js
CHANGED
|
@@ -5,53 +5,51 @@ const n = (t, { attrs: a }) => o({
|
|
|
5
5
|
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17 14.069" },
|
|
6
6
|
childrenNodes: r(
|
|
7
7
|
"g",
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
[
|
|
17
|
-
r("
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
r("
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
r("
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
]
|
|
54
|
-
)
|
|
8
|
+
{
|
|
9
|
+
fill: a["fill-color"] ?? "#fff",
|
|
10
|
+
stroke: a["stroke-color"] ?? "#222",
|
|
11
|
+
"stroke-width": a["stroke-width"] ?? "1",
|
|
12
|
+
"stroke-linecap": "round",
|
|
13
|
+
"stroke-linejoin": "round"
|
|
14
|
+
},
|
|
15
|
+
[
|
|
16
|
+
r("g", { transform: "translate(.5 .5)" }, [
|
|
17
|
+
r("path", {
|
|
18
|
+
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"
|
|
19
|
+
}),
|
|
20
|
+
r("ellipse", {
|
|
21
|
+
cx: "2.322",
|
|
22
|
+
cy: "2.373",
|
|
23
|
+
rx: "2.322",
|
|
24
|
+
ry: "2.373",
|
|
25
|
+
transform: "translate(1.399)"
|
|
26
|
+
})
|
|
27
|
+
]),
|
|
28
|
+
r("g", { transform: "translate(3.617 .5)" }, [
|
|
29
|
+
r("path", {
|
|
30
|
+
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"
|
|
31
|
+
}),
|
|
32
|
+
r("ellipse", {
|
|
33
|
+
cx: "2.696",
|
|
34
|
+
cy: "2.754",
|
|
35
|
+
rx: "2.696",
|
|
36
|
+
ry: "2.754",
|
|
37
|
+
transform: "translate(1.624)"
|
|
38
|
+
})
|
|
39
|
+
]),
|
|
40
|
+
r("g", { transform: "translate(6.184 .5)" }, [
|
|
41
|
+
r("path", {
|
|
42
|
+
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"
|
|
43
|
+
}),
|
|
44
|
+
r("ellipse", {
|
|
45
|
+
cx: "3.219",
|
|
46
|
+
cy: "3.289",
|
|
47
|
+
rx: "3.219",
|
|
48
|
+
ry: "3.289",
|
|
49
|
+
transform: "translate(1.94)"
|
|
50
|
+
})
|
|
51
|
+
])
|
|
52
|
+
]
|
|
55
53
|
)
|
|
56
54
|
});
|
|
57
55
|
export {
|
package/dist/PriceIcon.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { h as o } from "vue";
|
|
2
2
|
import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
-
const i = (
|
|
4
|
-
props:
|
|
3
|
+
const i = (t, { attrs: r }) => e({
|
|
4
|
+
props: t,
|
|
5
5
|
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 18.701 17.024" },
|
|
6
6
|
childrenNodes: o(
|
|
7
7
|
"g",
|
|
8
8
|
{
|
|
9
9
|
fill: "none",
|
|
10
|
-
stroke:
|
|
10
|
+
stroke: r["stroke-color"] ?? "#222",
|
|
11
|
+
"stroke-width": r["stroke-width"] ?? "1",
|
|
11
12
|
"stroke-linecap": "round",
|
|
12
13
|
"stroke-linejoin": "round"
|
|
13
14
|
},
|
package/dist/TransactionIcon.js
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import { h as o } from "vue";
|
|
2
2
|
import { s as n } from "./svgIconFactory-Dn0WJdb3.js";
|
|
3
|
-
const i = (
|
|
4
|
-
props:
|
|
5
|
-
svgNodeAttrs: {
|
|
3
|
+
const i = (t, { attrs: r }) => n({
|
|
4
|
+
props: t,
|
|
5
|
+
svgNodeAttrs: {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 16.219 17.436",
|
|
8
|
+
"stroke-width": r["stroke-width"] ?? "1"
|
|
9
|
+
},
|
|
6
10
|
childrenNodes: o(
|
|
7
11
|
"g",
|
|
8
|
-
|
|
12
|
+
{ fill: "none", stroke: r["stroke-color"] ?? "#222", "stroke-linecap": "round" },
|
|
13
|
+
[
|
|
9
14
|
o("g", [
|
|
10
15
|
o("path", { d: "M.5 4.244h14.367" }),
|
|
11
16
|
o("path", { "stroke-linejoin": "round", d: "m11.898.707 3.821 3.821-3.821 3.821" })
|
|
@@ -14,7 +19,7 @@ const i = (r, { attrs: t }) => n({
|
|
|
14
19
|
o("path", { d: "M15.718 12.625H1.351" }),
|
|
15
20
|
o("path", { "stroke-linejoin": "round", d: "M4.321 9.088.5 12.909l3.821 3.821" })
|
|
16
21
|
])
|
|
17
|
-
]
|
|
22
|
+
]
|
|
18
23
|
)
|
|
19
24
|
});
|
|
20
25
|
export {
|
package/dist/WikicasaIcon.js
CHANGED
|
@@ -5,8 +5,8 @@ const e = (a) => r({
|
|
|
5
5
|
svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 17.521 17.301" },
|
|
6
6
|
childrenNodes: [
|
|
7
7
|
o("path", {
|
|
8
|
-
fill: a
|
|
9
|
-
stroke: a
|
|
8
|
+
fill: a["bg-color"] ?? "none",
|
|
9
|
+
stroke: a["border-color"] ?? "#222",
|
|
10
10
|
"stroke-linecap": "round",
|
|
11
11
|
"stroke-linejoin": "round",
|
|
12
12
|
"stroke-width": "1.3",
|
|
@@ -2,7 +2,7 @@ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconCompone
|
|
|
2
2
|
import { SvgProps } from '@wikicasa-dev/types';
|
|
3
3
|
|
|
4
4
|
export declare const WikicasaIcon: FunctionalSvgIconComponent<Partial<SvgProps> & Partial<{
|
|
5
|
-
|
|
5
|
+
'bg-color': string;
|
|
6
6
|
color: string;
|
|
7
|
-
|
|
7
|
+
'border-color': string;
|
|
8
8
|
}>>;
|