magick-icons 0.1.43 → 0.1.45

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/index.d.mts CHANGED
@@ -1,5 +1,23 @@
1
1
  import React from 'react';
2
2
 
3
+ /**
4
+ * Props for the Enter icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ interface EnterProps extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+ /**
11
+ * Enter icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { Enter } from 'magick-icons';
15
+ *
16
+ * <Enter size={24} className="text-blue-500" />
17
+ * ```
18
+ */
19
+ declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
+
3
21
  /**
4
22
  * Props for the Frame icon component
5
23
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -18,4 +36,58 @@ interface FrameProps extends React.SVGProps<SVGSVGElement> {
18
36
  */
19
37
  declare const Frame: React.ForwardRefExoticComponent<Omit<FrameProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
38
 
21
- export { Frame, type FrameProps };
39
+ /**
40
+ * Props for the Magicko3DotsMore icon component
41
+ * @property {number | string} [size] - Size of the icon (default: 24)
42
+ */
43
+ interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
44
+ size?: number | string;
45
+ }
46
+ /**
47
+ * Magicko3DotsMore icon component
48
+ * @example
49
+ * ```tsx
50
+ * import { Magicko3DotsMore } from 'magick-icons';
51
+ *
52
+ * <Magicko3DotsMore size={24} className="text-blue-500" />
53
+ * ```
54
+ */
55
+ declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
+
57
+ /**
58
+ * Props for the MagickoArchive icon component
59
+ * @property {number | string} [size] - Size of the icon (default: 24)
60
+ */
61
+ interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {
62
+ size?: number | string;
63
+ }
64
+ /**
65
+ * MagickoArchive icon component
66
+ * @example
67
+ * ```tsx
68
+ * import { MagickoArchive } from 'magick-icons';
69
+ *
70
+ * <MagickoArchive size={24} className="text-blue-500" />
71
+ * ```
72
+ */
73
+ declare const MagickoArchive: React.ForwardRefExoticComponent<Omit<MagickoArchiveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
+
75
+ /**
76
+ * Props for the MagickoChart icon component
77
+ * @property {number | string} [size] - Size of the icon (default: 24)
78
+ */
79
+ interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {
80
+ size?: number | string;
81
+ }
82
+ /**
83
+ * MagickoChart icon component
84
+ * @example
85
+ * ```tsx
86
+ * import { MagickoChart } from 'magick-icons';
87
+ *
88
+ * <MagickoChart size={24} className="text-blue-500" />
89
+ * ```
90
+ */
91
+ declare const MagickoChart: React.ForwardRefExoticComponent<Omit<MagickoChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
+
93
+ export { Enter, type EnterProps, Frame, type FrameProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps };
package/index.d.ts CHANGED
@@ -1,5 +1,23 @@
1
1
  import React from 'react';
2
2
 
3
+ /**
4
+ * Props for the Enter icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ interface EnterProps extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+ /**
11
+ * Enter icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { Enter } from 'magick-icons';
15
+ *
16
+ * <Enter size={24} className="text-blue-500" />
17
+ * ```
18
+ */
19
+ declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
+
3
21
  /**
4
22
  * Props for the Frame icon component
5
23
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -18,4 +36,58 @@ interface FrameProps extends React.SVGProps<SVGSVGElement> {
18
36
  */
19
37
  declare const Frame: React.ForwardRefExoticComponent<Omit<FrameProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
38
 
