zipzy-icons 1.0.9 → 1.0.10

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,13 @@
1
+ import * as React from 'react';
2
+
3
+ type ZipZyIconProps = React.SVGProps<SVGSVGElement> & {
4
+ size?: number | string;
5
+ };
6
+ declare const ZipZyIcon: React.ForwardRefExoticComponent<Omit<ZipZyIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+
8
+ type ZipZyMarkProps = React.SVGProps<SVGSVGElement> & {
9
+ size?: number | string;
10
+ };
11
+ declare const ZipZyMark: React.ForwardRefExoticComponent<Omit<ZipZyMarkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12
+
13
+ export { ZipZyIcon, ZipZyMark };
@@ -0,0 +1,13 @@
1
+ import * as React from 'react';
2
+
3
+ type ZipZyIconProps = React.SVGProps<SVGSVGElement> & {
4
+ size?: number | string;
5
+ };
6
+ declare const ZipZyIcon: React.ForwardRefExoticComponent<Omit<ZipZyIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
+
8
+ type ZipZyMarkProps = React.SVGProps<SVGSVGElement> & {
9
+ size?: number | string;
10
+ };
11
+ declare const ZipZyMark: React.ForwardRefExoticComponent<Omit<ZipZyMarkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12
+
13
+ export { ZipZyIcon, ZipZyMark };
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -35,11 +36,12 @@ __export(index_exports, {
35
36
  module.exports = __toCommonJS(index_exports);
36
37
 
37
38
  // src/ZipZyIcon.tsx
38
- var import_react = __toESM(require("react"));
39
- var ZipZyIcon = import_react.default.forwardRef(
39
+ var React = __toESM(require("react"));
40
+ var import_jsx_runtime = require("react/jsx-runtime");
41
+ var ZipZyIcon = React.forwardRef(
40
42
  ({ size = 120, style, ...props }, ref) => {
41
43
  const aspectRatio = 542 / 1574;
42
- return /* @__PURE__ */ import_react.default.createElement(
44
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
43
45
  "svg",
44
46
  {
45
47
  ref,
@@ -47,17 +49,16 @@ var ZipZyIcon = import_react.default.forwardRef(
47
49
  width: size,
48
50
  height: typeof size === "number" ? size * aspectRatio : void 0,
49
51
  fill: "none",
50
- xmlns: "http://www.w3.org/2000/svg",
51
52
  style,
52
- ...props
53
- },
54
- /* @__PURE__ */ import_react.default.createElement(
55
- "path",
56
- {
57
- d: "M290.5 0C450.939 0 581 129.814 581 289.948C581 397.912 521.878 492.093 434.186 542C422.973 509.247 404.568 460.501 396.954 460.501C383.861 460.502 360.651 503.863 298.757 503.863C273.166 503.863 241.029 493.765 241.029 467.629C241.03 392.784 457.659 175.973 457.659 104.693C457.659 91.031 444.565 85.6852 434.448 85.6852H160.686C156.52 85.6852 136.881 83.309 136.881 91.0306C136.881 96.9707 162.472 189.636 177.35 189.636C188.658 189.635 203.536 155.777 266.025 155.777C283.284 155.777 302.924 160.529 302.924 181.32C302.923 219.379 139.382 383.843 111.683 518.47C43.6992 465.4 -2.16336e-05 382.767 -2.16336e-05 289.948C-2.16336e-05 129.814 130.061 0 290.5 0Z",
58
- fill: "currentColor"
59
- }
60
- )
53
+ ...props,
54
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
55
+ "path",
56
+ {
57
+ d: "M290.5 0C450.939 0 581 129.814 581 289.948C581 397.912 521.878 492.093 434.186 542C422.973 509.247 404.568 460.501 396.954 460.501C383.861 460.502 360.651 503.863 298.757 503.863C273.166 503.863 241.029 493.765 241.029 467.629C241.03 392.784 457.659 175.973 457.659 104.693C457.659 91.031 444.565 85.6852 434.448 85.6852H160.686C156.52 85.6852 136.881 83.309 136.881 91.0306C136.881 96.9707 162.472 189.636 177.35 189.636C188.658 189.635 203.536 155.777 266.025 155.777C283.284 155.777 302.924 160.529 302.924 181.32C302.923 219.379 139.382 383.843 111.683 518.47C43.6992 465.4 -2.16336e-05 382.767 -2.16336e-05 289.948C-2.16336e-05 129.814 130.061 0 290.5 0Z",
58
+ fill: "currentColor"
59
+ }
60
+ )
61
+ }
61
62
  );
62
63
  }
63
64
  );
@@ -65,10 +66,11 @@ ZipZyIcon.displayName = "ZipZyIcon";
65
66
  var ZipZyIcon_default = ZipZyIcon;
66
67
 
67
68
  // src/ZipZyMark.tsx
68
- var import_react2 = __toESM(require("react"));
69
- var ZipZyMark = import_react2.default.forwardRef(
69
+ var React2 = __toESM(require("react"));
70
+ var import_jsx_runtime2 = require("react/jsx-runtime");
71
+ var ZipZyMark = React2.forwardRef(
70
72
  ({ size = 40, style, ...props }, ref) => {
71
- return /* @__PURE__ */ import_react2.default.createElement(
73
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
72
74
  "svg",
73
75
  {
74
76
  ref,
@@ -78,15 +80,15 @@ var ZipZyMark = import_react2.default.forwardRef(
78
80
  fill: "none",
79
81
  xmlns: "http://www.w3.org/2000/svg",
80
82
  style,
81
- ...props
82
- },
83
- /* @__PURE__ */ import_react2.default.createElement(
84
- "path",
85
- {
86
- d: "M390.5 0C606.167 0 781 174.833 781 390.5C781 535.906 701.526 662.748 583.647 729.963C568.574 685.851 543.834 620.2 533.6 620.2C516 620.201 484.799 678.6 401.6 678.6C367.2 678.6 324 665 324 629.8C324 529 615.2 237 615.2 141C615.2 122.6 597.6 115.4 584 115.4H216C210.4 115.4 184.001 112.2 184 122.6C184 130.6 218.4 255.4 238.4 255.4C253.6 255.4 273.601 209.8 357.6 209.8C380.8 209.8 407.2 216.2 407.2 244.2C407.2 295.458 187.362 516.957 150.128 698.272C58.742 626.798 0 515.51 0 390.5C0 174.833 174.833 0 390.5 0Z",
87
- fill: "currentColor"
88
- }
89
- )
83
+ ...props,
84
+ children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
85
+ "path",
86
+ {
87
+ d: "M390.5 0C606.167 0 781 174.833 781 390.5C781 535.906 701.526 662.748 583.647 729.963C568.574 685.851 543.834 620.2 533.6 620.2C516 620.201 484.799 678.6 401.6 678.6C367.2 678.6 324 665 324 629.8C324 529 615.2 237 615.2 141C615.2 122.6 597.6 115.4 584 115.4H216C210.4 115.4 184.001 112.2 184 122.6C184 130.6 218.4 255.4 238.4 255.4C253.6 255.4 273.601 209.8 357.6 209.8C380.8 209.8 407.2 216.2 407.2 244.2C407.2 295.458 187.362 516.957 150.128 698.272C58.742 626.798 0 515.51 0 390.5C0 174.833 174.833 0 390.5 0Z",
88
+ fill: "currentColor"
89
+ }
90
+ )
91
+ }
90
92
  );
91
93
  }
92
94
  );
@@ -97,3 +99,4 @@ var ZipZyMark_default = ZipZyMark;
97
99
  ZipZyIcon,
98
100
  ZipZyMark
99
101
  });
