magick-icons 0.1.86 → 0.1.88
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 +7 -25
- package/index.d.ts +7 -25
- package/index.js +6 -27
- package/index.js.map +1 -1
- package/index.mjs +6 -26
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,39 +1,21 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* Props for the
|
|
4
|
+
* Props for the BatteryEmpty1 icon component
|
|
5
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
6
|
*/
|
|
7
|
-
interface
|
|
7
|
+
interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {
|
|
8
8
|
size?: number | string;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* BatteryEmpty1 icon component
|
|
12
12
|
* @example
|
|
13
13
|
* ```tsx
|
|
14
|
-
* import {
|
|
14
|
+
* import { BatteryEmpty1 } from 'magick-icons';
|
|
15
15
|
*
|
|
16
|
-
* <
|
|
16
|
+
* <BatteryEmpty1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
declare const
|
|
19
|
+
declare const BatteryEmpty1: React.ForwardRefExoticComponent<Omit<BatteryEmpty1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
* Props for the AddCircle1 icon component
|
|
23
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
-
*/
|
|
25
|
-
interface AddCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
26
|
-
size?: number | string;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* AddCircle1 icon component
|
|
30
|
-
* @example
|
|
31
|
-
* ```tsx
|
|
32
|
-
* import { AddCircle1 } from 'magick-icons';
|
|
33
|
-
*
|
|
34
|
-
* <AddCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
-
* ```
|
|
36
|
-
*/
|
|
37
|
-
declare const AddCircle1: React.ForwardRefExoticComponent<Omit<AddCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
-
|
|
39
|
-
export { Add1, type Add1Props, AddCircle1, type AddCircle1Props };
|
|
21
|
+
export { BatteryEmpty1, type BatteryEmpty1Props };
|
package/index.d.ts
CHANGED
|
@@ -1,39 +1,21 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* Props for the
|
|
4
|
+
* Props for the BatteryEmpty1 icon component
|
|
5
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
6
|
*/
|
|
7
|
-
interface
|
|
7
|
+
interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {
|
|
8
8
|
size?: number | string;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* BatteryEmpty1 icon component
|
|
12
12
|
* @example
|
|
13
13
|
* ```tsx
|
|
14
|
-
* import {
|
|
14
|
+
* import { BatteryEmpty1 } from 'magick-icons';
|
|
15
15
|
*
|
|
16
|
-
* <
|
|
16
|
+
* <BatteryEmpty1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
declare const
|
|
19
|
+
declare const BatteryEmpty1: React.ForwardRefExoticComponent<Omit<BatteryEmpty1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
* Props for the AddCircle1 icon component
|
|
23
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
-
*/
|
|
25
|
-
interface AddCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
26
|
-
size?: number | string;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* AddCircle1 icon component
|
|
30
|
-
* @example
|
|
31
|
-
* ```tsx
|
|
32
|
-
* import { AddCircle1 } from 'magick-icons';
|
|
33
|
-
*
|
|
34
|
-
* <AddCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
-
* ```
|
|
36
|
-
*/
|
|
37
|
-
declare const AddCircle1: React.ForwardRefExoticComponent<Omit<AddCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
-
|
|
39
|
-
export { Add1, type Add1Props, AddCircle1, type AddCircle1Props };
|
|
21
|
+
export { BatteryEmpty1, type BatteryEmpty1Props };
|
package/index.js
CHANGED
|
@@ -30,42 +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
|
-
|
|
34
|
-
AddCircle1: () => AddCircle1
|
|
33
|
+
BatteryEmpty1: () => BatteryEmpty1
|
|
35
34
|
});
|
|
36
35
|
module.exports = __toCommonJS(index_exports);
|
|
37
36
|
|
|
38
|
-
// dist/icons/
|
|
37
|
+
// dist/icons/BatteryEmpty1.tsx
|
|
39
38
|
var import_react = __toESM(require("react"));
|
|
40
39
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
41
|
-
var
|
|
40
|
+
var BatteryEmpty1 = import_react.default.forwardRef(
|
|
42
41
|
({ size, ...props }, ref) => {
|
|
43
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.
|
|
44
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M14 21.75H8.5c-2.89 0-5.25-2.35-5.25-5.25v-10c0-2.9 2.36-5.25 5.25-5.25h7c2.89 0 5.25 2.35 5.25 5.25v6.91c0 .25-.13.49-.34.63s-.48.16-.71.06c-.54-.23-1.12-.35-1.71-.35A4.26 4.26 0 0 0 13.74 18c0 .94.29 1.82.85 2.55.17.23.2.53.07.79-.12.25-.37.41-.66.41m-5.5-19c-2.07 0-3.75 1.68-3.75 3.75v10c0 2.07 1.68 3.75 3.75 3.75h4.2c-.3-.7-.45-1.46-.45-2.25 0-3.17 2.58-5.75 5.75-5.75.42 0 .84.05 1.25.14V6.5c0-2.07-1.68-3.75-3.75-3.75z" }),
|
|
45
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M14 6.75h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4c.41 0 .75.34.75.75s-.34.75-.75.75M18 23.75c-1.8 0-3.52-.86-4.6-2.3A5.68 5.68 0 0 1 12.25 18a5.757 5.757 0 0 1 8.04-5.28c2.1.93 3.46 3 3.46 5.28 0 3.17-2.58 5.75-5.75 5.75m0-10A4.26 4.26 0 0 0 13.75 18c0 .94.29 1.82.85 2.55.8 1.07 2.07 1.7 3.4 1.7A4.26 4.26 0 0 0 22.25 18c0-1.68-1-3.22-2.55-3.9a4.3 4.3 0 0 0-1.7-.35" }),
|
|
46
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M19.92 18.75h-3.83c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.83c.41 0 .75.34.75.75s-.34.75-.75.75" }),
|
|
47
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "M18 20.67c-.41 0-.75-.34-.75-.75v-3.83c0-.41.34-.75.75-.75s.75.34.75.75v3.83c0 .41-.34.75-.75.75" })
|
|
48
|
-
] });
|
|
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" }) });
|
|
49
43
|
}
|
|
50
44
|
);
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
// dist/icons/AddCircle1.tsx
|
|
54
|
-
var import_react2 = __toESM(require("react"));
|
|
55
|
-
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
56
|
-
var AddCircle1 = import_react2.default.forwardRef(
|
|
57
|
-
({ size, ...props }, ref) => {
|
|
58
|
-
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: [
|
|
59
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M12 22.75C6.07 22.75 1.25 17.93 1.25 12S6.07 1.25 12 1.25 22.75 6.07 22.75 12 17.93 22.75 12 22.75m0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75" }),
|
|
60
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M16 12.75H8c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h8c.41 0 .75.34.75.75s-.34.75-.75.75" }),
|
|
61
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M12 16.75c-.41 0-.75-.34-.75-.75V8c0-.41.34-.75.75-.75s.75.34.75.75v8c0 .41-.34.75-.75.75" })
|
|
62
|
-
] });
|
|
63
|
-
}
|
|
64
|
-
);
|
|
65
|
-
AddCircle1.displayName = "AddCircle1";
|
|
45
|
+
BatteryEmpty1.displayName = "BatteryEmpty1";
|
|
66
46
|
// Annotate the CommonJS export names for ESM import in node:
|
|
67
47
|
0 && (module.exports = {
|
|
68
|
-
|
|
69
|
-
AddCircle1
|
|
48
|
+
BatteryEmpty1
|
|
70
49
|
});
|
|
71
50
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts","icons/
|
|
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,33 +1,13 @@
|
|
|
1
|
-
// dist/icons/
|
|
1
|
+
// dist/icons/BatteryEmpty1.tsx
|
|
2
2
|
import React from "react";
|
|
3
|
-
import { jsx
|
|
4
|
-
var
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
var BatteryEmpty1 = React.forwardRef(
|
|
5
5
|
({ size, ...props }, ref) => {
|
|
6
|
-
return /* @__PURE__ */
|
|
7
|
-
/* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M14 21.75H8.5c-2.89 0-5.25-2.35-5.25-5.25v-10c0-2.9 2.36-5.25 5.25-5.25h7c2.89 0 5.25 2.35 5.25 5.25v6.91c0 .25-.13.49-.34.63s-.48.16-.71.06c-.54-.23-1.12-.35-1.71-.35A4.26 4.26 0 0 0 13.74 18c0 .94.29 1.82.85 2.55.17.23.2.53.07.79-.12.25-.37.41-.66.41m-5.5-19c-2.07 0-3.75 1.68-3.75 3.75v10c0 2.07 1.68 3.75 3.75 3.75h4.2c-.3-.7-.45-1.46-.45-2.25 0-3.17 2.58-5.75 5.75-5.75.42 0 .84.05 1.25.14V6.5c0-2.07-1.68-3.75-3.75-3.75z" }),
|
|
8
|
-
/* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M14 6.75h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4c.41 0 .75.34.75.75s-.34.75-.75.75M18 23.75c-1.8 0-3.52-.86-4.6-2.3A5.68 5.68 0 0 1 12.25 18a5.757 5.757 0 0 1 8.04-5.28c2.1.93 3.46 3 3.46 5.28 0 3.17-2.58 5.75-5.75 5.75m0-10A4.26 4.26 0 0 0 13.75 18c0 .94.29 1.82.85 2.55.8 1.07 2.07 1.7 3.4 1.7A4.26 4.26 0 0 0 22.25 18c0-1.68-1-3.22-2.55-3.9a4.3 4.3 0 0 0-1.7-.35" }),
|
|
9
|
-
/* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M19.92 18.75h-3.83c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.83c.41 0 .75.34.75.75s-.34.75-.75.75" }),
|
|
10
|
-
/* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "M18 20.67c-.41 0-.75-.34-.75-.75v-3.83c0-.41.34-.75.75-.75s.75.34.75.75v3.83c0 .41-.34.75-.75.75" })
|
|
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
|
-
|
|
15
|
-
|
|
16
|
-
// dist/icons/AddCircle1.tsx
|
|
17
|
-
import React2 from "react";
|
|
18
|
-
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
19
|
-
var AddCircle1 = 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: "M12 22.75C6.07 22.75 1.25 17.93 1.25 12S6.07 1.25 12 1.25 22.75 6.07 22.75 12 17.93 22.75 12 22.75m0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75" }),
|
|
23
|
-
/* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "M16 12.75H8c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h8c.41 0 .75.34.75.75s-.34.75-.75.75" }),
|
|
24
|
-
/* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "M12 16.75c-.41 0-.75-.34-.75-.75V8c0-.41.34-.75.75-.75s.75.34.75.75v8c0 .41-.34.75-.75.75" })
|
|
25
|
-
] });
|
|
26
|
-
}
|
|
27
|
-
);
|
|
28
|
-
AddCircle1.displayName = "AddCircle1";
|
|
9
|
+
BatteryEmpty1.displayName = "BatteryEmpty1";
|
|
29
10
|
export {
|
|
30
|
-
|
|
31
|
-
AddCircle1
|
|
11
|
+
BatteryEmpty1
|
|
32
12
|
};
|
|
33
13
|
//# sourceMappingURL=index.mjs.map
|
package/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["icons/
|
|
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":[]}
|