@wikicasa-dev/svg-icons 1.2.7 → 1.2.8

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/HeartIcon.js CHANGED
@@ -1,28 +1,20 @@
1
- import { h as o } from "vue";
2
- import { g as r } from "./DefaultValues-CpabIgVz.js";
3
- const s = (e, { attrs: t }) => {
4
- e = { ...r(), ...e };
5
- const { width: i, height: n } = e;
6
- return o(
7
- "svg",
8
- {
9
- xmlns: "http://www.w3.org/2000/svg",
10
- viewBox: "0 0 19.584 17.302",
11
- width: `${i}`,
12
- height: `${n}`,
13
- class: e.class ?? "",
14
- "aria-hidden": t["aria-hidden"] ?? "true"
15
- },
16
- o("path", {
17
- fill: e["fill-color"] ?? "none",
18
- stroke: e["stroke-color"] ?? "#222",
19
- "stroke-linecap": `${t["stroke-linecap"] ?? "round"}`,
20
- "stroke-linejoin": `${t["stroke-linejoin"] ?? "round"}`,
21
- "stroke-width": `${e["stroke-width"] ?? "1.5"}`,
22
- d: "M9.792 16.651c-17.572-9.8-5.249-21.4 0-13.238 5.249-8.166 17.572 3.439 0 13.238Z"
1
+ import { h as r } from "vue";
2
+ import { s as t } from "./svgIconFactory-BpnFimFz.js";
3
+ const i = (o) => t({
4
+ props: o,
5
+ svgNodeAttrs: { viewBox: "0 0 20.288 18.002" },
6
+ childrenNodes: r(
7
+ "g",
8
+ r("path", {
9
+ fill: o["fill-color"] ?? "none",
10
+ stroke: o["stroke-color"] ?? "#2b5dff",
11
+ "stroke-linecap": "round",
12
+ "stroke-linejoin": "round",
13
+ "stroke-width": o["stroke-width"] ?? "2",
14
+ d: "M10.144 17.002c-17.572-9.8-5.249-21.4 0-13.238 5.249-8.166 17.572 3.439 0 13.238Z"
23
15
  })
24
- );
25
- };
16
+ )
17
+ });
26
18
  export {
27
- s as HeartIcon
19
+ i as HeartIcon
28
20
  };
@@ -1,4 +1,3 @@
1
- import { FunctionalComponent } from 'vue';
2
- import { SvgProps } from '../../types/FunctionalSvgIconComponent';
1
+ import { FunctionalSvgIconComponent } from '../../types/FunctionalSvgIconComponent';
3
2
 
4
- export declare const HeartIcon: FunctionalComponent<Partial<SvgProps>>;
3
+ export declare const HeartIcon: FunctionalSvgIconComponent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wikicasa-dev/svg-icons",
3
- "version": "1.2.7",
3
+ "version": "1.2.8",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/lib/index.d.ts",