magick-icons 0.1.79 → 0.1.81

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,75 +1,21 @@
1
1
  import React from 'react';
2
2
 
3
3
  /**
4
- * Props for the Add11 icon component
4
+ * Props for the BatteryEmpty1 icon component
5
5
  * @property {number | string} [size] - Size of the icon (default: 24)
6
6
  */
7
- interface Add11Props extends React.SVGProps<SVGSVGElement> {
7
+ interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {
8
8
  size?: number | string;
9
9
  }
10
10
  /**
11
- * Add11 icon component
11
+ * BatteryEmpty1 icon component
12
12
  * @example
13
13
  * ```tsx
14
- * import { Add11 } from 'magick-icons';
14
+ * import { BatteryEmpty1 } from 'magick-icons';
15
15
  *
16
- * <Add11 size={24} className="text-blue-500" strokeWidth={2} />
16
+ * <BatteryEmpty1 size={24} className="text-blue-500" strokeWidth={2} />
17
17
  * ```
18
18
  */
19
- declare const Add11: React.ForwardRefExoticComponent<Omit<Add11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
19
+ declare const BatteryEmpty1: React.ForwardRefExoticComponent<Omit<BatteryEmpty1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
20
 
21
- /**
22
- * Props for the FilterTick2 icon component
23
- * @property {number | string} [size] - Size of the icon (default: 24)
24
- */
25
- interface FilterTick2Props extends React.SVGProps<SVGSVGElement> {
26
- size?: number | string;
27
- }
28
- /**
29
- * FilterTick2 icon component
30
- * @example
31
- * ```tsx
32
- * import { FilterTick2 } from 'magick-icons';
33
- *
34
- * <FilterTick2 size={24} className="text-blue-500" strokeWidth={2} />
35
- * ```
36
- */
37
- declare const FilterTick2: React.ForwardRefExoticComponent<Omit<FilterTick2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
-
39
- /**
40
- * Props for the Icon3dcube1 icon component
41
- * @property {number | string} [size] - Size of the icon (default: 24)
42
- */
43
- interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
44
- size?: number | string;
45
- }
46
- /**
47
- * Icon3dcube1 icon component
48
- * @example
49
- * ```tsx
50
- * import { Icon3dcube1 } from 'magick-icons';
51
- *
52
- * <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
53
- * ```
54
- */
55
- declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
-
57
- /**
58
- * Props for the Icon3square1 icon component
59
- * @property {number | string} [size] - Size of the icon (default: 24)
60
- */
61
- interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
62
- size?: number | string;
63
- }
64
- /**
65
- * Icon3square1 icon component
66
- * @example
67
- * ```tsx
68
- * import { Icon3square1 } from 'magick-icons';
69
- *
70
- * <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
71
- * ```
72
- */
73
- declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
-
75
- export { Add11, type Add11Props, FilterTick2, type FilterTick2Props, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props };
21
+ export { BatteryEmpty1, type BatteryEmpty1Props };
package/index.d.ts CHANGED
@@ -1,75 +1,21 @@
1
1
  import React from 'react';
2
2
 
3
3
  /**
4
- * Props for the Add11 icon component
4
+ * Props for the BatteryEmpty1 icon component
5
5
  * @property {number | string} [size] - Size of the icon (default: 24)
6
6
  */
7
- interface Add11Props extends React.SVGProps<SVGSVGElement> {
7
+ interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {
8
8
  size?: number | string;
9
9
  }
10
10
  /**
11
- * Add11 icon component
11
+ * BatteryEmpty1 icon component
12
12
  * @example
13
13
  * ```tsx
14
- * import { Add11 } from 'magick-icons';
14
+ * import { BatteryEmpty1 } from 'magick-icons';
15
15
  *
16
- * <Add11 size={24} className="text-blue-500" strokeWidth={2} />
16
+ * <BatteryEmpty1 size={24} className="text-blue-500" strokeWidth={2} />
17
17
  * ```
18
18
  */
19
- declare const Add11: React.ForwardRefExoticComponent<Omit<Add11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
19
+ declare const BatteryEmpty1: React.ForwardRefExoticComponent<Omit<BatteryEmpty1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
20
 
21
- /**
22
- * Props for the FilterTick2 icon component
23
- * @property {number | string} [size] - Size of the icon (default: 24)
24
- */
25
- interface FilterTick2Props extends React.SVGProps<SVGSVGElement> {
26
- size?: number | string;
27
- }
28
- /**
29
- * FilterTick2 icon component
30
- * @example
31
- * ```tsx
32
- * import { FilterTick2 } from 'magick-icons';
33
- *
34
- * <FilterTick2 size={24} className="text-blue-500" strokeWidth={2} />
35
- * ```
36
- */
37
- declare const FilterTick2: React.ForwardRefExoticComponent<Omit<FilterTick2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
-
39
- /**
40
- * Props for the Icon3dcube1 icon component
41
- * @property {number | string} [size] - Size of the icon (default: 24)
42
- */
43
- interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
44
- size?: number | string;
45
- }
46
- /**
47
- * Icon3dcube1 icon component
48
- * @example
49
- * ```tsx
50
- * import { Icon3dcube1 } from 'magick-icons';
51
- *
52
- * <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
53
- * ```
54
- */
55
- declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
-
57
- /**
58
- * Props for the Icon3square1 icon component
59
- * @property {number | string} [size] - Size of the icon (default: 24)
60
- */
61
- interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
62
- size?: number | string;
63
- }
64
- /**
65
- * Icon3square1 icon component
66
- * @example
67
- * ```tsx
68
- * import { Icon3square1 } from 'magick-icons';
69
- *
70
- * <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
71
- * ```
72
- */
73
- declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
-
75
- export { Add11, type Add11Props, FilterTick2, type FilterTick2Props, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props };
21
+ export { BatteryEmpty1, type BatteryEmpty1Props };
package/index.js CHANGED
@@ -30,70 +30,21 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
30
30
  // dist/index.ts
31
31
  var index_exports = {};
32
32
  __export(index_exports, {
33
- Add11: () => Add11,
34
- FilterTick2: () => FilterTick2,
35
- Icon3dcube1: () => Icon3dcube1,
36
- Icon3square1: () => Icon3square1
33
+ BatteryEmpty1: () => BatteryEmpty1
37
34
  });
38
35
  module.exports = __toCommonJS(index_exports);
39
36
 
40
- // dist/icons/Add11.tsx
37
+ // dist/icons/BatteryEmpty1.tsx
41
38
  var import_react = __toESM(require("react"));
42
39
  var import_jsx_runtime = require("react/jsx-runtime");
