magick-icons 0.1.91 → 0.1.93

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/README.md ADDED
@@ -0,0 +1,116 @@
1
+ # Magick Icons
2
+
3
+ SVG React icon components with TypeScript support.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install magick-icons
9
+ # or
10
+ pnpm add magick-icons
11
+ # or
12
+ yarn add magick-icons
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```tsx
18
+ import { ChatFullScreen, Finance } from 'magick-icons';
19
+
20
+ function App() {
21
+ return (
22
+ <div>
23
+ <ChatFullScreen size={24} className="text-blue-500" />
24
+ <Finance size={32} color="red" />
25
+ </div>
26
+ );
27
+ }
28
+ ```
29
+
30
+ ## Available Icons
31
+
32
+ - `ChatFullScreen`
33
+ - `Finance`
34
+
35
+ ## Props
36
+
37
+ All icons accept standard SVG props plus:
38
+
39
+ ```tsx
40
+ interface IconProps extends React.SVGProps<SVGSVGElement> {
41
+ size?: number | string; // Default: 24
42
+ }
43
+ ```
44
+
45
+ ## Examples
46
+
47
+ ### Basic Usage
48
+ ```tsx
49
+ <ChatFullScreen />
50
+ ```
51
+
52
+ ### Custom Size
53
+ ```tsx
54
+ <ChatFullScreen size={48} />
55
+ <ChatFullScreen size="2rem" />
56
+ ```
57
+
58
+ ### Custom Styling
59
+ ```tsx
60
+ <ChatFullScreen
61
+ className="text-blue-500 hover:text-blue-700"
62
+ style={{ cursor: 'pointer' }}
63
+ />
64
+ ```
65
+
66
+ ### With Props
67
+ ```tsx
68
+ <Finance
69
+ size={32}
70
+ color="currentColor"
71
+ onClick={() => console.log('clicked')}
72
+ aria-label="Finance icon"
73
+ />
74
+ ```
75
+
76
+ ## TypeScript
77
+
78
+ Full TypeScript support with prop types:
79
+
80
+ ```tsx
81
+ import { ChatFullScreen, ChatFullScreenProps } from 'magick-icons';
82
+
83
+ const props: ChatFullScreenProps = {
84
+ size: 24,
85
+ className: "icon",
86
+ };
87
+
88
+ <ChatFullScreen {...props} />
89
+ ```
90
+
91
+ ## IDE Autocomplete
92
+
93
+ ### VS Code
94
+ Enable auto-imports in settings:
95
+ - `typescript.suggest.autoImports`: true
96
+ - `javascript.suggest.autoImports`: true
97
+
98
+ Then type `<ChatFullScreen` and accept the suggestion to auto-import.
99
+
100
+ ### Manual Import
101
+ Type the import first for autocomplete:
102
+ ```tsx
103
+ import { ChatFullScreen } from 'magick-icons';
104
+ // Now typing <Chat will autocomplete
105
+ ```
106
+
107
+ ## Updating
108
+
109
+ To get the latest icons:
110
+ ```bash
111
+ pnpm add magick-icons@latest
112
+ ```
113
+
114
+ ## License
115
+
116
+ MIT
package/index.d.mts CHANGED
@@ -1,2 +1,39 @@
1
+ import React from 'react';
1
2
 
2
- export { }
3
+ /**
4
+ * Props for the BackwardItem1 icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ interface BackwardItem1Props extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+ /**
11
+ * BackwardItem1 icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { BackwardItem1 } from 'magick-icons';
15
+ *
16
+ * <BackwardItem1 size={24} className="text-blue-500" strokeWidth={2} />
17
+ * ```
18
+ */
19
+ declare const BackwardItem1: React.ForwardRefExoticComponent<Omit<BackwardItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
+
21
+ /**
22
+ * Props for the BatteryCharging1 icon component
23
+ * @property {number | string} [size] - Size of the icon (default: 24)
24
+ */
25
+ interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {
26
+ size?: number | string;
27
+ }
28
+ /**
29
+ * BatteryCharging1 icon component
30
+ * @example
31
+ * ```tsx
32
+ * import { BatteryCharging1 } from 'magick-icons';
33
+ *
34
+ * <BatteryCharging1 size={24} className="text-blue-500" strokeWidth={2} />
35
+ * ```
36
+ */
37
+ declare const BatteryCharging1: React.ForwardRefExoticComponent<Omit<BatteryCharging1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
+
39
+ export { BackwardItem1, type BackwardItem1Props, BatteryCharging1, type BatteryCharging1Props };
package/index.d.ts CHANGED
@@ -1,2 +1,39 @@
1
+ import React from 'react';
1
2
 