102
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts","../src/ZipZyIcon.tsx","../src/ZipZyMark.tsx"],"sourcesContent":["export { default as ZipZyIcon } from \"./ZipZyIcon\";\r\nexport { default as ZipZyMark } from \"./ZipZyMark\";","import * as React from \"react\";\r\n\r\nexport type ZipZyIconProps = React.SVGProps<SVGSVGElement> & {\r\n size?: number | string;\r\n};\r\n\r\nexport const ZipZyIcon = React.forwardRef<SVGSVGElement, ZipZyIconProps>(\r\n ({ size = 120, style, ...props }, ref) => {\r\n const aspectRatio = 542 / 1574;\r\n\r\n return (\r\n <svg\r\n ref={ref}\r\n viewBox=\"0 0 1574 542\"\r\n width={size}\r\n height={typeof size === \"number\" ? size * aspectRatio : undefined}\r\n fill=\"none\"\r\n style={style}\r\n {...props}\r\n >\r\n <path\r\n d=\"M290.5 0C450.939 0 581 129.814 581 289.948C581 397.912 521.878 492.093 434.186 542C422.973 509.247 404.568 460.501 396.954 460.501C383.861 460.502 360.651 503.863 298.757 503.863C273.166 503.863 241.029 493.765 241.029 467.629C241.03 392.784 457.659 175.973 457.659 104.693C457.659 91.031 444.565 85.6852 434.448 85.6852H160.686C156.52 85.6852 136.881 83.309 136.881 91.0306C136.881 96.9707 162.472 189.636 177.35 189.636C188.658 189.635 203.536 155.777 266.025 155.777C283.284 155.777 302.924 160.529 302.924 181.32C302.923 219.379 139.382 383.843 111.683 518.47C43.6992 465.4 -2.16336e-05 382.767 -2.16336e-05 289.948C-2.16336e-05 129.814 130.061 0 290.5 0Z\"\r\n fill=\"currentColor\"\r\n />\r\n </svg>\r\n );\r\n }\r\n);\r\n\r\nZipZyIcon.displayName = \"ZipZyIcon\";\r\nexport default ZipZyIcon;","import * as React from \"react\";\r\n\r\nexport type ZipZyMarkProps = React.SVGProps<SVGSVGElement> & {\r\n size?: number | string;\r\n};\r\n\r\nconst ZipZyMark = React.forwardRef<SVGSVGElement, ZipZyMarkProps>(\r\n ({ size = 40, style, ...props }, ref) => {\r\n return (\r\n <svg\r\n ref={ref}\r\n viewBox=\"0 0 581 542\"\r\n width={size}\r\n height={typeof size === \"number\" ? size : undefined}\r\n fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n style={style}\r\n {...props}\r\n >\r\n <path\r\n d=\"M390.5 0C606.167 0 781 174.833 781 390.5C781 535.906 701.526 662.748 583.647 729.963C568.574 685.851 543.834 620.2 533.6 620.2C516 620.201 484.799 678.6 401.6 678.6C367.2 678.6 324 665 324 629.8C324 529 615.2 237 615.2 141C615.2 122.6 597.6 115.4 584 115.4H216C210.4 115.4 184.001 112.2 184 122.6C184 130.6 218.4 255.4 238.4 255.4C253.6 255.4 273.601 209.8 357.6 209.8C380.8 209.8 407.2 216.2 407.2 244.2C407.2 295.458 187.362 516.957 150.128 698.272C58.742 626.798 0 515.51 0 390.5C0 174.833 174.833 0 390.5 0Z\"\r\n fill=\"currentColor\"\r\n />\r\n </svg>\r\n );\r\n }\r\n);\r\n\r\nZipZyMark.displayName = \"ZipZyMark\";\r\n\r\nexport default ZipZyMark;"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,YAAuB;AAoBf;AAdD,IAAM,YAAkB;AAAA,EAC7B,CAAC,EAAE,OAAO,KAAK,OAAO,GAAG,MAAM,GAAG,QAAQ;AACxC,UAAM,cAAc,MAAM;AAE1B,WACE;AAAA,MAAC;AAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,OAAO;AAAA,QACP,QAAQ,OAAO,SAAS,WAAW,OAAO,cAAc;AAAA,QACxD,MAAK;AAAA,QACL;AAAA,QACC,GAAG;AAAA,QAEJ;AAAA,UAAC;AAAA;AAAA,YACC,GAAE;AAAA,YACF,MAAK;AAAA;AAAA,QACP;AAAA;AAAA,IACF;AAAA,EAEJ;AACF;AAEA,UAAU,cAAc;AACxB,IAAO,oBAAQ;;;AC9Bf,IAAAA,SAAuB;AAmBf,IAAAC,sBAAA;AAbR,IAAM,YAAkB;AAAA,EACtB,CAAC,EAAE,OAAO,IAAI,OAAO,GAAG,MAAM,GAAG,QAAQ;AACvC,WACE;AAAA,MAAC;AAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,OAAO;AAAA,QACP,QAAQ,OAAO,SAAS,WAAW,OAAO;AAAA,QAC1C,MAAK;AAAA,QACL,OAAM;AAAA,QACN;AAAA,QACC,GAAG;AAAA,QAEJ;AAAA,UAAC;AAAA;AAAA,YACC,GAAE;AAAA,YACF,MAAK;AAAA;AAAA,QACP;AAAA;AAAA,IACF;AAAA,EAEJ;AACF;AAEA,UAAU,cAAc;AAExB,IAAO,oBAAQ;","names":["React","import_jsx_runtime"]}
package/dist/index.mjs CHANGED
@@ -1,9 +1,10 @@
1
1
  // src/ZipZyIcon.tsx