21
- export { Frame, type FrameProps };
39
+ /**
40
+ * Props for the Magicko3DotsMore icon component
41
+ * @property {number | string} [size] - Size of the icon (default: 24)
42
+ */
43
+ interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
44
+ size?: number | string;
45
+ }
46
+ /**
47
+ * Magicko3DotsMore icon component
48
+ * @example
49
+ * ```tsx
50
+ * import { Magicko3DotsMore } from 'magick-icons';
51
+ *
52
+ * <Magicko3DotsMore size={24} className="text-blue-500" />
53
+ * ```
54
+ */
55
+ declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
+
57
+ /**
58
+ * Props for the MagickoArchive icon component
59
+ * @property {number | string} [size] - Size of the icon (default: 24)
60
+ */
61
+ interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {
62
+ size?: number | string;
63
+ }
64
+ /**
65
+ * MagickoArchive icon component
66
+ * @example
67
+ * ```tsx
68
+ * import { MagickoArchive } from 'magick-icons';
69
+ *
70
+ * <MagickoArchive size={24} className="text-blue-500" />
71
+ * ```
72
+ */
73
+ declare const MagickoArchive: React.ForwardRefExoticComponent<Omit<MagickoArchiveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
+
75
+ /**
76
+ * Props for the MagickoChart icon component
77
+ * @property {number | string} [size] - Size of the icon (default: 24)
78
+ */
79
+ interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {
80
+ size?: number | string;
81
+ }
82
+ /**
83
+ * MagickoChart icon component
84
+ * @example
85
+ * ```tsx
86
+ * import { MagickoChart } from 'magick-icons';
87
+ *
88
+ * <MagickoChart size={24} className="text-blue-500" />
89
+ * ```
90
+ */
91
+ declare const MagickoChart: React.ForwardRefExoticComponent<Omit<MagickoChartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
+
93
+ export { Enter, type EnterProps, Frame, type FrameProps, Magicko3DotsMore, type Magicko3DotsMoreProps, MagickoArchive, type MagickoArchiveProps, MagickoChart, type MagickoChartProps };
package/index.js CHANGED
@@ -30,27 +30,78 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
30
30
  // dist/index.ts
31
31
  var index_exports = {};
32
32
  __export(index_exports, {
33
- Frame: () => Frame
33
+ Enter: () => Enter,
34
+ Frame: () => Frame,
35
+ Magicko3DotsMore: () => Magicko3DotsMore,
36
+ MagickoArchive: () => MagickoArchive,
37
+ MagickoChart: () => MagickoChart
34
38
  });
35
39
  module.exports = __toCommonJS(index_exports);
36
40
 
37
- // dist/icons/Frame.tsx
41
+ // dist/icons/Enter.tsx
38
42
  var import_react = __toESM(require("react"));
39
43
  var import_jsx_runtime = require("react/jsx-runtime");
40
- var Frame = import_react.default.forwardRef(
44
+ var Enter = import_react.default.forwardRef(
45
+ ({ size, ...props }, ref) => {
46
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#000", d: "M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0" }) });
47
+ }
48
+ );
49
+ Enter.displayName = "Enter";
50
+
51
+ // dist/icons/Frame.tsx
52
+ var import_react2 = __toESM(require("react"));
53
+ var import_jsx_runtime2 = require("react/jsx-runtime");
54
+ var Frame = import_react2.default.forwardRef(
41
55
  ({ size, ...props }, ref) => {
42
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: [
43
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { fill: "#000", "clip-path": "url(#clip0_7_897)", children: [
44
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z" }),
45
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { "fill-rule": "evenodd", d: "M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637", "clip-rule": "evenodd" })
56
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: [
57
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { fill: "#000", "clip-path": "url(#clip0_7_897)", children: [
58
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z" }),
59
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { "fill-rule": "evenodd", d: "M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637", "clip-rule": "evenodd" })
46
60
  ] }),
47
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("clipPath", { id: "clip0_7_897", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
61
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("clipPath", { id: "clip0_7_897", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
48
62
  ] });
49
63
  }
50
64
  );
51
65
  Frame.displayName = "Frame";
66
+
67
+ // dist/icons/Magicko3DotsMore.tsx
68
+ var import_react3 = __toESM(require("react"));
69
+ var import_jsx_runtime3 = require("react/jsx-runtime");
70
+ var Magicko3DotsMore = import_react3.default.forwardRef(
71
+ ({ size, ...props }, ref) => {
72
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "#1e293b", d: "M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0" }) });
73
+ }
74
+ );
75
+ Magicko3DotsMore.displayName = "Magicko3DotsMore";
76
+
77
+ // dist/icons/MagickoArchive.tsx
78
+ var import_react4 = __toESM(require("react"));
79
+ var import_jsx_runtime4 = require("react/jsx-runtime");
80
+ var MagickoArchive = import_react4.default.forwardRef(
81
+ ({ size, ...props }, ref) => {
82
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18", height: "18", fill: "none", viewBox: "0 0 18 18", children: [
83
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { fill: "#1e293b", d: "M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125" }),
84
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { fill: "#1e293b", d: "M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625" })
85
+ ] });
86
+ }
87
+ );
88
+ MagickoArchive.displayName = "MagickoArchive";
89
+
90
+ // dist/icons/MagickoChart.tsx
91
+ var import_react5 = __toESM(require("react"));
92
+ var import_jsx_runtime5 = require("react/jsx-runtime");
93
+ var MagickoChart = import_react5.default.forwardRef(
94
+ ({ size, ...props }, ref) => {
95
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { fill: "#1e293b", d: "M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041" }) });
96
+ }
97
+ );
98
+ MagickoChart.displayName = "MagickoChart";
52
99
  // Annotate the CommonJS export names for ESM import in node:
53
100
  0 && (module.exports = {
54
- Frame
101
+ Enter,
102
+ Frame,
103
+ Magicko3DotsMore,
104
+ MagickoArchive,
105
+ MagickoChart
55
106
  });
56
107
  //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts","icons/Frame.tsx"],"sourcesContent":["// Auto-generated file - do not edit manually\n/**\n * @packageDocumentation\n * Magick Icons - SVG icon components for React\n * \n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * function MyComponent() {\n * return <Frame size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * Frame icon component and its props type\n * @see {@link FrameProps} for available props\n */\nexport { Frame, type FrameProps } from './icons/Frame';\n","import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBmF;AAH9F,IAAM,QAAQ,aAAAA,QAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,6CAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY;AAAA,mDAAC,OAAE,MAAK,QAAO,aAAU,qBAAoB;AAAA,oDAAC,UAAK,GAAE,0NAAwN;AAAA,QAAE,4CAAC,UAAK,aAAU,WAAU,GAAE,yIAAwI,aAAU,WAAS;AAAA,SAAE;AAAA,MAAI,4CAAC,UAAK,sDAAC,cAAS,IAAG,eAAc,sDAAC,UAAK,MAAK,QAAO,GAAE,iBAAe,GAAE,GAAW;AAAA,OAAO;AAAA,EAEvoB;AACF;AAEA,MAAM,cAAc;","names":["React"]}