2
- export { }
3
+ /**
4
+ * Props for the BackwardItem1 icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ interface BackwardItem1Props extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+ /**
11
+ * BackwardItem1 icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { BackwardItem1 } from 'magick-icons';
15
+ *
16
+ * <BackwardItem1 size={24} className="text-blue-500" strokeWidth={2} />
17
+ * ```
18
+ */
19
+ declare const BackwardItem1: React.ForwardRefExoticComponent<Omit<BackwardItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
+
21
+ /**
22
+ * Props for the BatteryCharging1 icon component
23
+ * @property {number | string} [size] - Size of the icon (default: 24)
24
+ */
25
+ interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {
26
+ size?: number | string;
27
+ }
28
+ /**
29
+ * BatteryCharging1 icon component
30
+ * @example
31
+ * ```tsx
32
+ * import { BatteryCharging1 } from 'magick-icons';
33
+ *
34
+ * <BatteryCharging1 size={24} className="text-blue-500" strokeWidth={2} />
35
+ * ```
36
+ */
37
+ declare const BatteryCharging1: React.ForwardRefExoticComponent<Omit<BatteryCharging1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
+
39
+ export { BackwardItem1, type BackwardItem1Props, BatteryCharging1, type BatteryCharging1Props };
package/index.js CHANGED
@@ -1,2 +1,68 @@
1
1
  "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // dist/index.ts