2
- import React from "react";
2
+ import * as React from "react";
3
+ import { jsx } from "react/jsx-runtime";
3
4
  var ZipZyIcon = React.forwardRef(
4
5
  ({ size = 120, style, ...props }, ref) => {
5
6
  const aspectRatio = 542 / 1574;
6
- return /* @__PURE__ */ React.createElement(
7
+ return /* @__PURE__ */ jsx(
7
8
  "svg",
8
9
  {
9
10
  ref,
@@ -11,17 +12,16 @@ var ZipZyIcon = React.forwardRef(
11
12
  width: size,
12
13
  height: typeof size === "number" ? size * aspectRatio : void 0,
13
14
  fill: "none",
14
- xmlns: "http://www.w3.org/2000/svg",
15
15
  style,
16
- ...props
17
- },
18
- /* @__PURE__ */ React.createElement(
19
- "path",
20
- {
21
- d: "M290.5 0C450.939 0 581 129.814 581 289.948C581 397.912 521.878 492.093 434.186 542C422.973 509.247 404.568 460.501 396.954 460.501C383.861 460.502 360.651 503.863 298.757 503.863C273.166 503.863 241.029 493.765 241.029 467.629C241.03 392.784 457.659 175.973 457.659 104.693C457.659 91.031 444.565 85.6852 434.448 85.6852H160.686C156.52 85.6852 136.881 83.309 136.881 91.0306C136.881 96.9707 162.472 189.636 177.35 189.636C188.658 189.635 203.536 155.777 266.025 155.777C283.284 155.777 302.924 160.529 302.924 181.32C302.923 219.379 139.382 383.843 111.683 518.47C43.6992 465.4 -2.16336e-05 382.767 -2.16336e-05 289.948C-2.16336e-05 129.814 130.061 0 290.5 0Z",
22
- fill: "currentColor"
23
- }
24
- )
16
+ ...props,
17
+ children: /* @__PURE__ */ jsx(
18
+ "path",
19
+ {
20
+ d: "M290.5 0C450.939 0 581 129.814 581 289.948C581 397.912 521.878 492.093 434.186 542C422.973 509.247 404.568 460.501 396.954 460.501C383.861 460.502 360.651 503.863 298.757 503.863C273.166 503.863 241.029 493.765 241.029 467.629C241.03 392.784 457.659 175.973 457.659 104.693C457.659 91.031 444.565 85.6852 434.448 85.6852H160.686C156.52 85.6852 136.881 83.309 136.881 91.0306C136.881 96.9707 162.472 189.636 177.35 189.636C188.658 189.635 203.536 155.777 266.025 155.777C283.284 155.777 302.924 160.529 302.924 181.32C302.923 219.379 139.382 383.843 111.683 518.47C43.6992 465.4 -2.16336e-05 382.767 -2.16336e-05 289.948C-2.16336e-05 129.814 130.061 0 290.5 0Z",
21
+ fill: "currentColor"
22
+ }
23
+ )
24
+ }
25
25
  );
26
26
  }
27
27
  );
@@ -29,10 +29,11 @@ ZipZyIcon.displayName = "ZipZyIcon";
29
29
  var ZipZyIcon_default = ZipZyIcon;
30
30
 
31
31
  // src/ZipZyMark.tsx
32
- import React2 from "react";
32
+ import * as React2 from "react";
33
+ import { jsx as jsx2 } from "react/jsx-runtime";
33
34
  var ZipZyMark = React2.forwardRef(
34
35
  ({ size = 40, style, ...props }, ref) => {
35
- return /* @__PURE__ */ React2.createElement(
36
+ return /* @__PURE__ */ jsx2(
36
37
  "svg",
37
38
  {
38
39
  ref,
@@ -42,15 +43,15 @@ var ZipZyMark = React2.forwardRef(
42
43
  fill: "none",
43
44
  xmlns: "http://www.w3.org/2000/svg",
44
45
  style,
45
- ...props
46
- },
47
- /* @__PURE__ */ React2.createElement(
48
- "path",
49
- {
50
- d: "M390.5 0C606.167 0 781 174.833 781 390.5C781 535.906 701.526 662.748 583.647 729.963C568.574 685.851 543.834 620.2 533.6 620.2C516 620.201 484.799 678.6 401.6 678.6C367.2 678.6 324 665 324 629.8C324 529 615.2 237 615.2 141C615.2 122.6 597.6 115.4 584 115.4H216C210.4 115.4 184.001 112.2 184 122.6C184 130.6 218.4 255.4 238.4 255.4C253.6 255.4 273.601 209.8 357.6 209.8C380.8 209.8 407.2 216.2 407.2 244.2C407.2 295.458 187.362 516.957 150.128 698.272C58.742 626.798 0 515.51 0 390.5C0 174.833 174.833 0 390.5 0Z",
51
- fill: "currentColor"
52
- }
53
- )
46
+ ...props,
47
+ children: /* @__PURE__ */ jsx2(
48
+ "path",
49
+ {
50
+ d: "M390.5 0C606.167 0 781 174.833 781 390.5C781 535.906 701.526 662.748 583.647 729.963C568.574 685.851 543.834 620.2 533.6 620.2C516 620.201 484.799 678.6 401.6 678.6C367.2 678.6 324 665 324 629.8C324 529 615.2 237 615.2 141C615.2 122.6 597.6 115.4 584 115.4H216C210.4 115.4 184.001 112.2 184 122.6C184 130.6 218.4 255.4 238.4 255.4C253.6 255.4 273.601 209.8 357.6 209.8C380.8 209.8 407.2 216.2 407.2 244.2C407.2 295.458 187.362 516.957 150.128 698.272C58.742 626.798 0 515.51 0 390.5C0 174.833 174.833 0 390.5 0Z",
51
+ fill: "currentColor"
52
+ }
53
+ )
54
+ }
54
55
  );
55
56
  }
56
57
  );
@@ -60,3 +61,4 @@ export {
60
61
  ZipZyIcon_default as ZipZyIcon,
61
62
  ZipZyMark_default as ZipZyMark
62
63
  };
64
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/ZipZyIcon.tsx","../src/ZipZyMark.tsx"],"sourcesContent":["import * as React from \"react\";\r\n\r\nexport type ZipZyIconProps = React.SVGProps<SVGSVGElement> & {\r\n size?: number | string;\r\n};\r\n\r\nexport const ZipZyIcon = React.forwardRef<SVGSVGElement, ZipZyIconProps>(\r\n ({ size = 120, style, ...props }, ref) => {\r\n const aspectRatio = 542 / 1574;\r\n\r\n return (\r\n <svg\r\n ref={ref}\r\n viewBox=\"0 0 1574 542\"\r\n width={size}\r\n height={typeof size === \"number\" ? size * aspectRatio : undefined}\r\n fill=\"none\"\r\n style={style}\r\n {...props}\r\n >\r\n <path\r\n d=\"M290.5 0C450.939 0 581 129.814 581 289.948C581 397.912 521.878 492.093 434.186 542C422.973 509.247 404.568 460.501 396.954 460.501C383.861 460.502 360.651 503.863 298.757 503.863C273.166 503.863 241.029 493.765 241.029 467.629C241.03 392.784 457.659 175.973 457.659 104.693C457.659 91.031 444.565 85.6852 434.448 85.6852H160.686C156.52 85.6852 136.881 83.309 136.881 91.0306C136.881 96.9707 162.472 189.636 177.35 189.636C188.658 189.635 203.536 155.777 266.025 155.777C283.284 155.777 302.924 160.529 302.924 181.32C302.923 219.379 139.382 383.843 111.683 518.47C43.6992 465.4 -2.16336e-05 382.767 -2.16336e-05 289.948C-2.16336e-05 129.814 130.061 0 290.5 0Z\"\r\n fill=\"currentColor\"\r\n />\r\n </svg>\r\n );\r\n }\r\n);\r\n\r\nZipZyIcon.displayName = \"ZipZyIcon\";\r\nexport default ZipZyIcon;","import * as React from \"react\";\r\n\r\nexport type ZipZyMarkProps = React.SVGProps<SVGSVGElement> & {\r\n size?: number | string;\r\n};\r\n\r\nconst ZipZyMark = React.forwardRef<SVGSVGElement, ZipZyMarkProps>(\r\n ({ size = 40, style, ...props }, ref) => {\r\n return (\r\n <svg\r\n ref={ref}\r\n viewBox=\"0 0 581 542\"\r\n width={size}\r\n height={typeof size === \"number\" ? size : undefined}\r\n fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n style={style}\r\n {...props}\r\n >\r\n <path\r\n d=\"M390.5 0C606.167 0 781 174.833 781 390.5C781 535.906 701.526 662.748 583.647 729.963C568.574 685.851 543.834 620.2 533.6 620.2C516 620.201 484.799 678.6 401.6 678.6C367.2 678.6 324 665 324 629.8C324 529 615.2 237 615.2 141C615.2 122.6 597.6 115.4 584 115.4H216C210.4 115.4 184.001 112.2 184 122.6C184 130.6 218.4 255.4 238.4 255.4C253.6 255.4 273.601 209.8 357.6 209.8C380.8 209.8 407.2 216.2 407.2 244.2C407.2 295.458 187.362 516.957 150.128 698.272C58.742 626.798 0 515.51 0 390.5C0 174.833 174.833 0 390.5 0Z\"\r\n fill=\"currentColor\"\r\n />\r\n </svg>\r\n );\r\n }\r\n);\r\n\r\nZipZyMark.displayName = \"ZipZyMark\";\r\n\r\nexport default ZipZyMark;"],"mappings":";AAAA,YAAY,WAAW;AAoBf;AAdD,IAAM,YAAkB;AAAA,EAC7B,CAAC,EAAE,OAAO,KAAK,OAAO,GAAG,MAAM,GAAG,QAAQ;AACxC,UAAM,cAAc,MAAM;AAE1B,WACE;AAAA,MAAC;AAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,OAAO;AAAA,QACP,QAAQ,OAAO,SAAS,WAAW,OAAO,cAAc;AAAA,QACxD,MAAK;AAAA,QACL;AAAA,QACC,GAAG;AAAA,QAEJ;AAAA,UAAC;AAAA;AAAA,YACC,GAAE;AAAA,YACF,MAAK;AAAA;AAAA,QACP;AAAA;AAAA,IACF;AAAA,EAEJ;AACF;AAEA,UAAU,cAAc;AACxB,IAAO,oBAAQ;;;AC9Bf,YAAYA,YAAW;AAmBf,gBAAAC,YAAA;AAbR,IAAM,YAAkB;AAAA,EACtB,CAAC,EAAE,OAAO,IAAI,OAAO,GAAG,MAAM,GAAG,QAAQ;AACvC,WACE,gBAAAA;AAAA,MAAC;AAAA;AAAA,QACC;AAAA,QACA,SAAQ;AAAA,QACR,OAAO;AAAA,QACP,QAAQ,OAAO,SAAS,WAAW,OAAO;AAAA,QAC1C,MAAK;AAAA,QACL,OAAM;AAAA,QACN;AAAA,QACC,GAAG;AAAA,QAEJ,0BAAAA;AAAA,UAAC;AAAA;AAAA,YACC,GAAE;AAAA,YACF,MAAK;AAAA;AAAA,QACP;AAAA;AAAA,IACF;AAAA,EAEJ;AACF;AAEA,UAAU,cAAc;AAExB,IAAO,oBAAQ;","names":["React","jsx"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zipzy-icons",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "main": "dist/index.cjs",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -18,11 +18,11 @@
18
18
  "react": ">=18"
19
19
  },
20
20
  "devDependencies": {
21
- "react": "^19.2.4",
22
21
  "@types/react": "^19.2.14",
23
22
  "@types/react-dom": "^19.2.3",
23
+ "react": "^19.2.4",
24
24
  "tsup": "^8.5.1",
25
- "typescript": "^6.0.2"
25
+ "typescript": "^5.4.5"
26
26
  },
27
27
  "scripts": {
28
28
  "build": "tsup"