43
- var Add11 = import_react.default.forwardRef(
40
+ var BatteryEmpty1 = import_react.default.forwardRef(
44
41
  ({ size, ...props }, ref) => {
45
- 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: [
46
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M18 20.25h-1.77c-.25 0-.48-.12-.62-.33a.73.73 0 0 1-.07-.7c.03-.08.06-.17.08-.26.09-.32.13-.6.13-.96 0-1-.39-1.93-1.11-2.64-1.42-1.44-3.87-1.43-5.28-.01a3.69 3.69 0 0 0-.99 3.56c.03.13.06.22.1.31.09.23.06.49-.08.69s-.37.33-.62.33H6c-2.62 0-4.75-2.13-4.75-4.75V6c0-2.62 2.13-4.75 4.75-4.75h12c2.62 0 4.75 2.13 4.75 4.75v9.5c0 2.62-2.13 4.75-4.75 4.75m-.8-1.5h.8c1.79 0 3.25-1.46 3.25-3.25V6c0-1.79-1.46-3.25-3.25-3.25H6C4.21 2.75 2.75 4.21 2.75 6v9.5c0 1.79 1.46 3.25 3.25 3.25h.8c-.04-.24-.05-.49-.05-.75 0-1.4.55-2.71 1.55-3.7a5.19 5.19 0 0 1 7.4 0c.99.98 1.55 2.3 1.55 3.7 0 .27-.02.51-.05.75" }),
47
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M6 6.25a.749.749 0 1 1-.002-1.502A.749.749 0 0 1 6 6.25M8.5 6.25a.749.749 0 1 1 0-1.5h.01c.41 0 .75.34.75.75s-.35.75-.76.75M11 6.25a.749.749 0 1 1-.002-1.502A.749.749 0 0 1 11 6.25M22 9.28H2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h20c.41 0 .75.34.75.75s-.34.75-.75.75M12 23.25c-2.21 0-4.19-1.41-4.94-3.5-.06-.15-.11-.3-.14-.47-.11-.39-.17-.82-.17-1.29 0-1.4.55-2.71 1.55-3.7a5.19 5.19 0 0 1 7.4 0c.99.98 1.55 2.3 1.55 3.7 0 .5-.06.94-.18 1.34a3 3 0 0 1-.14.45c-.25.72-.67 1.38-1.23 1.92-.99 1-2.3 1.55-3.7 1.55m0-9c-1 0-1.93.39-2.64 1.11a3.69 3.69 0 0 0-.99 3.56c.03.13.06.22.1.31.54 1.51 1.96 2.52 3.53 2.52 1 0 1.93-.39 2.64-1.11.41-.39.7-.85.89-1.39.05-.12.08-.21.1-.3.09-.32.13-.6.13-.96 0-1-.39-1.93-1.11-2.64a3.74 3.74 0 0 0-2.65-1.1" }),
48
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M12 20.16c-.41 0-.75-.34-.75-.75v-2.83c0-.41.34-.75.75-.75s.75.34.75.75v2.83c0 .42-.34.75-.75.75" }),
49
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M13.41 18.75h-2.83c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.83a.749.749 0 1 1 0 1.5" })
50
- ] });
42
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M13 19.75H7c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75h6c4.41 0 5.75 1.34 5.75 5.75l-.25 2.5c0 4.41-1.09 7.25-5.5 7.25m-6-14c-3.58 0-4.25.68-4.25 4.25v4c0 3.57.67 4.25 4.25 4.25h6c3.58 0 4.25-.68 4.25-4.25v-4c0-3.57-.67-4.25-4.25-4.25zM20.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.25" }) });
51
43
  }
52
44
  );
53
- Add11.displayName = "Add11";
54
-
55
- // dist/icons/FilterTick2.tsx
56
- var import_react2 = __toESM(require("react"));
57
- var import_jsx_runtime2 = require("react/jsx-runtime");
58
- var FilterTick2 = import_react2.default.forwardRef(
59
- ({ size, ...props }, ref) => {
60
- 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: [
61
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M16.88 20.25a5.3 5.3 0 0 1-2.97-.9 5.24 5.24 0 0 1-1.73-1.77c-.52-.85-.8-1.83-.8-2.83 0-3.03 2.47-5.5 5.5-5.5.42 0 .83.05 1.22.14 2.48.55 4.28 2.8 4.28 5.36 0 1.01-.27 1.99-.79 2.84a5.51 5.51 0 0 1-4.71 2.66m0-9.5c-2.21 0-4 1.79-4 4 0 .73.2 1.44.58 2.06.32.53.75.97 1.25 1.28.66.44 1.4.66 2.17.66 1.4 0 2.71-.74 3.43-1.94.38-.62.57-1.33.57-2.06 0-1.86-1.31-3.5-3.12-3.9-.29-.07-.58-.1-.88-.1" }),
62
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M16.2 16.67c-.19 0-.38-.07-.53-.22l-1.17-1.17a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l.66.66 2.01-1.85c.31-.28.78-.26 1.06.04s.26.78-.04 1.06l-2.54 2.34c-.14.13-.33.2-.51.2" }),
63
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M10.93 22.75c-.48 0-.96-.12-1.39-.36-.89-.5-1.42-1.4-1.42-2.41v-5.35c0-.51-.33-1.26-.65-1.65l-3.8-3.99c-.63-.65-1.12-1.74-1.12-2.54V4.12c0-1.61 1.22-2.87 2.77-2.87h13.34a2.77 2.77 0 0 1 2.77 2.77v2.22c0 1.05-.62 2.23-1.23 2.85l-1.8 1.59a.77.77 0 0 1-.67.17c-.27-.07-.56-.1-.86-.1-2.21 0-4 1.79-4 4 0 .73.2 1.44.58 2.06.32.53.75.97 1.25 1.28.22.14.36.38.36.64v.34c0 .79-.48 1.9-1.28 2.37l-1.38.89c-.44.28-.96.42-1.47.42m-5.6-20c-.71 0-1.27.6-1.27 1.37v2.33c0 .36.3 1.09.7 1.49l3.85 4.05c.51.63 1.02 1.69 1.02 2.64v5.35c0 .66.46.99.65 1.1.43.24.94.23 1.33-.01l1.4-.9c.27-.16.54-.67.56-1.03-.55-.41-1.03-.94-1.39-1.54-.52-.85-.8-1.83-.8-2.83a5.51 5.51 0 0 1 6.32-5.44l1.48-1.31c.34-.35.76-1.18.76-1.77V4.03c0-.7-.57-1.27-1.27-1.27H5.33z" })
64
- ] });
65
- }
66
- );
67
- FilterTick2.displayName = "FilterTick2";
68
-
69
- // dist/icons/Icon3dcube1.tsx
70
- var import_react3 = __toESM(require("react"));
71
- var import_jsx_runtime3 = require("react/jsx-runtime");
72
- var Icon3dcube1 = import_react3.default.forwardRef(
73
- ({ size, ...props }, ref) => {
74
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "#1e293b", d: "M12 12.25c-.44 0-.88-.11-1.28-.32L4.21 8.42c-.59-.32-.96-.95-.96-1.65s.37-1.33.96-1.65l6.51-3.51c.8-.43 1.76-.43 2.55 0l6.51 3.51c.59.32.96.95.96 1.65s-.37 1.33-.96 1.65l-6.51 3.51c-.39.22-.83.32-1.27.32m0-9.47c-.19 0-.39.05-.57.15l-6.5 3.5c-.17.09-.18.28-.18.34s.01.25.18.33l6.51 3.51c.36.19.77.19 1.13 0l6.51-3.51c.16-.09.18-.28.18-.33 0-.06-.01-.25-.18-.33l-6.51-3.51c-.18-.1-.38-.15-.57-.15M9.78 22.72c-.28 0-.57-.07-.83-.2L2.89 19.5a2.97 2.97 0 0 1-1.64-2.66v-5.72c0-.65.33-1.24.88-1.58.56-.34 1.23-.37 1.81-.08L10 12.48c1.01.51 1.64 1.52 1.64 2.66v5.72c0 .65-.33 1.24-.88 1.58-.3.19-.64.28-.98.28M3.11 10.76c-.08 0-.15.03-.19.05-.06.04-.17.13-.17.31v5.72c0 .56.31 1.07.81 1.32l6.05 3.03c.16.08.29.02.35-.01.06-.04.17-.13.17-.31v-5.72c0-.56-.31-1.07-.81-1.32L3.27 10.8a.34.34 0 0 0-.16-.04M14.22 22.72c-.34 0-.68-.09-.98-.28-.55-.34-.88-.93-.88-1.58v-5.72c0-1.13.63-2.15 1.64-2.66l6.05-3.03c.58-.29 1.26-.26 1.81.08s.88.93.88 1.58v5.72c0 1.13-.63 2.15-1.64 2.66l-6.05 3.03c-.26.14-.55.2-.83.2m6.67-11.96c-.05 0-.1.01-.16.04l-6.05 3.03c-.5.25-.81.75-.81 1.32v5.72c0 .18.11.27.17.31s.19.09.35.01l6.05-3.03c.5-.25.81-.76.81-1.32v-5.72c0-.18-.11-.27-.17-.31a.4.4 0 0 0-.19-.05" }) });
75
- }
76
- );
77
- Icon3dcube1.displayName = "Icon3dcube1";
78
-
79
- // dist/icons/Icon3square1.tsx
80
- var import_react4 = __toESM(require("react"));
81
- var import_jsx_runtime4 = require("react/jsx-runtime");
82
- var Icon3square1 = import_react4.default.forwardRef(
83
- ({ size, ...props }, ref) => {
84
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
85
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { fill: "#1e293b", d: "M9.37 22.75H4.62c-2.3 0-3.37-1.07-3.37-3.37v-4.75c0-2.31 1.07-3.38 3.37-3.38H7c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H12c.41 0 .75.34.75.75v2.38c0 2.3-1.07 3.37-3.38 3.37m-4.75-10c-1.45 0-1.87.42-1.87 1.88v4.75c0 1.45.42 1.87 1.87 1.87h4.75c1.46 0 1.88-.42 1.88-1.87v-1.63H9.62c-2.3 0-3.37-1.07-3.37-3.38v-1.62z" }),
86
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { fill: "#1e293b", d: "M14.37 17.75H9.62c-2.3 0-3.37-1.07-3.37-3.38V9.62c0-2.3 1.07-3.37 3.37-3.37H12c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H17c.41 0 .75.34.75.75v2.37c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88v-1.62h-1.63c-2.3 0-3.37-1.07-3.37-3.38V7.75z" }),
87
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { fill: "#1e293b", d: "M19.37 12.75h-4.75c-2.3 0-3.37-1.07-3.37-3.38V4.62c0-2.3 1.07-3.37 3.37-3.37h4.75c2.31 0 3.38 1.07 3.38 3.37v4.75c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88V4.62c0-1.45-.42-1.87-1.88-1.87z" })
88
- ] });
89
- }
90
- );
91
- Icon3square1.displayName = "Icon3square1";
45
+ BatteryEmpty1.displayName = "BatteryEmpty1";
92
46
  // Annotate the CommonJS export names for ESM import in node:
93
47
  0 && (module.exports = {
94
- Add11,
95
- FilterTick2,
96
- Icon3dcube1,
97
- Icon3square1
48
+ BatteryEmpty1
98
49
  });
99
50
  //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts","icons/Add11.tsx","icons/FilterTick2.tsx","icons/Icon3dcube1.tsx","icons/Icon3square1.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 { Add11 } from 'magick-icons';\n * \n * function MyComponent() {\n * return <Add11 size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * Add11 icon component and its props type\n * @see {@link Add11Props} for available props\n */\nexport { Add11, type Add11Props } from './icons/Add11';\n\n/**\n * FilterTick2 icon component and its props type\n * @see {@link FilterTick2Props} for available props\n */\nexport { FilterTick2, type FilterTick2Props } from './icons/FilterTick2';\n\n/**\n * Icon3dcube1 icon component and its props type\n * @see {@link Icon3dcube1Props} for available props\n */\nexport { Icon3dcube1, type Icon3dcube1Props } from './icons/Icon3dcube1';\n\n/**\n * Icon3square1 icon component and its props type\n * @see {@link Icon3square1Props} for available props\n */\nexport { Icon3square1, type Icon3square1Props } from './icons/Icon3square1';\n","import React from 'react';\n\n/**\n * Props for the Add11 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Add11Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Add11 icon component\n * @example\n * ```tsx\n * import { Add11 } from 'magick-icons';\n * \n * <Add11 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Add11 = React.forwardRef<SVGSVGElement, Add11Props>(\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 20.25h-1.77c-.25 0-.48-.12-.62-.33a.73.73 0 0 1-.07-.7c.03-.08.06-.17.08-.26.09-.32.13-.6.13-.96 0-1-.39-1.93-1.11-2.64-1.42-1.44-3.87-1.43-5.28-.01a3.69 3.69 0 0 0-.99 3.56c.03.13.06.22.1.31.09.23.06.49-.08.69s-.37.33-.62.33H6c-2.62 0-4.75-2.13-4.75-4.75V6c0-2.62 2.13-4.75 4.75-4.75h12c2.62 0 4.75 2.13 4.75 4.75v9.5c0 2.62-2.13 4.75-4.75 4.75m-.8-1.5h.8c1.79 0 3.25-1.46 3.25-3.25V6c0-1.79-1.46-3.25-3.25-3.25H6C4.21 2.75 2.75 4.21 2.75 6v9.5c0 1.79 1.46 3.25 3.25 3.25h.8c-.04-.24-.05-.49-.05-.75 0-1.4.55-2.71 1.55-3.7a5.19 5.19 0 0 1 7.4 0c.99.98 1.55 2.3 1.55 3.7 0 .27-.02.51-.05.75\"/><path fill=\"#1e293b\" d=\"M6 6.25a.749.749 0 1 1-.002-1.502A.749.749 0 0 1 6 6.25M8.5 6.25a.749.749 0 1 1 0-1.5h.01c.41 0 .75.34.75.75s-.35.75-.76.75M11 6.25a.749.749 0 1 1-.002-1.502A.749.749 0 0 1 11 6.25M22 9.28H2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h20c.41 0 .75.34.75.75s-.34.75-.75.75M12 23.25c-2.21 0-4.19-1.41-4.94-3.5-.06-.15-.11-.3-.14-.47-.11-.39-.17-.82-.17-1.29 0-1.4.55-2.71 1.55-3.7a5.19 5.19 0 0 1 7.4 0c.99.98 1.55 2.3 1.55 3.7 0 .5-.06.94-.18 1.34a3 3 0 0 1-.14.45c-.25.72-.67 1.38-1.23 1.92-.99 1-2.3 1.55-3.7 1.55m0-9c-1 0-1.93.39-2.64 1.11a3.69 3.69 0 0 0-.99 3.56c.03.13.06.22.1.31.54 1.51 1.96 2.52 3.53 2.52 1 0 1.93-.39 2.64-1.11.41-.39.7-.85.89-1.39.05-.12.08-.21.1-.3.09-.32.13-.6.13-.96 0-1-.39-1.93-1.11-2.64a3.74 3.74 0 0 0-2.65-1.1\"/><path fill=\"#1e293b\" d=\"M12 20.16c-.41 0-.75-.34-.75-.75v-2.83c0-.41.34-.75.75-.75s.75.34.75.75v2.83c0 .42-.34.75-.75.75\"/><path fill=\"#1e293b\" d=\"M13.41 18.75h-2.83c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.83a.749.749 0 1 1 0 1.5\"/></svg>\n );\n }\n);\n\nAdd11.displayName = 'Add11';\n","import React from 'react';\n\n/**\n * Props for the FilterTick2 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FilterTick2Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * FilterTick2 icon component\n * @example\n * ```tsx\n * import { FilterTick2 } from 'magick-icons';\n * \n * <FilterTick2 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const FilterTick2 = React.forwardRef<SVGSVGElement, FilterTick2Props>(\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=\"M16.88 20.25a5.3 5.3 0 0 1-2.97-.9 5.24 5.24 0 0 1-1.73-1.77c-.52-.85-.8-1.83-.8-2.83 0-3.03 2.47-5.5 5.5-5.5.42 0 .83.05 1.22.14 2.48.55 4.28 2.8 4.28 5.36 0 1.01-.27 1.99-.79 2.84a5.51 5.51 0 0 1-4.71 2.66m0-9.5c-2.21 0-4 1.79-4 4 0 .73.2 1.44.58 2.06.32.53.75.97 1.25 1.28.66.44 1.4.66 2.17.66 1.4 0 2.71-.74 3.43-1.94.38-.62.57-1.33.57-2.06 0-1.86-1.31-3.5-3.12-3.9-.29-.07-.58-.1-.88-.1\"/><path fill=\"#1e293b\" d=\"M16.2 16.67c-.19 0-.38-.07-.53-.22l-1.17-1.17a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l.66.66 2.01-1.85c.31-.28.78-.26 1.06.04s.26.78-.04 1.06l-2.54 2.34c-.14.13-.33.2-.51.2\"/><path fill=\"#1e293b\" d=\"M10.93 22.75c-.48 0-.96-.12-1.39-.36-.89-.5-1.42-1.4-1.42-2.41v-5.35c0-.51-.33-1.26-.65-1.65l-3.8-3.99c-.63-.65-1.12-1.74-1.12-2.54V4.12c0-1.61 1.22-2.87 2.77-2.87h13.34a2.77 2.77 0 0 1 2.77 2.77v2.22c0 1.05-.62 2.23-1.23 2.85l-1.8 1.59a.77.77 0 0 1-.67.17c-.27-.07-.56-.1-.86-.1-2.21 0-4 1.79-4 4 0 .73.2 1.44.58 2.06.32.53.75.97 1.25 1.28.22.14.36.38.36.64v.34c0 .79-.48 1.9-1.28 2.37l-1.38.89c-.44.28-.96.42-1.47.42m-5.6-20c-.71 0-1.27.6-1.27 1.37v2.33c0 .36.3 1.09.7 1.49l3.85 4.05c.51.63 1.02 1.69 1.02 2.64v5.35c0 .66.46.99.65 1.1.43.24.94.23 1.33-.01l1.4-.9c.27-.16.54-.67.56-1.03-.55-.41-1.03-.94-1.39-1.54-.52-.85-.8-1.83-.8-2.83a5.51 5.51 0 0 1 6.32-5.44l1.48-1.31c.34-.35.76-1.18.76-1.77V4.03c0-.7-.57-1.27-1.27-1.27H5.33z\"/></svg>\n );\n }\n);\n\nFilterTick2.displayName = 'FilterTick2';\n","import React from 'react';\n\n/**\n * Props for the Icon3dcube1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Icon3dcube1 icon component\n * @example\n * ```tsx\n * import { Icon3dcube1 } from 'magick-icons';\n * \n * <Icon3dcube1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Icon3dcube1 = React.forwardRef<SVGSVGElement, Icon3dcube1Props>(\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=\"M12 12.25c-.44 0-.88-.11-1.28-.32L4.21 8.42c-.59-.32-.96-.95-.96-1.65s.37-1.33.96-1.65l6.51-3.51c.8-.43 1.76-.43 2.55 0l6.51 3.51c.59.32.96.95.96 1.65s-.37 1.33-.96 1.65l-6.51 3.51c-.39.22-.83.32-1.27.32m0-9.47c-.19 0-.39.05-.57.15l-6.5 3.5c-.17.09-.18.28-.18.34s.01.25.18.33l6.51 3.51c.36.19.77.19 1.13 0l6.51-3.51c.16-.09.18-.28.18-.33 0-.06-.01-.25-.18-.33l-6.51-3.51c-.18-.1-.38-.15-.57-.15M9.78 22.72c-.28 0-.57-.07-.83-.2L2.89 19.5a2.97 2.97 0 0 1-1.64-2.66v-5.72c0-.65.33-1.24.88-1.58.56-.34 1.23-.37 1.81-.08L10 12.48c1.01.51 1.64 1.52 1.64 2.66v5.72c0 .65-.33 1.24-.88 1.58-.3.19-.64.28-.98.28M3.11 10.76c-.08 0-.15.03-.19.05-.06.04-.17.13-.17.31v5.72c0 .56.31 1.07.81 1.32l6.05 3.03c.16.08.29.02.35-.01.06-.04.17-.13.17-.31v-5.72c0-.56-.31-1.07-.81-1.32L3.27 10.8a.34.34 0 0 0-.16-.04M14.22 22.72c-.34 0-.68-.09-.98-.28-.55-.34-.88-.93-.88-1.58v-5.72c0-1.13.63-2.15 1.64-2.66l6.05-3.03c.58-.29 1.26-.26 1.81.08s.88.93.88 1.58v5.72c0 1.13-.63 2.15-1.64 2.66l-6.05 3.03c-.26.14-.55.2-.83.2m6.67-11.96c-.05 0-.1.01-.16.04l-6.05 3.03c-.5.25-.81.75-.81 1.32v5.72c0 .18.11.27.17.31s.19.09.35.01l6.05-3.03c.5-.25.81-.76.81-1.32v-5.72c0-.18-.11-.27-.17-.31a.4.4 0 0 0-.19-.05\"/></svg>\n );\n }\n);\n\nIcon3dcube1.displayName = 'Icon3dcube1';\n","import React from 'react';\n\n/**\n * Props for the Icon3square1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Icon3square1 icon component\n * @example\n * ```tsx\n * import { Icon3square1 } from 'magick-icons';\n * \n * <Icon3square1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Icon3square1 = React.forwardRef<SVGSVGElement, Icon3square1Props>(\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=\"M9.37 22.75H4.62c-2.3 0-3.37-1.07-3.37-3.37v-4.75c0-2.31 1.07-3.38 3.37-3.38H7c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H12c.41 0 .75.34.75.75v2.38c0 2.3-1.07 3.37-3.38 3.37m-4.75-10c-1.45 0-1.87.42-1.87 1.88v4.75c0 1.45.42 1.87 1.87 1.87h4.75c1.46 0 1.88-.42 1.88-1.87v-1.63H9.62c-2.3 0-3.37-1.07-3.37-3.38v-1.62z\"/><path fill=\"#1e293b\" d=\"M14.37 17.75H9.62c-2.3 0-3.37-1.07-3.37-3.38V9.62c0-2.3 1.07-3.37 3.37-3.37H12c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H17c.41 0 .75.34.75.75v2.37c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88v-1.62h-1.63c-2.3 0-3.37-1.07-3.37-3.38V7.75z\"/><path fill=\"#1e293b\" d=\"M19.37 12.75h-4.75c-2.3 0-3.37-1.07-3.37-3.38V4.62c0-2.3 1.07-3.37 3.37-3.37h4.75c2.31 0 3.38 1.07 3.38 3.37v4.75c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88V4.62c0-1.45-.42-1.87-1.88-1.87z\"/></svg>\n );\n }\n);\n\nIcon3square1.displayName = 'Icon3square1';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBZ;AAHC,IAAM,QAAQ,aAAAA,QAAM;AAAA,EACzB,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,slBAAolB;AAAA,MAAE,4CAAC,UAAK,MAAK,WAAU,GAAE,quBAAmuB;AAAA,MAAE,4CAAC,UAAK,MAAK,WAAU,GAAE,oGAAkG;AAAA,MAAE,4CAAC,UAAK,MAAK,WAAU,GAAE,sFAAoF;AAAA,OAAE;AAAA,EAEzsD;AACF;AAEA,MAAM,cAAc;;;AC3BpB,IAAAC,gBAAkB;AAsBZ,IAAAC,sBAAA;AAHC,IAAM,cAAc,cAAAC,QAAM;AAAA,EAC/B,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,2YAAyY;AAAA,MAAE,6CAAC,UAAK,MAAK,WAAU,GAAE,oLAAkL;AAAA,MAAE,6CAAC,UAAK,MAAK,WAAU,GAAE,iuBAA+tB;AAAA,OAAE;AAAA,EAE79C;AACF;AAEA,YAAY,cAAc;;;AC3B1B,IAAAC,gBAAkB;AAsBwG,IAAAC,sBAAA;AAHnH,IAAM,cAAc,cAAAC,QAAM;AAAA,EAC/B,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,6CAAC,SAAI,KAAU,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAa,GAAG,OAAO,uDAAC,UAAK,MAAK,WAAU,GAAE,6pCAA2pC,GAAE;AAAA,EAE5yC;AACF;AAEA,YAAY,cAAc;;;AC3B1B,IAAAC,gBAAkB;AAsBZ,IAAAC,sBAAA;AAHC,IAAM,eAAe,cAAAC,QAAM;AAAA,EAChC,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,qUAAmU;AAAA,MAAE,6CAAC,UAAK,MAAK,WAAU,GAAE,sUAAoU;AAAA,MAAE,6CAAC,UAAK,MAAK,WAAU,GAAE,gRAA8Q;AAAA,OAAE;AAAA,EAExlC;AACF;AAEA,aAAa,cAAc;","names":["React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React"]}