31
+ var index_exports = {};
32
+ __export(index_exports, {
33
+ BackwardItem1: () => BackwardItem1,
34
+ BatteryCharging1: () => BatteryCharging1
35
+ });
36
+ module.exports = __toCommonJS(index_exports);
37
+
38
+ // dist/icons/BackwardItem1.tsx
39
+ var import_react = __toESM(require("react"));
40
+ var import_jsx_runtime = require("react/jsx-runtime");
41
+ var BackwardItem1 = import_react.default.forwardRef(
42
+ ({ size, ...props }, ref) => {
43
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M18.85 11.75h-2.7c-2.66 0-3.9-1.24-3.9-3.9v-2.7c0-2.66 1.24-3.9 3.9-3.9h2.7c2.66 0 3.9 1.24 3.9 3.9v2.7c0 2.66-1.24 3.9-3.9 3.9m-2.7-9c-1.84 0-2.4.56-2.4 2.4v2.7c0 1.84.56 2.4 2.4 2.4h2.7c1.84 0 2.4-.56 2.4-2.4v-2.7c0-1.84-.56-2.4-2.4-2.4zM7.85 22.75h-2.7c-2.66 0-3.9-1.24-3.9-3.9v-2.7c0-2.66 1.24-3.9 3.9-3.9h2.7c2.66 0 3.9 1.24 3.9 3.9v2.7c0 2.66-1.24 3.9-3.9 3.9m-2.7-9c-1.84 0-2.4.56-2.4 2.4v2.7c0 1.84.56 2.4 2.4 2.4h2.7c1.84 0 2.4-.56 2.4-2.4v-2.7c0-1.84-.56-2.4-2.4-2.4z" }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M13.62 18.13H11c-.41 0-.75-.34-.75-.75v-1.23c0-1.84-.56-2.4-2.4-2.4H6.62c-.41 0-.75-.34-.75-.75v-2.62c0-3.12 1.39-4.51 4.51-4.51H13c.41 0 .75.34.75.75v1.23c0 1.84.56 2.4 2.4 2.4h1.23c.41 0 .75.34.75.75v2.62c0 3.12-1.39 4.51-4.51 4.51m-1.87-1.5h1.87c2.28 0 3.01-.73 3.01-3.01v-1.87h-.48c-2.66 0-3.9-1.24-3.9-3.9v-.48h-1.87c-2.28 0-3.01.73-3.01 3.01v1.87h.48c2.66 0 3.9 1.24 3.9 3.9z" })
46
+ ] });
47
+ }
48
+ );
49
+ BackwardItem1.displayName = "BackwardItem1";
50
+
51
+ // dist/icons/BatteryCharging1.tsx
52
+ var import_react2 = __toESM(require("react"));
53
+ var import_jsx_runtime2 = require("react/jsx-runtime");
54
+ var BatteryCharging1 = import_react2.default.forwardRef(
55
+ ({ size, ...props }, ref) => {
56
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
57
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M20.5 15.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.59 0 .72-.09.73-.09.02-.06.02-.41.02-.66v-2c0-.25 0-.59-.04-.68-.01.01-.16-.07-.71-.07-.41 0-.75-.34-.75-.75s.34-.75.75-.75c2.08 0 2.25 1.02 2.25 2.25v2c0 1.23-.17 2.25-2.25 2.25M10 16.75c-.17 0-.35-.06-.49-.18a.756.756 0 0 1-.08-1.06l2.08-2.43c.03-.09 0-.17-.02-.21a.24.24 0 0 0-.22-.12h-2.3c-.63 0-1.2-.33-1.52-.87s-.32-1.2 0-1.75L9.4 7.55a.75.75 0 0 1 1.2.9l-1.89 2.5c-.01.03.03.12.05.17.03.05.09.12.22.12h2.3c.63 0 1.2.33 1.52.87s.32 1.2 0 1.75c-.02.04-.05.08-.08.11l-2.14 2.5c-.16.19-.37.28-.58.28" }),
58
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M7 19.75c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75.41 0 .75.34.75.75s-.34.75-.75.75c-3.57 0-4.25.68-4.25 4.25v4c0 3.57.68 4.25 4.25 4.25.41 0 .75.34.75.75s-.34.75-.75.75M13 19.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c3.57 0 4.25-.68 4.25-4.25v-4c0-3.57-.68-4.25-4.25-4.25-.41 0-.75-.34-.75-.75s.34-.75.75-.75c4.41 0 5.75 1.34 5.75 5.75v4c0 4.41-1.34 5.75-5.75 5.75" })
59
+ ] });
60
+ }
61
+ );
62
+ BatteryCharging1.displayName = "BatteryCharging1";
63
+ // Annotate the CommonJS export names for ESM import in node:
64
+ 0 && (module.exports = {
65
+ BackwardItem1,
66
+ BatteryCharging1
67
+ });
2
68
  //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