1
+ {"version":3,"sources":["index.ts","icons/Enter.tsx","icons/Frame.tsx","icons/Magicko3DotsMore.tsx","icons/MagickoArchive.tsx","icons/MagickoChart.tsx"],"sourcesContent":["// Auto-generated file - do not edit manually\n/**\n * @packageDocumentation\n * Magick Icons - SVG icon components for React\n * \n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * function MyComponent() {\n * return <Enter size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * Enter icon component and its props type\n * @see {@link EnterProps} for available props\n */\nexport { Enter, type EnterProps } from './icons/Enter';\n\n/**\n * Frame icon component and its props type\n * @see {@link FrameProps} for available props\n */\nexport { Frame, type FrameProps } from './icons/Frame';\n\n/**\n * Magicko3DotsMore icon component and its props type\n * @see {@link Magicko3DotsMoreProps} for available props\n */\nexport { Magicko3DotsMore, type Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';\n\n/**\n * MagickoArchive icon component and its props type\n * @see {@link MagickoArchiveProps} for available props\n */\nexport { MagickoArchive, type MagickoArchiveProps } from './icons/MagickoArchive';\n\n/**\n * MagickoChart icon component and its props type\n * @see {@link MagickoChartProps} for available props\n */\nexport { MagickoChart, type MagickoChartProps } from './icons/MagickoChart';\n","import React from 'react';\n\n/**\n * Props for the Enter icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface EnterProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Enter icon component\n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * <Enter size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Enter = React.forwardRef<SVGSVGElement, EnterProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0\"/></svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n","import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n","import React from 'react';\n\n/**\n * Props for the Magicko3DotsMore icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Magicko3DotsMore icon component\n * @example\n * ```tsx\n * import { Magicko3DotsMore } from 'magick-icons';\n * \n * <Magicko3DotsMore size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0\"/></svg>\n );\n }\n);\n\nMagicko3DotsMore.displayName = 'Magicko3DotsMore';\n","import React from 'react';\n\n/**\n * Props for the MagickoArchive icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoArchive icon component\n * @example\n * ```tsx\n * import { MagickoArchive } from 'magick-icons';\n * \n * <MagickoArchive size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoArchive = React.forwardRef<SVGSVGElement, MagickoArchiveProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" fill=\"none\" viewBox=\"0 0 18 18\"><path fill=\"#1e293b\" d=\"M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125\"/><path fill=\"#1e293b\" d=\"M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625\"/></svg>\n );\n }\n);\n\nMagickoArchive.displayName = 'MagickoArchive';\n","import React from 'react';\n\n/**\n * Props for the MagickoChart icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoChart icon component\n * @example\n * ```tsx\n * import { MagickoChart } from 'magick-icons';\n * \n * <MagickoChart size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoChart = React.forwardRef<SVGSVGElement, MagickoChartProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041\"/></svg>\n );\n }\n);\n\nMagickoChart.displayName = 'MagickoChart';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBmF;AAH9F,IAAM,QAAQ,aAAAA,QAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,4CAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY,sDAAC,UAAK,MAAK,QAAO,GAAE,gNAA8M,GAAE;AAAA,EAEvU;AACF;AAEA,MAAM,cAAc;;;AC3BpB,IAAAC,gBAAkB;AAsBmF,IAAAC,sBAAA;AAH9F,IAAM,QAAQ,cAAAC,QAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,8CAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY;AAAA,oDAAC,OAAE,MAAK,QAAO,aAAU,qBAAoB;AAAA,qDAAC,UAAK,GAAE,0NAAwN;AAAA,QAAE,6CAAC,UAAK,aAAU,WAAU,GAAE,yIAAwI,aAAU,WAAS;AAAA,SAAE;AAAA,MAAI,6CAAC,UAAK,uDAAC,cAAS,IAAG,eAAc,uDAAC,UAAK,MAAK,QAAO,GAAE,iBAAe,GAAE,GAAW;AAAA,OAAO;AAAA,EAEvoB;AACF;AAEA,MAAM,cAAc;;;AC3BpB,IAAAC,gBAAkB;AAsBmF,IAAAC,sBAAA;AAH9F,IAAM,mBAAmB,cAAAC,QAAM;AAAA,EACpC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,6CAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY,uDAAC,UAAK,MAAK,WAAU,GAAE,qGAAmG,GAAE;AAAA,EAE/N;AACF;AAEA,iBAAiB,cAAc;;;AC3B/B,IAAAC,gBAAkB;AAsBZ,IAAAC,sBAAA;AAHC,IAAM,iBAAiB,cAAAC,QAAM;AAAA,EAClC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,8CAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY;AAAA,mDAAC,UAAK,MAAK,WAAU,GAAE,kQAAgQ;AAAA,MAAE,6CAAC,UAAK,MAAK,WAAU,GAAE,4aAA0a;AAAA,OAAE;AAAA,EAE/zB;AACF;AAEA,eAAe,cAAc;;;AC3B7B,IAAAC,gBAAkB;AAsBmF,IAAAC,sBAAA;AAH9F,IAAM,eAAe,cAAAC,QAAM;AAAA,EAChC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,6CAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY,uDAAC,UAAK,MAAK,WAAU,GAAE,utBAAqtB,GAAE;AAAA,EAEj1B;AACF;AAEA,aAAa,cAAc;","names":["React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React"]}
package/index.mjs CHANGED
@@ -1,19 +1,66 @@
1
- // dist/icons/Frame.tsx
1
+ // dist/icons/Enter.tsx
2
2
  import React from "react";
3
- import { jsx, jsxs } from "react/jsx-runtime";
4
- var Frame = React.forwardRef(
3
+ import { jsx } from "react/jsx-runtime";
4
+ var Enter = React.forwardRef(
5
+ ({ size, ...props }, ref) => {
6
+ return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { fill: "#000", d: "M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0" }) });
7
+ }
8
+ );
9
+ Enter.displayName = "Enter";
10
+
11
+ // dist/icons/Frame.tsx
12
+ import React2 from "react";
13
+ import { jsx as jsx2, jsxs } from "react/jsx-runtime";
14
+ var Frame = React2.forwardRef(
5
15
  ({ size, ...props }, ref) => {
6
16
  return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: [
7
17
  /* @__PURE__ */ jsxs("g", { fill: "#000", "clip-path": "url(#clip0_7_897)", children: [
8
- /* @__PURE__ */ jsx("path", { d: "M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z" }),
9
- /* @__PURE__ */ jsx("path", { "fill-rule": "evenodd", d: "M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637", "clip-rule": "evenodd" })
18
+ /* @__PURE__ */ jsx2("path", { d: "M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z" }),
19
+ /* @__PURE__ */ jsx2("path", { "fill-rule": "evenodd", d: "M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637", "clip-rule": "evenodd" })
10
20
  ] }),
11
- /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "clip0_7_897", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
21
+ /* @__PURE__ */ jsx2("defs", { children: /* @__PURE__ */ jsx2("clipPath", { id: "clip0_7_897", children: /* @__PURE__ */ jsx2("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
12
22
  ] });
13
23
  }
14
24
  );
15
25
  Frame.displayName = "Frame";
26
+
27
+ // dist/icons/Magicko3DotsMore.tsx
28
+ import React3 from "react";
29
+ import { jsx as jsx3 } from "react/jsx-runtime";
30
+ var Magicko3DotsMore = React3.forwardRef(
31
+ ({ size, ...props }, ref) => {
32
+ return /* @__PURE__ */ jsx3("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ jsx3("path", { fill: "#1e293b", d: "M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0" }) });
33
+ }
34
+ );
35
+ Magicko3DotsMore.displayName = "Magicko3DotsMore";
36
+
37
+ // dist/icons/MagickoArchive.tsx
38
+ import React4 from "react";
39
+ import { jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
40
+ var MagickoArchive = React4.forwardRef(
41
+ ({ size, ...props }, ref) => {
42
+ return /* @__PURE__ */ jsxs2("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18", height: "18", fill: "none", viewBox: "0 0 18 18", children: [
43
+ /* @__PURE__ */ jsx4("path", { fill: "#1e293b", d: "M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125" }),
44
+ /* @__PURE__ */ jsx4("path", { fill: "#1e293b", d: "M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625" })
45
+ ] });
46
+ }
47
+ );
48
+ MagickoArchive.displayName = "MagickoArchive";
49
+
50
+ // dist/icons/MagickoChart.tsx
51
+ import React5 from "react";
52
+ import { jsx as jsx5 } from "react/jsx-runtime";
53
+ var MagickoChart = React5.forwardRef(
54
+ ({ size, ...props }, ref) => {
55
+ return /* @__PURE__ */ jsx5("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", children: /* @__PURE__ */ jsx5("path", { fill: "#1e293b", d: "M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041" }) });
56
+ }
57
+ );
58
+ MagickoChart.displayName = "MagickoChart";
16
59
  export {
17
- Frame
60
+ Enter,
61
+ Frame,
62
+ Magicko3DotsMore,
63
+ MagickoArchive,
64
+ MagickoChart
18
65
  };
19
66
  //# sourceMappingURL=index.mjs.map
package/index.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["icons/Frame.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBmF,SAA6C,KAA7C;AAH9F,IAAM,QAAQ,MAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,qBAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY;AAAA,2BAAC,OAAE,MAAK,QAAO,aAAU,qBAAoB;AAAA,4BAAC,UAAK,GAAE,0NAAwN;AAAA,QAAE,oBAAC,UAAK,aAAU,WAAU,GAAE,yIAAwI,aAAU,WAAS;AAAA,SAAE;AAAA,MAAI,oBAAC,UAAK,8BAAC,cAAS,IAAG,eAAc,8BAAC,UAAK,MAAK,QAAO,GAAE,iBAAe,GAAE,GAAW;AAAA,OAAO;AAAA,EAEvoB;AACF;AAEA,MAAM,cAAc;","names":[]}
1
+ {"version":3,"sources":["icons/Enter.tsx","icons/Frame.tsx","icons/Magicko3DotsMore.tsx","icons/MagickoArchive.tsx","icons/MagickoChart.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the Enter icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface EnterProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Enter icon component\n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * <Enter size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Enter = React.forwardRef<SVGSVGElement, EnterProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0\"/></svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n","import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n","import React from 'react';\n\n/**\n * Props for the Magicko3DotsMore icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Magicko3DotsMore icon component\n * @example\n * ```tsx\n * import { Magicko3DotsMore } from 'magick-icons';\n * \n * <Magicko3DotsMore size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M5 10a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0\"/></svg>\n );\n }\n);\n\nMagicko3DotsMore.displayName = 'Magicko3DotsMore';\n","import React from 'react';\n\n/**\n * Props for the MagickoArchive icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoArchiveProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoArchive icon component\n * @example\n * ```tsx\n * import { MagickoArchive } from 'magick-icons';\n * \n * <MagickoArchive size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoArchive = React.forwardRef<SVGSVGElement, MagickoArchiveProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"18\" height=\"18\" fill=\"none\" viewBox=\"0 0 18 18\"><path fill=\"#1e293b\" d=\"M12.75 17.959h-7.5c-2.75 0-3.125-1.5-3.125-3.125V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.45.25 1.875 1.875 1.875h7.5c1.625 0 1.875-.425 1.875-1.875V7.517a.63.63 0 0 1 .625-.625.63.63 0 0 1 .625.625v7.317c0 1.625-.375 3.125-3.125 3.125\"/><path fill=\"#1e293b\" d=\"M14.833 7.958H3.167C1.15 7.958.042 6.85.042 4.833V3.167C.042 1.15 1.15.042 3.167.042h11.666c2.017 0 3.125 1.108 3.125 3.125v1.666c0 2.017-1.108 3.125-3.125 3.125M3.167 1.292c-1.317 0-1.875.558-1.875 1.875v1.666c0 1.317.558 1.875 1.875 1.875h11.666c1.317 0 1.875-.558 1.875-1.875V3.167c0-1.317-.558-1.875-1.875-1.875zm7.35 10H7.483a.63.63 0 0 1-.625-.625.63.63 0 0 1 .625-.625h3.034a.63.63 0 0 1 .625.625.63.63 0 0 1-.625.625\"/></svg>\n );\n }\n);\n\nMagickoArchive.displayName = 'MagickoArchive';\n","import React from 'react';\n\n/**\n * Props for the MagickoChart icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface MagickoChartProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * MagickoChart icon component\n * @example\n * ```tsx\n * import { MagickoChart } from 'magick-icons';\n * \n * <MagickoChart size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const MagickoChart = React.forwardRef<SVGSVGElement, MagickoChartProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" fill=\"none\" viewBox=\"0 0 20 20\"><path fill=\"#1e293b\" d=\"M3.333 18.958a2.29 2.29 0 0 1-2.291-2.291V8.333a2.29 2.29 0 0 1 2.291-2.291 2.29 2.29 0 0 1 2.292 2.291v8.334a2.29 2.29 0 0 1-2.292 2.291m0-11.666a1.04 1.04 0 0 0-1.041 1.041v8.334a1.042 1.042 0 0 0 2.083 0V8.333c0-.575-.467-1.041-1.042-1.041M10 18.958a2.29 2.29 0 0 1-2.292-2.291V3.333A2.29 2.29 0 0 1 10 1.042a2.29 2.29 0 0 1 2.292 2.291v13.334A2.29 2.29 0 0 1 10 18.958m0-16.666c-.575 0-1.042.466-1.042 1.041v13.334a1.042 1.042 0 0 0 2.084 0V3.333c0-.575-.467-1.041-1.042-1.041m6.667 16.666a2.29 2.29 0 0 1-2.292-2.291v-3.334a2.29 2.29 0 0 1 2.292-2.291 2.29 2.29 0 0 1 2.291 2.291v3.334a2.29 2.29 0 0 1-2.291 2.291m0-6.666c-.575 0-1.042.466-1.042 1.041v3.334a1.042 1.042 0 0 0 2.083 0v-3.334a1.04 1.04 0 0 0-1.041-1.041\"/></svg>\n );\n }\n);\n\nMagickoChart.displayName = 'MagickoChart';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBmF;AAH9F,IAAM,QAAQ,MAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,oBAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY,8BAAC,UAAK,MAAK,QAAO,GAAE,gNAA8M,GAAE;AAAA,EAEvU;AACF;AAEA,MAAM,cAAc;;;AC3BpB,OAAOA,YAAW;AAsBmF,SAA6C,OAAAC,MAA7C;AAH9F,IAAM,QAAQD,OAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,qBAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY;AAAA,2BAAC,OAAE,MAAK,QAAO,aAAU,qBAAoB;AAAA,wBAAAC,KAAC,UAAK,GAAE,0NAAwN;AAAA,QAAE,gBAAAA,KAAC,UAAK,aAAU,WAAU,GAAE,yIAAwI,aAAU,WAAS;AAAA,SAAE;AAAA,MAAI,gBAAAA,KAAC,UAAK,0BAAAA,KAAC,cAAS,IAAG,eAAc,0BAAAA,KAAC,UAAK,MAAK,QAAO,GAAE,iBAAe,GAAE,GAAW;AAAA,OAAO;AAAA,EAEvoB;AACF;AAEA,MAAM,cAAc;;;AC3BpB,OAAOC,YAAW;AAsBmF,gBAAAC,YAAA;AAH9F,IAAM,mBAAmBD,OAAM;AAAA,EACpC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,gBAAAC,KAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY,0BAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,qGAAmG,GAAE;AAAA,EAE/N;AACF;AAEA,iBAAiB,cAAc;;;AC3B/B,OAAOC,YAAW;AAsBZ,SAA+F,OAAAC,MAA/F,QAAAC,aAAA;AAHC,IAAM,iBAAiBF,OAAM;AAAA,EAClC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,gBAAAE,MAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY;AAAA,sBAAAD,KAAC,UAAK,MAAK,WAAU,GAAE,kQAAgQ;AAAA,MAAE,gBAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,4aAA0a;AAAA,OAAE;AAAA,EAE/zB;AACF;AAEA,eAAe,cAAc;;;AC3B7B,OAAOE,YAAW;AAsBmF,gBAAAC,YAAA;AAH9F,IAAM,eAAeD,OAAM;AAAA,EAChC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,gBAAAC,KAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY,0BAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,utBAAqtB,GAAE;AAAA,EAEj1B;AACF;AAEA,aAAa,cAAc;","names":["React","jsx","React","jsx","React","jsx","jsxs","React","jsx"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.43",
3
+ "version": "0.1.45",
4
4
  "description": "Icon library for company projects",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",