1
+ {"version":3,"sources":["index.ts","icons/BatteryEmpty1.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 { BatteryEmpty1 } from 'magick-icons';\n * \n * function MyComponent() {\n * return <BatteryEmpty1 size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * BatteryEmpty1 icon component and its props type\n * @see {@link BatteryEmpty1Props} for available props\n */\nexport { BatteryEmpty1, type BatteryEmpty1Props } from './icons/BatteryEmpty1';\n","import React from 'react';\n\n/**\n * Props for the BatteryEmpty1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * BatteryEmpty1 icon component\n * @example\n * ```tsx\n * import { BatteryEmpty1 } from 'magick-icons';\n * \n * <BatteryEmpty1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const BatteryEmpty1 = React.forwardRef<SVGSVGElement, BatteryEmpty1Props>(\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=\"M13 19.75H7c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75h6c4.41 0 5.75 1.34 5.75 5.75l-.25 2.5c0 4.41-1.09 7.25-5.5 7.25m-6-14c-3.58 0-4.25.68-4.25 4.25v4c0 3.57.67 4.25 4.25 4.25h6c3.58 0 4.25-.68 4.25-4.25v-4c0-3.57-.67-4.25-4.25-4.25zM20.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.25\"/></svg>\n );\n }\n);\n\nBatteryEmpty1.displayName = 'BatteryEmpty1';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBwG;AAHnH,IAAM,gBAAgB,aAAAA,QAAM;AAAA,EACjC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,4CAAC,SAAI,KAAU,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAa,GAAG,OAAO,sDAAC,UAAK,MAAK,WAAU,GAAE,keAAge,GAAE;AAAA,EAEjnB;AACF;AAEA,cAAc,cAAc;","names":["React"]}
package/index.mjs CHANGED
@@ -1,59 +1,13 @@
1
- // dist/icons/Add11.tsx
1
+ // dist/icons/BatteryEmpty1.tsx
2
2
  import React from "react";
3
- import { jsx, jsxs } from "react/jsx-runtime";
4
- var Add11 = React.forwardRef(
3
+ import { jsx } from "react/jsx-runtime";
4
+ var BatteryEmpty1 = React.forwardRef(
5
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 20.25h-1.77c-.25 0-.48-.12-.62-.33a.73.73 0 0 1-.07-.7c.03-.08.06-.17.08-.26.09-.32.13-.6.13-.96 0-1-.39-1.93-1.11-2.64-1.42-1.44-3.87-1.43-5.28-.01a3.69 3.69 0 0 0-.99 3.56c.03.13.06.22.1.31.09.23.06.49-.08.69s-.37.33-.62.33H6c-2.62 0-4.75-2.13-4.75-4.75V6c0-2.62 2.13-4.75 4.75-4.75h12c2.62 0 4.75 2.13 4.75 4.75v9.5c0 2.62-2.13 4.75-4.75 4.75m-.8-1.5h.8c1.79 0 3.25-1.46 3.25-3.25V6c0-1.79-1.46-3.25-3.25-3.25H6C4.21 2.75 2.75 4.21 2.75 6v9.5c0 1.79 1.46 3.25 3.25 3.25h.8c-.04-.24-.05-.49-.05-.75 0-1.4.55-2.71 1.55-3.7a5.19 5.19 0 0 1 7.4 0c.99.98 1.55 2.3 1.55 3.7 0 .27-.02.51-.05.75" }),
8
- /* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M6 6.25a.749.749 0 1 1-.002-1.502A.749.749 0 0 1 6 6.25M8.5 6.25a.749.749 0 1 1 0-1.5h.01c.41 0 .75.34.75.75s-.35.75-.76.75M11 6.25a.749.749 0 1 1-.002-1.502A.749.749 0 0 1 11 6.25M22 9.28H2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h20c.41 0 .75.34.75.75s-.34.75-.75.75M12 23.25c-2.21 0-4.19-1.41-4.94-3.5-.06-.15-.11-.3-.14-.47-.11-.39-.17-.82-.17-1.29 0-1.4.55-2.71 1.55-3.7a5.19 5.19 0 0 1 7.4 0c.99.98 1.55 2.3 1.55 3.7 0 .5-.06.94-.18 1.34a3 3 0 0 1-.14.45c-.25.72-.67 1.38-1.23 1.92-.99 1-2.3 1.55-3.7 1.55m0-9c-1 0-1.93.39-2.64 1.11a3.69 3.69 0 0 0-.99 3.56c.03.13.06.22.1.31.54 1.51 1.96 2.52 3.53 2.52 1 0 1.93-.39 2.64-1.11.41-.39.7-.85.89-1.39.05-.12.08-.21.1-.3.09-.32.13-.6.13-.96 0-1-.39-1.93-1.11-2.64a3.74 3.74 0 0 0-2.65-1.1" }),
9
- /* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M12 20.16c-.41 0-.75-.34-.75-.75v-2.83c0-.41.34-.75.75-.75s.75.34.75.75v2.83c0 .42-.34.75-.75.75" }),
10
- /* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M13.41 18.75h-2.83c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.83a.749.749 0 1 1 0 1.5" })
11
- ] });
6
+ return /* @__PURE__ */ jsx("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M13 19.75H7c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75h6c4.41 0 5.75 1.34 5.75 5.75l-.25 2.5c0 4.41-1.09 7.25-5.5 7.25m-6-14c-3.58 0-4.25.68-4.25 4.25v4c0 3.57.67 4.25 4.25 4.25h6c3.58 0 4.25-.68 4.25-4.25v-4c0-3.57-.67-4.25-4.25-4.25zM20.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.25" }) });
12
7
  }