1
+ {"version":3,"sources":["index.ts","icons/BackwardItem1.tsx","icons/BatteryCharging1.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 { BackwardItem1 } from 'magick-icons';\n * \n * function MyComponent() {\n * return <BackwardItem1 size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * BackwardItem1 icon component and its props type\n * @see {@link BackwardItem1Props} for available props\n */\nexport { BackwardItem1, type BackwardItem1Props } from './icons/BackwardItem1';\n\n/**\n * BatteryCharging1 icon component and its props type\n * @see {@link BatteryCharging1Props} for available props\n */\nexport { BatteryCharging1, type BatteryCharging1Props } from './icons/BatteryCharging1';\n","import React from 'react';\n\n/**\n * Props for the BackwardItem1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface BackwardItem1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * BackwardItem1 icon component\n * @example\n * ```tsx\n * import { BackwardItem1 } from 'magick-icons';\n * \n * <BackwardItem1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const BackwardItem1 = React.forwardRef<SVGSVGElement, BackwardItem1Props>(\n ({ size, ...props }, ref) => {\n return (\n <svg ref={ref} xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\" {...props}><path fill=\"#1e293b\" d=\"M18.85 11.75h-2.7c-2.66 0-3.9-1.24-3.9-3.9v-2.7c0-2.66 1.24-3.9 3.9-3.9h2.7c2.66 0 3.9 1.24 3.9 3.9v2.7c0 2.66-1.24 3.9-3.9 3.9m-2.7-9c-1.84 0-2.4.56-2.4 2.4v2.7c0 1.84.56 2.4 2.4 2.4h2.7c1.84 0 2.4-.56 2.4-2.4v-2.7c0-1.84-.56-2.4-2.4-2.4zM7.85 22.75h-2.7c-2.66 0-3.9-1.24-3.9-3.9v-2.7c0-2.66 1.24-3.9 3.9-3.9h2.7c2.66 0 3.9 1.24 3.9 3.9v2.7c0 2.66-1.24 3.9-3.9 3.9m-2.7-9c-1.84 0-2.4.56-2.4 2.4v2.7c0 1.84.56 2.4 2.4 2.4h2.7c1.84 0 2.4-.56 2.4-2.4v-2.7c0-1.84-.56-2.4-2.4-2.4z\"/><path fill=\"#1e293b\" d=\"M13.62 18.13H11c-.41 0-.75-.34-.75-.75v-1.23c0-1.84-.56-2.4-2.4-2.4H6.62c-.41 0-.75-.34-.75-.75v-2.62c0-3.12 1.39-4.51 4.51-4.51H13c.41 0 .75.34.75.75v1.23c0 1.84.56 2.4 2.4 2.4h1.23c.41 0 .75.34.75.75v2.62c0 3.12-1.39 4.51-4.51 4.51m-1.87-1.5h1.87c2.28 0 3.01-.73 3.01-3.01v-1.87h-.48c-2.66 0-3.9-1.24-3.9-3.9v-.48h-1.87c-2.28 0-3.01.73-3.01 3.01v1.87h.48c2.66 0 3.9 1.24 3.9 3.9z\"/></svg>\n );\n }\n);\n\nBackwardItem1.displayName = 'BackwardItem1';\n","import React from 'react';\n\n/**\n * Props for the BatteryCharging1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * BatteryCharging1 icon component\n * @example\n * ```tsx\n * import { BatteryCharging1 } from 'magick-icons';\n * \n * <BatteryCharging1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const BatteryCharging1 = React.forwardRef<SVGSVGElement, BatteryCharging1Props>(\n ({ size, ...props }, ref) => {\n return (\n <svg ref={ref} xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\" {...props}><path fill=\"#1e293b\" d=\"M20.5 15.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.59 0 .72-.09.73-.09.02-.06.02-.41.02-.66v-2c0-.25 0-.59-.04-.68-.01.01-.16-.07-.71-.07-.41 0-.75-.34-.75-.75s.34-.75.75-.75c2.08 0 2.25 1.02 2.25 2.25v2c0 1.23-.17 2.25-2.25 2.25M10 16.75c-.17 0-.35-.06-.49-.18a.756.756 0 0 1-.08-1.06l2.08-2.43c.03-.09 0-.17-.02-.21a.24.24 0 0 0-.22-.12h-2.3c-.63 0-1.2-.33-1.52-.87s-.32-1.2 0-1.75L9.4 7.55a.75.75 0 0 1 1.2.9l-1.89 2.5c-.01.03.03.12.05.17.03.05.09.12.22.12h2.3c.63 0 1.2.33 1.52.87s.32 1.2 0 1.75c-.02.04-.05.08-.08.11l-2.14 2.5c-.16.19-.37.28-.58.28\"/><path fill=\"#1e293b\" d=\"M7 19.75c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75.41 0 .75.34.75.75s-.34.75-.75.75c-3.57 0-4.25.68-4.25 4.25v4c0 3.57.68 4.25 4.25 4.25.41 0 .75.34.75.75s-.34.75-.75.75M13 19.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c3.57 0 4.25-.68 4.25-4.25v-4c0-3.57-.68-4.25-4.25-4.25-.41 0-.75-.34-.75-.75s.34-.75.75-.75c4.41 0 5.75 1.34 5.75 5.75v4c0 4.41-1.34 5.75-5.75 5.75\"/></svg>\n );\n }\n);\n\nBatteryCharging1.displayName = 'BatteryCharging1';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBZ;AAHC,IAAM,gBAAgB,aAAAA,QAAM;AAAA,EACjC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,6CAAC,SAAI,KAAU,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAa,GAAG,OAAO;AAAA,kDAAC,UAAK,MAAK,WAAU,GAAE,ieAA+d;AAAA,MAAE,4CAAC,UAAK,MAAK,WAAU,GAAE,iYAA+X;AAAA,OAAE;AAAA,EAExgC;AACF;AAEA,cAAc,cAAc;;;AC3B5B,IAAAC,gBAAkB;AAsBZ,IAAAC,sBAAA;AAHC,IAAM,mBAAmB,cAAAC,QAAM;AAAA,EACpC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,8CAAC,SAAI,KAAU,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAa,GAAG,OAAO;AAAA,mDAAC,UAAK,MAAK,WAAU,GAAE,6iBAA2iB;AAAA,MAAE,6CAAC,UAAK,MAAK,WAAU,GAAE,gYAA8X;AAAA,OAAE;AAAA,EAEnlC;AACF;AAEA,iBAAiB,cAAc;","names":["React","import_react","import_jsx_runtime","React"]}
package/index.mjs CHANGED
@@ -1 +1,30 @@
1
+ // dist/icons/BackwardItem1.tsx
2
+ import React from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ var BackwardItem1 = React.forwardRef(
5
+ ({ size, ...props }, ref) => {
6
+ return /* @__PURE__ */ jsxs("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
7
+ /* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M18.85 11.75h-2.7c-2.66 0-3.9-1.24-3.9-3.9v-2.7c0-2.66 1.24-3.9 3.9-3.9h2.7c2.66 0 3.9 1.24 3.9 3.9v2.7c0 2.66-1.24 3.9-3.9 3.9m-2.7-9c-1.84 0-2.4.56-2.4 2.4v2.7c0 1.84.56 2.4 2.4 2.4h2.7c1.84 0 2.4-.56 2.4-2.4v-2.7c0-1.84-.56-2.4-2.4-2.4zM7.85 22.75h-2.7c-2.66 0-3.9-1.24-3.9-3.9v-2.7c0-2.66 1.24-3.9 3.9-3.9h2.7c2.66 0 3.9 1.24 3.9 3.9v2.7c0 2.66-1.24 3.9-3.9 3.9m-2.7-9c-1.84 0-2.4.56-2.4 2.4v2.7c0 1.84.56 2.4 2.4 2.4h2.7c1.84 0 2.4-.56 2.4-2.4v-2.7c0-1.84-.56-2.4-2.4-2.4z" }),
8
+ /* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M13.62 18.13H11c-.41 0-.75-.34-.75-.75v-1.23c0-1.84-.56-2.4-2.4-2.4H6.62c-.41 0-.75-.34-.75-.75v-2.62c0-3.12 1.39-4.51 4.51-4.51H13c.41 0 .75.34.75.75v1.23c0 1.84.56 2.4 2.4 2.4h1.23c.41 0 .75.34.75.75v2.62c0 3.12-1.39 4.51-4.51 4.51m-1.87-1.5h1.87c2.28 0 3.01-.73 3.01-3.01v-1.87h-.48c-2.66 0-3.9-1.24-3.9-3.9v-.48h-1.87c-2.28 0-3.01.73-3.01 3.01v1.87h.48c2.66 0 3.9 1.24 3.9 3.9z" })
9
+ ] });
10
+ }
11
+ );
12
+ BackwardItem1.displayName = "BackwardItem1";
13
+
14
+ // dist/icons/BatteryCharging1.tsx
15
+ import React2 from "react";
16
+ import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
17
+ var BatteryCharging1 = React2.forwardRef(
18
+ ({ size, ...props }, ref) => {
19
+ return /* @__PURE__ */ jsxs2("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
20
+ /* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "M20.5 15.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.59 0 .72-.09.73-.09.02-.06.02-.41.02-.66v-2c0-.25 0-.59-.04-.68-.01.01-.16-.07-.71-.07-.41 0-.75-.34-.75-.75s.34-.75.75-.75c2.08 0 2.25 1.02 2.25 2.25v2c0 1.23-.17 2.25-2.25 2.25M10 16.75c-.17 0-.35-.06-.49-.18a.756.756 0 0 1-.08-1.06l2.08-2.43c.03-.09 0-.17-.02-.21a.24.24 0 0 0-.22-.12h-2.3c-.63 0-1.2-.33-1.52-.87s-.32-1.2 0-1.75L9.4 7.55a.75.75 0 0 1 1.2.9l-1.89 2.5c-.01.03.03.12.05.17.03.05.09.12.22.12h2.3c.63 0 1.2.33 1.52.87s.32 1.2 0 1.75c-.02.04-.05.08-.08.11l-2.14 2.5c-.16.19-.37.28-.58.28" }),
21
+ /* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "M7 19.75c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75.41 0 .75.34.75.75s-.34.75-.75.75c-3.57 0-4.25.68-4.25 4.25v4c0 3.57.68 4.25 4.25 4.25.41 0 .75.34.75.75s-.34.75-.75.75M13 19.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c3.57 0 4.25-.68 4.25-4.25v-4c0-3.57-.68-4.25-4.25-4.25-.41 0-.75-.34-.75-.75s.34-.75.75-.75c4.41 0 5.75 1.34 5.75 5.75v4c0 4.41-1.34 5.75-5.75 5.75" })
22
+ ] });
23
+ }
24
+ );
25
+ BatteryCharging1.displayName = "BatteryCharging1";
26
+ export {
27
+ BackwardItem1,
28
+ BatteryCharging1
29
+ };
1
30
  //# sourceMappingURL=index.mjs.map
package/index.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
1
+ {"version":3,"sources":["icons/BackwardItem1.tsx","icons/BatteryCharging1.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the BackwardItem1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface BackwardItem1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * BackwardItem1 icon component\n * @example\n * ```tsx\n * import { BackwardItem1 } from 'magick-icons';\n * \n * <BackwardItem1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const BackwardItem1 = React.forwardRef<SVGSVGElement, BackwardItem1Props>(\n ({ size, ...props }, ref) => {\n return (\n <svg ref={ref} xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\" {...props}><path fill=\"#1e293b\" d=\"M18.85 11.75h-2.7c-2.66 0-3.9-1.24-3.9-3.9v-2.7c0-2.66 1.24-3.9 3.9-3.9h2.7c2.66 0 3.9 1.24 3.9 3.9v2.7c0 2.66-1.24 3.9-3.9 3.9m-2.7-9c-1.84 0-2.4.56-2.4 2.4v2.7c0 1.84.56 2.4 2.4 2.4h2.7c1.84 0 2.4-.56 2.4-2.4v-2.7c0-1.84-.56-2.4-2.4-2.4zM7.85 22.75h-2.7c-2.66 0-3.9-1.24-3.9-3.9v-2.7c0-2.66 1.24-3.9 3.9-3.9h2.7c2.66 0 3.9 1.24 3.9 3.9v2.7c0 2.66-1.24 3.9-3.9 3.9m-2.7-9c-1.84 0-2.4.56-2.4 2.4v2.7c0 1.84.56 2.4 2.4 2.4h2.7c1.84 0 2.4-.56 2.4-2.4v-2.7c0-1.84-.56-2.4-2.4-2.4z\"/><path fill=\"#1e293b\" d=\"M13.62 18.13H11c-.41 0-.75-.34-.75-.75v-1.23c0-1.84-.56-2.4-2.4-2.4H6.62c-.41 0-.75-.34-.75-.75v-2.62c0-3.12 1.39-4.51 4.51-4.51H13c.41 0 .75.34.75.75v1.23c0 1.84.56 2.4 2.4 2.4h1.23c.41 0 .75.34.75.75v2.62c0 3.12-1.39 4.51-4.51 4.51m-1.87-1.5h1.87c2.28 0 3.01-.73 3.01-3.01v-1.87h-.48c-2.66 0-3.9-1.24-3.9-3.9v-.48h-1.87c-2.28 0-3.01.73-3.01 3.01v1.87h.48c2.66 0 3.9 1.24 3.9 3.9z\"/></svg>\n );\n }\n);\n\nBackwardItem1.displayName = 'BackwardItem1';\n","import React from 'react';\n\n/**\n * Props for the BatteryCharging1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * BatteryCharging1 icon component\n * @example\n * ```tsx\n * import { BatteryCharging1 } from 'magick-icons';\n * \n * <BatteryCharging1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const BatteryCharging1 = React.forwardRef<SVGSVGElement, BatteryCharging1Props>(\n ({ size, ...props }, ref) => {\n return (\n <svg ref={ref} xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\" {...props}><path fill=\"#1e293b\" d=\"M20.5 15.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.59 0 .72-.09.73-.09.02-.06.02-.41.02-.66v-2c0-.25 0-.59-.04-.68-.01.01-.16-.07-.71-.07-.41 0-.75-.34-.75-.75s.34-.75.75-.75c2.08 0 2.25 1.02 2.25 2.25v2c0 1.23-.17 2.25-2.25 2.25M10 16.75c-.17 0-.35-.06-.49-.18a.756.756 0 0 1-.08-1.06l2.08-2.43c.03-.09 0-.17-.02-.21a.24.24 0 0 0-.22-.12h-2.3c-.63 0-1.2-.33-1.52-.87s-.32-1.2 0-1.75L9.4 7.55a.75.75 0 0 1 1.2.9l-1.89 2.5c-.01.03.03.12.05.17.03.05.09.12.22.12h2.3c.63 0 1.2.33 1.52.87s.32 1.2 0 1.75c-.02.04-.05.08-.08.11l-2.14 2.5c-.16.19-.37.28-.58.28\"/><path fill=\"#1e293b\" d=\"M7 19.75c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75.41 0 .75.34.75.75s-.34.75-.75.75c-3.57 0-4.25.68-4.25 4.25v4c0 3.57.68 4.25 4.25 4.25.41 0 .75.34.75.75s-.34.75-.75.75M13 19.75c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c3.57 0 4.25-.68 4.25-4.25v-4c0-3.57-.68-4.25-4.25-4.25-.41 0-.75-.34-.75-.75s.34-.75.75-.75c4.41 0 5.75 1.34 5.75 5.75v4c0 4.41-1.34 5.75-5.75 5.75\"/></svg>\n );\n }\n);\n\nBatteryCharging1.displayName = 'BatteryCharging1';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBZ,SAAoH,KAApH;AAHC,IAAM,gBAAgB,MAAM;AAAA,EACjC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,qBAAC,SAAI,KAAU,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAa,GAAG,OAAO;AAAA,0BAAC,UAAK,MAAK,WAAU,GAAE,ieAA+d;AAAA,MAAE,oBAAC,UAAK,MAAK,WAAU,GAAE,iYAA+X;AAAA,OAAE;AAAA,EAExgC;AACF;AAEA,cAAc,cAAc;;;AC3B5B,OAAOA,YAAW;AAsBZ,SAAoH,OAAAC,MAApH,QAAAC,aAAA;AAHC,IAAM,mBAAmBF,OAAM;AAAA,EACpC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,gBAAAE,MAAC,SAAI,KAAU,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAa,GAAG,OAAO;AAAA,sBAAAD,KAAC,UAAK,MAAK,WAAU,GAAE,6iBAA2iB;AAAA,MAAE,gBAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,gYAA8X;AAAA,OAAE;AAAA,EAEnlC;AACF;AAEA,iBAAiB,cAAc;","names":["React","jsx","jsxs"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.91",
3
+ "version": "0.1.93",
4
4
  "description": "Icon library for company projects",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",