@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.
@@ -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
- 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
- )
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 = (r, { attrs: t }) => e({
4
- props: r,
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: t["stroke-color"] ?? "#222",
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
  },
@@ -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 = (r, { attrs: t }) => n({
4
- props: r,
5
- svgNodeAttrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16.219 17.436" },
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
- o("g", { fill: "none", stroke: t["stroke-color"] ?? "#222", "stroke-linecap": "round" }, [
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 {
@@ -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.bgColor ?? "none",
9
- stroke: a.borderColor ?? "#222",
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
- bgColor: string;
5
+ 'bg-color': string;
6
6
  color: string;
7
- borderColor: string;
7
+ 'border-color': string;
8
8
  }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wikicasa-dev/svg-icons",
3
- "version": "0.0.47",
3
+ "version": "0.0.49",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/lib/index.d.ts",