13
8
  );
14
- Add11.displayName = "Add11";
15
-
16
- // dist/icons/FilterTick2.tsx
17
- import React2 from "react";
18
- import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
19
- var FilterTick2 = React2.forwardRef(
20
- ({ size, ...props }, ref) => {
21
- 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: [
22
- /* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "M16.88 20.25a5.3 5.3 0 0 1-2.97-.9 5.24 5.24 0 0 1-1.73-1.77c-.52-.85-.8-1.83-.8-2.83 0-3.03 2.47-5.5 5.5-5.5.42 0 .83.05 1.22.14 2.48.55 4.28 2.8 4.28 5.36 0 1.01-.27 1.99-.79 2.84a5.51 5.51 0 0 1-4.71 2.66m0-9.5c-2.21 0-4 1.79-4 4 0 .73.2 1.44.58 2.06.32.53.75.97 1.25 1.28.66.44 1.4.66 2.17.66 1.4 0 2.71-.74 3.43-1.94.38-.62.57-1.33.57-2.06 0-1.86-1.31-3.5-3.12-3.9-.29-.07-.58-.1-.88-.1" }),
23
- /* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "M16.2 16.67c-.19 0-.38-.07-.53-.22l-1.17-1.17a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l.66.66 2.01-1.85c.31-.28.78-.26 1.06.04s.26.78-.04 1.06l-2.54 2.34c-.14.13-.33.2-.51.2" }),
24
- /* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "M10.93 22.75c-.48 0-.96-.12-1.39-.36-.89-.5-1.42-1.4-1.42-2.41v-5.35c0-.51-.33-1.26-.65-1.65l-3.8-3.99c-.63-.65-1.12-1.74-1.12-2.54V4.12c0-1.61 1.22-2.87 2.77-2.87h13.34a2.77 2.77 0 0 1 2.77 2.77v2.22c0 1.05-.62 2.23-1.23 2.85l-1.8 1.59a.77.77 0 0 1-.67.17c-.27-.07-.56-.1-.86-.1-2.21 0-4 1.79-4 4 0 .73.2 1.44.58 2.06.32.53.75.97 1.25 1.28.22.14.36.38.36.64v.34c0 .79-.48 1.9-1.28 2.37l-1.38.89c-.44.28-.96.42-1.47.42m-5.6-20c-.71 0-1.27.6-1.27 1.37v2.33c0 .36.3 1.09.7 1.49l3.85 4.05c.51.63 1.02 1.69 1.02 2.64v5.35c0 .66.46.99.65 1.1.43.24.94.23 1.33-.01l1.4-.9c.27-.16.54-.67.56-1.03-.55-.41-1.03-.94-1.39-1.54-.52-.85-.8-1.83-.8-2.83a5.51 5.51 0 0 1 6.32-5.44l1.48-1.31c.34-.35.76-1.18.76-1.77V4.03c0-.7-.57-1.27-1.27-1.27H5.33z" })
25
- ] });
26
- }
27
- );
28
- FilterTick2.displayName = "FilterTick2";
29
-
30
- // dist/icons/Icon3dcube1.tsx
31
- import React3 from "react";
32
- import { jsx as jsx3 } from "react/jsx-runtime";
33
- var Icon3dcube1 = React3.forwardRef(
34
- ({ size, ...props }, ref) => {
35
- return /* @__PURE__ */ jsx3("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ jsx3("path", { fill: "#1e293b", d: "M12 12.25c-.44 0-.88-.11-1.28-.32L4.21 8.42c-.59-.32-.96-.95-.96-1.65s.37-1.33.96-1.65l6.51-3.51c.8-.43 1.76-.43 2.55 0l6.51 3.51c.59.32.96.95.96 1.65s-.37 1.33-.96 1.65l-6.51 3.51c-.39.22-.83.32-1.27.32m0-9.47c-.19 0-.39.05-.57.15l-6.5 3.5c-.17.09-.18.28-.18.34s.01.25.18.33l6.51 3.51c.36.19.77.19 1.13 0l6.51-3.51c.16-.09.18-.28.18-.33 0-.06-.01-.25-.18-.33l-6.51-3.51c-.18-.1-.38-.15-.57-.15M9.78 22.72c-.28 0-.57-.07-.83-.2L2.89 19.5a2.97 2.97 0 0 1-1.64-2.66v-5.72c0-.65.33-1.24.88-1.58.56-.34 1.23-.37 1.81-.08L10 12.48c1.01.51 1.64 1.52 1.64 2.66v5.72c0 .65-.33 1.24-.88 1.58-.3.19-.64.28-.98.28M3.11 10.76c-.08 0-.15.03-.19.05-.06.04-.17.13-.17.31v5.72c0 .56.31 1.07.81 1.32l6.05 3.03c.16.08.29.02.35-.01.06-.04.17-.13.17-.31v-5.72c0-.56-.31-1.07-.81-1.32L3.27 10.8a.34.34 0 0 0-.16-.04M14.22 22.72c-.34 0-.68-.09-.98-.28-.55-.34-.88-.93-.88-1.58v-5.72c0-1.13.63-2.15 1.64-2.66l6.05-3.03c.58-.29 1.26-.26 1.81.08s.88.93.88 1.58v5.72c0 1.13-.63 2.15-1.64 2.66l-6.05 3.03c-.26.14-.55.2-.83.2m6.67-11.96c-.05 0-.1.01-.16.04l-6.05 3.03c-.5.25-.81.75-.81 1.32v5.72c0 .18.11.27.17.31s.19.09.35.01l6.05-3.03c.5-.25.81-.76.81-1.32v-5.72c0-.18-.11-.27-.17-.31a.4.4 0 0 0-.19-.05" }) });
36
- }
37
- );
38
- Icon3dcube1.displayName = "Icon3dcube1";
39
-
40
- // dist/icons/Icon3square1.tsx
41
- import React4 from "react";
42
- import { jsx as jsx4, jsxs as jsxs3 } from "react/jsx-runtime";
43
- var Icon3square1 = React4.forwardRef(
44
- ({ size, ...props }, ref) => {
45
- return /* @__PURE__ */ jsxs3("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
46
- /* @__PURE__ */ jsx4("path", { fill: "#1e293b", d: "M9.37 22.75H4.62c-2.3 0-3.37-1.07-3.37-3.37v-4.75c0-2.31 1.07-3.38 3.37-3.38H7c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H12c.41 0 .75.34.75.75v2.38c0 2.3-1.07 3.37-3.38 3.37m-4.75-10c-1.45 0-1.87.42-1.87 1.88v4.75c0 1.45.42 1.87 1.87 1.87h4.75c1.46 0 1.88-.42 1.88-1.87v-1.63H9.62c-2.3 0-3.37-1.07-3.37-3.38v-1.62z" }),
47
- /* @__PURE__ */ jsx4("path", { fill: "#1e293b", d: "M14.37 17.75H9.62c-2.3 0-3.37-1.07-3.37-3.38V9.62c0-2.3 1.07-3.37 3.37-3.37H12c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H17c.41 0 .75.34.75.75v2.37c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88v-1.62h-1.63c-2.3 0-3.37-1.07-3.37-3.38V7.75z" }),
48
- /* @__PURE__ */ jsx4("path", { fill: "#1e293b", d: "M19.37 12.75h-4.75c-2.3 0-3.37-1.07-3.37-3.38V4.62c0-2.3 1.07-3.37 3.37-3.37h4.75c2.31 0 3.38 1.07 3.38 3.37v4.75c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88V4.62c0-1.45-.42-1.87-1.88-1.87z" })
49
- ] });
50
- }
51
- );
52
- Icon3square1.displayName = "Icon3square1";
9
+ BatteryEmpty1.displayName = "BatteryEmpty1";
53
10
  export {
54
- Add11,
55
- FilterTick2,
56
- Icon3dcube1,
57
- Icon3square1
11
+ BatteryEmpty1
58
12
  };
59
13
  //# sourceMappingURL=index.mjs.map
package/index.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["icons/Add11.tsx","icons/FilterTick2.tsx","icons/Icon3dcube1.tsx","icons/Icon3square1.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the Add11 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Add11Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Add11 icon component\n * @example\n * ```tsx\n * import { Add11 } from 'magick-icons';\n * \n * <Add11 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Add11 = React.forwardRef<SVGSVGElement, Add11Props>(\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 20.25h-1.77c-.25 0-.48-.12-.62-.33a.73.73 0 0 1-.07-.7c.03-.08.06-.17.08-.26.09-.32.13-.6.13-.96 0-1-.39-1.93-1.11-2.64-1.42-1.44-3.87-1.43-5.28-.01a3.69 3.69 0 0 0-.99 3.56c.03.13.06.22.1.31.09.23.06.49-.08.69s-.37.33-.62.33H6c-2.62 0-4.75-2.13-4.75-4.75V6c0-2.62 2.13-4.75 4.75-4.75h12c2.62 0 4.75 2.13 4.75 4.75v9.5c0 2.62-2.13 4.75-4.75 4.75m-.8-1.5h.8c1.79 0 3.25-1.46 3.25-3.25V6c0-1.79-1.46-3.25-3.25-3.25H6C4.21 2.75 2.75 4.21 2.75 6v9.5c0 1.79 1.46 3.25 3.25 3.25h.8c-.04-.24-.05-.49-.05-.75 0-1.4.55-2.71 1.55-3.7a5.19 5.19 0 0 1 7.4 0c.99.98 1.55 2.3 1.55 3.7 0 .27-.02.51-.05.75\"/><path fill=\"#1e293b\" d=\"M6 6.25a.749.749 0 1 1-.002-1.502A.749.749 0 0 1 6 6.25M8.5 6.25a.749.749 0 1 1 0-1.5h.01c.41 0 .75.34.75.75s-.35.75-.76.75M11 6.25a.749.749 0 1 1-.002-1.502A.749.749 0 0 1 11 6.25M22 9.28H2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h20c.41 0 .75.34.75.75s-.34.75-.75.75M12 23.25c-2.21 0-4.19-1.41-4.94-3.5-.06-.15-.11-.3-.14-.47-.11-.39-.17-.82-.17-1.29 0-1.4.55-2.71 1.55-3.7a5.19 5.19 0 0 1 7.4 0c.99.98 1.55 2.3 1.55 3.7 0 .5-.06.94-.18 1.34a3 3 0 0 1-.14.45c-.25.72-.67 1.38-1.23 1.92-.99 1-2.3 1.55-3.7 1.55m0-9c-1 0-1.93.39-2.64 1.11a3.69 3.69 0 0 0-.99 3.56c.03.13.06.22.1.31.54 1.51 1.96 2.52 3.53 2.52 1 0 1.93-.39 2.64-1.11.41-.39.7-.85.89-1.39.05-.12.08-.21.1-.3.09-.32.13-.6.13-.96 0-1-.39-1.93-1.11-2.64a3.74 3.74 0 0 0-2.65-1.1\"/><path fill=\"#1e293b\" d=\"M12 20.16c-.41 0-.75-.34-.75-.75v-2.83c0-.41.34-.75.75-.75s.75.34.75.75v2.83c0 .42-.34.75-.75.75\"/><path fill=\"#1e293b\" d=\"M13.41 18.75h-2.83c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2.83a.749.749 0 1 1 0 1.5\"/></svg>\n );\n }\n);\n\nAdd11.displayName = 'Add11';\n","import React from 'react';\n\n/**\n * Props for the FilterTick2 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FilterTick2Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * FilterTick2 icon component\n * @example\n * ```tsx\n * import { FilterTick2 } from 'magick-icons';\n * \n * <FilterTick2 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const FilterTick2 = React.forwardRef<SVGSVGElement, FilterTick2Props>(\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=\"M16.88 20.25a5.3 5.3 0 0 1-2.97-.9 5.24 5.24 0 0 1-1.73-1.77c-.52-.85-.8-1.83-.8-2.83 0-3.03 2.47-5.5 5.5-5.5.42 0 .83.05 1.22.14 2.48.55 4.28 2.8 4.28 5.36 0 1.01-.27 1.99-.79 2.84a5.51 5.51 0 0 1-4.71 2.66m0-9.5c-2.21 0-4 1.79-4 4 0 .73.2 1.44.58 2.06.32.53.75.97 1.25 1.28.66.44 1.4.66 2.17.66 1.4 0 2.71-.74 3.43-1.94.38-.62.57-1.33.57-2.06 0-1.86-1.31-3.5-3.12-3.9-.29-.07-.58-.1-.88-.1\"/><path fill=\"#1e293b\" d=\"M16.2 16.67c-.19 0-.38-.07-.53-.22l-1.17-1.17a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l.66.66 2.01-1.85c.31-.28.78-.26 1.06.04s.26.78-.04 1.06l-2.54 2.34c-.14.13-.33.2-.51.2\"/><path fill=\"#1e293b\" d=\"M10.93 22.75c-.48 0-.96-.12-1.39-.36-.89-.5-1.42-1.4-1.42-2.41v-5.35c0-.51-.33-1.26-.65-1.65l-3.8-3.99c-.63-.65-1.12-1.74-1.12-2.54V4.12c0-1.61 1.22-2.87 2.77-2.87h13.34a2.77 2.77 0 0 1 2.77 2.77v2.22c0 1.05-.62 2.23-1.23 2.85l-1.8 1.59a.77.77 0 0 1-.67.17c-.27-.07-.56-.1-.86-.1-2.21 0-4 1.79-4 4 0 .73.2 1.44.58 2.06.32.53.75.97 1.25 1.28.22.14.36.38.36.64v.34c0 .79-.48 1.9-1.28 2.37l-1.38.89c-.44.28-.96.42-1.47.42m-5.6-20c-.71 0-1.27.6-1.27 1.37v2.33c0 .36.3 1.09.7 1.49l3.85 4.05c.51.63 1.02 1.69 1.02 2.64v5.35c0 .66.46.99.65 1.1.43.24.94.23 1.33-.01l1.4-.9c.27-.16.54-.67.56-1.03-.55-.41-1.03-.94-1.39-1.54-.52-.85-.8-1.83-.8-2.83a5.51 5.51 0 0 1 6.32-5.44l1.48-1.31c.34-.35.76-1.18.76-1.77V4.03c0-.7-.57-1.27-1.27-1.27H5.33z\"/></svg>\n );\n }\n);\n\nFilterTick2.displayName = 'FilterTick2';\n","import React from 'react';\n\n/**\n * Props for the Icon3dcube1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Icon3dcube1 icon component\n * @example\n * ```tsx\n * import { Icon3dcube1 } from 'magick-icons';\n * \n * <Icon3dcube1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Icon3dcube1 = React.forwardRef<SVGSVGElement, Icon3dcube1Props>(\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=\"M12 12.25c-.44 0-.88-.11-1.28-.32L4.21 8.42c-.59-.32-.96-.95-.96-1.65s.37-1.33.96-1.65l6.51-3.51c.8-.43 1.76-.43 2.55 0l6.51 3.51c.59.32.96.95.96 1.65s-.37 1.33-.96 1.65l-6.51 3.51c-.39.22-.83.32-1.27.32m0-9.47c-.19 0-.39.05-.57.15l-6.5 3.5c-.17.09-.18.28-.18.34s.01.25.18.33l6.51 3.51c.36.19.77.19 1.13 0l6.51-3.51c.16-.09.18-.28.18-.33 0-.06-.01-.25-.18-.33l-6.51-3.51c-.18-.1-.38-.15-.57-.15M9.78 22.72c-.28 0-.57-.07-.83-.2L2.89 19.5a2.97 2.97 0 0 1-1.64-2.66v-5.72c0-.65.33-1.24.88-1.58.56-.34 1.23-.37 1.81-.08L10 12.48c1.01.51 1.64 1.52 1.64 2.66v5.72c0 .65-.33 1.24-.88 1.58-.3.19-.64.28-.98.28M3.11 10.76c-.08 0-.15.03-.19.05-.06.04-.17.13-.17.31v5.72c0 .56.31 1.07.81 1.32l6.05 3.03c.16.08.29.02.35-.01.06-.04.17-.13.17-.31v-5.72c0-.56-.31-1.07-.81-1.32L3.27 10.8a.34.34 0 0 0-.16-.04M14.22 22.72c-.34 0-.68-.09-.98-.28-.55-.34-.88-.93-.88-1.58v-5.72c0-1.13.63-2.15 1.64-2.66l6.05-3.03c.58-.29 1.26-.26 1.81.08s.88.93.88 1.58v5.72c0 1.13-.63 2.15-1.64 2.66l-6.05 3.03c-.26.14-.55.2-.83.2m6.67-11.96c-.05 0-.1.01-.16.04l-6.05 3.03c-.5.25-.81.75-.81 1.32v5.72c0 .18.11.27.17.31s.19.09.35.01l6.05-3.03c.5-.25.81-.76.81-1.32v-5.72c0-.18-.11-.27-.17-.31a.4.4 0 0 0-.19-.05\"/></svg>\n );\n }\n);\n\nIcon3dcube1.displayName = 'Icon3dcube1';\n","import React from 'react';\n\n/**\n * Props for the Icon3square1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Icon3square1 icon component\n * @example\n * ```tsx\n * import { Icon3square1 } from 'magick-icons';\n * \n * <Icon3square1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Icon3square1 = React.forwardRef<SVGSVGElement, Icon3square1Props>(\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=\"M9.37 22.75H4.62c-2.3 0-3.37-1.07-3.37-3.37v-4.75c0-2.31 1.07-3.38 3.37-3.38H7c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H12c.41 0 .75.34.75.75v2.38c0 2.3-1.07 3.37-3.38 3.37m-4.75-10c-1.45 0-1.87.42-1.87 1.88v4.75c0 1.45.42 1.87 1.87 1.87h4.75c1.46 0 1.88-.42 1.88-1.87v-1.63H9.62c-2.3 0-3.37-1.07-3.37-3.38v-1.62z\"/><path fill=\"#1e293b\" d=\"M14.37 17.75H9.62c-2.3 0-3.37-1.07-3.37-3.38V9.62c0-2.3 1.07-3.37 3.37-3.37H12c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H17c.41 0 .75.34.75.75v2.37c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88v-1.62h-1.63c-2.3 0-3.37-1.07-3.37-3.38V7.75z\"/><path fill=\"#1e293b\" d=\"M19.37 12.75h-4.75c-2.3 0-3.37-1.07-3.37-3.38V4.62c0-2.3 1.07-3.37 3.37-3.37h4.75c2.31 0 3.38 1.07 3.38 3.37v4.75c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88V4.62c0-1.45-.42-1.87-1.88-1.87z\"/></svg>\n );\n }\n);\n\nIcon3square1.displayName = 'Icon3square1';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBZ,SAAoH,KAApH;AAHC,IAAM,QAAQ,MAAM;AAAA,EACzB,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,slBAAolB;AAAA,MAAE,oBAAC,UAAK,MAAK,WAAU,GAAE,quBAAmuB;AAAA,MAAE,oBAAC,UAAK,MAAK,WAAU,GAAE,oGAAkG;AAAA,MAAE,oBAAC,UAAK,MAAK,WAAU,GAAE,sFAAoF;AAAA,OAAE;AAAA,EAEzsD;AACF;AAEA,MAAM,cAAc;;;AC3BpB,OAAOA,YAAW;AAsBZ,SAAoH,OAAAC,MAApH,QAAAC,aAAA;AAHC,IAAM,cAAcF,OAAM;AAAA,EAC/B,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,2YAAyY;AAAA,MAAE,gBAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,oLAAkL;AAAA,MAAE,gBAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,iuBAA+tB;AAAA,OAAE;AAAA,EAE79C;AACF;AAEA,YAAY,cAAc;;;AC3B1B,OAAOE,YAAW;AAsBwG,gBAAAC,YAAA;AAHnH,IAAM,cAAcD,OAAM;AAAA,EAC/B,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,gBAAAC,KAAC,SAAI,KAAU,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAa,GAAG,OAAO,0BAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,6pCAA2pC,GAAE;AAAA,EAE5yC;AACF;AAEA,YAAY,cAAc;;;AC3B1B,OAAOC,YAAW;AAsBZ,SAAoH,OAAAC,MAApH,QAAAC,aAAA;AAHC,IAAM,eAAeF,OAAM;AAAA,EAChC,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,qUAAmU;AAAA,MAAE,gBAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,sUAAoU;AAAA,MAAE,gBAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,gRAA8Q;AAAA,OAAE;AAAA,EAExlC;AACF;AAEA,aAAa,cAAc;","names":["React","jsx","jsxs","React","jsx","React","jsx","jsxs"]}
1
+ {"version":3,"sources":["icons/BatteryEmpty1.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the BatteryEmpty1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * BatteryEmpty1 icon component\n * @example\n * ```tsx\n * import { BatteryEmpty1 } from 'magick-icons';\n * \n * <BatteryEmpty1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const BatteryEmpty1 = React.forwardRef<SVGSVGElement, BatteryEmpty1Props>(\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=\"M13 19.75H7c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75h6c4.41 0 5.75 1.34 5.75 5.75l-.25 2.5c0 4.41-1.09 7.25-5.5 7.25m-6-14c-3.58 0-4.25.68-4.25 4.25v4c0 3.57.67 4.25 4.25 4.25h6c3.58 0 4.25-.68 4.25-4.25v-4c0-3.57-.67-4.25-4.25-4.25zM20.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.25\"/></svg>\n );\n }\n);\n\nBatteryEmpty1.displayName = 'BatteryEmpty1';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBwG;AAHnH,IAAM,gBAAgB,MAAM;AAAA,EACjC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,oBAAC,SAAI,KAAU,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAa,GAAG,OAAO,8BAAC,UAAK,MAAK,WAAU,GAAE,keAAge,GAAE;AAAA,EAEjnB;AACF;AAEA,cAAc,cAAc;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.79",
3
+ "version": "0.1.81",
4
4
  "description": "Icon library for company projects",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",