magick-icons 0.1.100 → 0.1.101
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 +37 -1
- package/index.d.ts +37 -1
- package/index.js +36 -5
- package/index.js.map +1 -1
- package/index.mjs +34 -5
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -18,6 +18,42 @@ interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
18
18
|
*/
|
|
19
19
|
declare const BatteryCharging1: React.ForwardRefExoticComponent<Omit<BatteryCharging1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
20
|
|
|
21
|
+
/**
|
|
22
|
+
* Props for the Blend1 icon component
|
|
23
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
+
*/
|
|
25
|
+
interface Blend1Props extends React.SVGProps<SVGSVGElement> {
|
|
26
|
+
size?: number | string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Blend1 icon component
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* import { Blend1 } from 'magick-icons';
|
|
33
|
+
*
|
|
34
|
+
* <Blend1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
declare const Blend1: React.ForwardRefExoticComponent<Omit<Blend1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Props for the Blend21 icon component
|
|
41
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
+
*/
|
|
43
|
+
interface Blend21Props extends React.SVGProps<SVGSVGElement> {
|
|
44
|
+
size?: number | string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Blend21 icon component
|
|
48
|
+
* @example
|
|
49
|
+
* ```tsx
|
|
50
|
+
* import { Blend21 } from 'magick-icons';
|
|
51
|
+
*
|
|
52
|
+
* <Blend21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
declare const Blend21: React.ForwardRefExoticComponent<Omit<Blend21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
|
|
21
57
|
/**
|
|
22
58
|
* Props for the FilterTick2 icon component
|
|
23
59
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -36,4 +72,4 @@ interface FilterTick2Props extends React.SVGProps<SVGSVGElement> {
|
|
|
36
72
|
*/
|
|
37
73
|
declare const FilterTick2: React.ForwardRefExoticComponent<Omit<FilterTick2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
74
|
|
|
39
|
-
export { BatteryCharging1, type BatteryCharging1Props, FilterTick2, type FilterTick2Props };
|
|
75
|
+
export { BatteryCharging1, type BatteryCharging1Props, Blend1, type Blend1Props, Blend21, type Blend21Props, FilterTick2, type FilterTick2Props };
|
package/index.d.ts
CHANGED
|
@@ -18,6 +18,42 @@ interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
18
18
|
*/
|
|
19
19
|
declare const BatteryCharging1: React.ForwardRefExoticComponent<Omit<BatteryCharging1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
20
|
|
|
21
|
+
/**
|
|
22
|
+
* Props for the Blend1 icon component
|
|
23
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
+
*/
|
|
25
|
+
interface Blend1Props extends React.SVGProps<SVGSVGElement> {
|
|
26
|
+
size?: number | string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Blend1 icon component
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* import { Blend1 } from 'magick-icons';
|
|
33
|
+
*
|
|
34
|
+
* <Blend1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
declare const Blend1: React.ForwardRefExoticComponent<Omit<Blend1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Props for the Blend21 icon component
|
|
41
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
+
*/
|
|
43
|
+
interface Blend21Props extends React.SVGProps<SVGSVGElement> {
|
|
44
|
+
size?: number | string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Blend21 icon component
|
|
48
|
+
* @example
|
|
49
|
+
* ```tsx
|
|
50
|
+
* import { Blend21 } from 'magick-icons';
|
|
51
|
+
*
|
|
52
|
+
* <Blend21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
declare const Blend21: React.ForwardRefExoticComponent<Omit<Blend21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
|
|
21
57
|
/**
|
|
22
58
|
* Props for the FilterTick2 icon component
|
|
23
59
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -36,4 +72,4 @@ interface FilterTick2Props extends React.SVGProps<SVGSVGElement> {
|
|
|
36
72
|
*/
|
|
37
73
|
declare const FilterTick2: React.ForwardRefExoticComponent<Omit<FilterTick2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
74
|
|
|
39
|
-
export { BatteryCharging1, type BatteryCharging1Props, FilterTick2, type FilterTick2Props };
|
|
75
|
+
export { BatteryCharging1, type BatteryCharging1Props, Blend1, type Blend1Props, Blend21, type Blend21Props, FilterTick2, type FilterTick2Props };
|
package/index.js
CHANGED
|
@@ -31,6 +31,8 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
31
31
|
var index_exports = {};
|
|
32
32
|
__export(index_exports, {
|
|
33
33
|
BatteryCharging1: () => BatteryCharging1,
|
|
34
|
+
Blend1: () => Blend1,
|
|
35
|
+
Blend21: () => Blend21,
|
|
34
36
|
FilterTick2: () => FilterTick2
|
|
35
37
|
});
|
|
36
38
|
module.exports = __toCommonJS(index_exports);
|
|
@@ -48,15 +50,42 @@ var BatteryCharging1 = import_react.default.forwardRef(
|
|
|
48
50
|
);
|
|
49
51
|
BatteryCharging1.displayName = "BatteryCharging1";
|
|
50
52
|
|
|
51
|
-
// dist/icons/
|
|
53
|
+
// dist/icons/Blend1.tsx
|
|
52
54
|
var import_react2 = __toESM(require("react"));
|
|
53
55
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
54
|
-
var
|
|
56
|
+
var Blend1 = import_react2.default.forwardRef(
|
|
55
57
|
({ size, ...props }, ref) => {
|
|
56
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: [
|
|
57
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "
|
|
58
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "
|
|
59
|
-
|
|
59
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M15.97 18.75c-1.67 0-3.27-.62-4.5-1.73a.75.75 0 0 1 0-1.12 5.2 5.2 0 0 0 1.75-3.9 5.2 5.2 0 0 0-1.75-3.9.75.75 0 0 1 0-1.12 6.68 6.68 0 0 1 4.5-1.73c3.72 0 6.75 3.03 6.75 6.75s-3.02 6.75-6.75 6.75m-2.87-2.36c.85.56 1.84.86 2.88.86 2.89 0 5.25-2.36 5.25-5.25s-2.36-5.25-5.25-5.25c-1.03 0-2.03.3-2.88.86a6.73 6.73 0 0 1 0 8.78" }),
|
|
60
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#1e293b", d: "M7.97 18.75c-3.72 0-6.75-3.03-6.75-6.75s3.03-6.75 6.75-6.75c1.67 0 3.27.62 4.5 1.73A6.72 6.72 0 0 1 14.72 12a6.7 6.7 0 0 1-2.25 5.02 6.7 6.7 0 0 1-4.5 1.73m0-12c-2.89 0-5.25 2.36-5.25 5.25s2.36 5.25 5.25 5.25c1.3 0 2.54-.48 3.5-1.35a5.2 5.2 0 0 0 1.75-3.9c0-1.49-.64-2.92-1.75-3.9-.96-.87-2.2-1.35-3.5-1.35" })
|
|
61
|
+
] });
|
|
62
|
+
}
|
|
63
|
+
);
|
|
64
|
+
Blend1.displayName = "Blend1";
|
|
65
|
+
|
|
66
|
+
// dist/icons/Blend21.tsx
|
|
67
|
+
var import_react3 = __toESM(require("react"));
|
|
68
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
69
|
+
var Blend21 = import_react3.default.forwardRef(
|
|
70
|
+
({ size, ...props }, ref) => {
|
|
71
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
72
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "#1e293b", d: "M8.97 16.75c-.39 0-.73-.03-1.05-.08-3.8-.5-6.7-3.8-6.7-7.67 0-4.27 3.48-7.75 7.75-7.75 3.87 0 7.17 2.89 7.67 6.72.05.3.08.64.08 1.03 0 4.27-3.47 7.75-7.75 7.75m0-14c-3.45 0-6.25 2.8-6.25 6.25a6.26 6.26 0 0 0 5.42 6.19c.26.04.53.06.83.06 3.45 0 6.25-2.8 6.25-6.25q0-.45-.06-.81a6.254 6.254 0 0 0-6.19-5.44" }),
|
|
73
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "#1e293b", d: "M14.97 22.75c-3.87 0-7.17-2.89-7.67-6.72a.747.747 0 0 1 .87-.84c.24.04.5.06.8.06 3.45 0 6.25-2.8 6.25-6.25q0-.45-.06-.81c-.04-.23.04-.47.2-.64s.39-.26.64-.22c3.83.5 6.72 3.8 6.72 7.67 0 4.27-3.47 7.75-7.75 7.75m-5.99-6c.76 2.62 3.19 4.5 5.99 4.5 3.45 0 6.25-2.8 6.25-6.25 0-2.8-1.88-5.24-4.5-5.99 0 4.26-3.47 7.74-7.74 7.74" }),
|
|
74
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "#1e293b", d: "M15.43 16.16c-.19 0-.38-.07-.53-.21l-1.3-1.28a.755.755 0 0 1-.01-1.06c.29-.29.76-.3 1.06-.01l1.3 1.28c.29.29.3.77.01 1.06-.14.14-.34.22-.53.22M16.97 12.75c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1 1c.29.29.29.77 0 1.06a.7.7 0 0 1-.53.22M11.97 17.75c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1 1c.29.29.29.77 0 1.06a.7.7 0 0 1-.53.22" })
|
|
75
|
+
] });
|
|
76
|
+
}
|
|
77
|
+
);
|
|
78
|
+
Blend21.displayName = "Blend21";
|
|
79
|
+
|
|
80
|
+
// dist/icons/FilterTick2.tsx
|
|
81
|
+
var import_react4 = __toESM(require("react"));
|
|
82
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
83
|
+
var FilterTick2 = import_react4.default.forwardRef(
|
|
84
|
+
({ size, ...props }, ref) => {
|
|
85
|
+
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: [
|
|
86
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.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" }),
|
|
87
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.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" }),
|
|
88
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.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" })
|
|
60
89
|
] });
|
|
61
90
|
}
|
|
62
91
|
);
|
|
@@ -64,6 +93,8 @@ FilterTick2.displayName = "FilterTick2";
|
|
|
64
93
|
// Annotate the CommonJS export names for ESM import in node:
|
|
65
94
|
0 && (module.exports = {
|
|
66
95
|
BatteryCharging1,
|
|
96
|
+
Blend1,
|
|
97
|
+
Blend21,
|
|
67
98
|
FilterTick2
|
|
68
99
|
});
|
|
69
100
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts","icons/BatteryCharging1.tsx","icons/FilterTick2.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 { BatteryCharging1 } from 'magick-icons';\n * \n * function MyComponent() {\n * return <BatteryCharging1 size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\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\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","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","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"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBZ;AAHC,IAAM,mBAAmB,aAAAA,QAAM;AAAA,EACpC,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,6iBAA2iB;AAAA,MAAE,4CAAC,UAAK,MAAK,WAAU,GAAE,gYAA8X;AAAA,OAAE;AAAA,EAEnlC;AACF;AAEA,iBAAiB,cAAc;;;AC3B/B,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;","names":["React","import_react","import_jsx_runtime","React"]}
|
|
1
|
+
{"version":3,"sources":["index.ts","icons/BatteryCharging1.tsx","icons/Blend1.tsx","icons/Blend21.tsx","icons/FilterTick2.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 { BatteryCharging1 } from 'magick-icons';\n * \n * function MyComponent() {\n * return <BatteryCharging1 size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\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\n/**\n * Blend1 icon component and its props type\n * @see {@link Blend1Props} for available props\n */\nexport { Blend1, type Blend1Props } from './icons/Blend1';\n\n/**\n * Blend21 icon component and its props type\n * @see {@link Blend21Props} for available props\n */\nexport { Blend21, type Blend21Props } from './icons/Blend21';\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","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","import React from 'react';\n\n/**\n * Props for the Blend1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Blend1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Blend1 icon component\n * @example\n * ```tsx\n * import { Blend1 } from 'magick-icons';\n * \n * <Blend1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Blend1 = React.forwardRef<SVGSVGElement, Blend1Props>(\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=\"M15.97 18.75c-1.67 0-3.27-.62-4.5-1.73a.75.75 0 0 1 0-1.12 5.2 5.2 0 0 0 1.75-3.9 5.2 5.2 0 0 0-1.75-3.9.75.75 0 0 1 0-1.12 6.68 6.68 0 0 1 4.5-1.73c3.72 0 6.75 3.03 6.75 6.75s-3.02 6.75-6.75 6.75m-2.87-2.36c.85.56 1.84.86 2.88.86 2.89 0 5.25-2.36 5.25-5.25s-2.36-5.25-5.25-5.25c-1.03 0-2.03.3-2.88.86a6.73 6.73 0 0 1 0 8.78\"/><path fill=\"#1e293b\" d=\"M7.97 18.75c-3.72 0-6.75-3.03-6.75-6.75s3.03-6.75 6.75-6.75c1.67 0 3.27.62 4.5 1.73A6.72 6.72 0 0 1 14.72 12a6.7 6.7 0 0 1-2.25 5.02 6.7 6.7 0 0 1-4.5 1.73m0-12c-2.89 0-5.25 2.36-5.25 5.25s2.36 5.25 5.25 5.25c1.3 0 2.54-.48 3.5-1.35a5.2 5.2 0 0 0 1.75-3.9c0-1.49-.64-2.92-1.75-3.9-.96-.87-2.2-1.35-3.5-1.35\"/></svg>\n );\n }\n);\n\nBlend1.displayName = 'Blend1';\n","import React from 'react';\n\n/**\n * Props for the Blend21 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Blend21Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Blend21 icon component\n * @example\n * ```tsx\n * import { Blend21 } from 'magick-icons';\n * \n * <Blend21 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Blend21 = React.forwardRef<SVGSVGElement, Blend21Props>(\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=\"M8.97 16.75c-.39 0-.73-.03-1.05-.08-3.8-.5-6.7-3.8-6.7-7.67 0-4.27 3.48-7.75 7.75-7.75 3.87 0 7.17 2.89 7.67 6.72.05.3.08.64.08 1.03 0 4.27-3.47 7.75-7.75 7.75m0-14c-3.45 0-6.25 2.8-6.25 6.25a6.26 6.26 0 0 0 5.42 6.19c.26.04.53.06.83.06 3.45 0 6.25-2.8 6.25-6.25q0-.45-.06-.81a6.254 6.254 0 0 0-6.19-5.44\"/><path fill=\"#1e293b\" d=\"M14.97 22.75c-3.87 0-7.17-2.89-7.67-6.72a.747.747 0 0 1 .87-.84c.24.04.5.06.8.06 3.45 0 6.25-2.8 6.25-6.25q0-.45-.06-.81c-.04-.23.04-.47.2-.64s.39-.26.64-.22c3.83.5 6.72 3.8 6.72 7.67 0 4.27-3.47 7.75-7.75 7.75m-5.99-6c.76 2.62 3.19 4.5 5.99 4.5 3.45 0 6.25-2.8 6.25-6.25 0-2.8-1.88-5.24-4.5-5.99 0 4.26-3.47 7.74-7.74 7.74\"/><path fill=\"#1e293b\" d=\"M15.43 16.16c-.19 0-.38-.07-.53-.21l-1.3-1.28a.755.755 0 0 1-.01-1.06c.29-.29.76-.3 1.06-.01l1.3 1.28c.29.29.3.77.01 1.06-.14.14-.34.22-.53.22M16.97 12.75c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1 1c.29.29.29.77 0 1.06a.7.7 0 0 1-.53.22M11.97 17.75c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1 1c.29.29.29.77 0 1.06a.7.7 0 0 1-.53.22\"/></svg>\n );\n }\n);\n\nBlend21.displayName = 'Blend21';\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"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBZ;AAHC,IAAM,mBAAmB,aAAAA,QAAM;AAAA,EACpC,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,6iBAA2iB;AAAA,MAAE,4CAAC,UAAK,MAAK,WAAU,GAAE,gYAA8X;AAAA,OAAE;AAAA,EAEnlC;AACF;AAEA,iBAAiB,cAAc;;;AC3B/B,IAAAC,gBAAkB;AAsBZ,IAAAC,sBAAA;AAHC,IAAM,SAAS,cAAAC,QAAM;AAAA,EAC1B,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,wUAAsU;AAAA,MAAE,6CAAC,UAAK,MAAK,WAAU,GAAE,sTAAoT;AAAA,OAAE;AAAA,EAEpyB;AACF;AAEA,OAAO,cAAc;;;AC3BrB,IAAAC,gBAAkB;AAsBZ,IAAAC,sBAAA;AAHC,IAAM,UAAU,cAAAC,QAAM;AAAA,EAC3B,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,oTAAkT;AAAA,MAAE,6CAAC,UAAK,MAAK,WAAU,GAAE,uUAAqU;AAAA,MAAE,6CAAC,UAAK,MAAK,WAAU,GAAE,8YAA4Y;AAAA,OAAE;AAAA,EAEtsC;AACF;AAEA,QAAQ,cAAc;;;AC3BtB,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;","names":["React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React","import_react","import_jsx_runtime","React"]}
|
package/index.mjs
CHANGED
|
@@ -11,21 +11,50 @@ var BatteryCharging1 = React.forwardRef(
|
|
|
11
11
|
);
|
|
12
12
|
BatteryCharging1.displayName = "BatteryCharging1";
|
|
13
13
|
|
|
14
|
-
// dist/icons/
|
|
14
|
+
// dist/icons/Blend1.tsx
|
|
15
15
|
import React2 from "react";
|
|
16
16
|
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
17
|
-
var
|
|
17
|
+
var Blend1 = React2.forwardRef(
|
|
18
18
|
({ size, ...props }, ref) => {
|
|
19
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: "
|
|
21
|
-
/* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "
|
|
22
|
-
|
|
20
|
+
/* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "M15.97 18.75c-1.67 0-3.27-.62-4.5-1.73a.75.75 0 0 1 0-1.12 5.2 5.2 0 0 0 1.75-3.9 5.2 5.2 0 0 0-1.75-3.9.75.75 0 0 1 0-1.12 6.68 6.68 0 0 1 4.5-1.73c3.72 0 6.75 3.03 6.75 6.75s-3.02 6.75-6.75 6.75m-2.87-2.36c.85.56 1.84.86 2.88.86 2.89 0 5.25-2.36 5.25-5.25s-2.36-5.25-5.25-5.25c-1.03 0-2.03.3-2.88.86a6.73 6.73 0 0 1 0 8.78" }),
|
|
21
|
+
/* @__PURE__ */ jsx2("path", { fill: "#1e293b", d: "M7.97 18.75c-3.72 0-6.75-3.03-6.75-6.75s3.03-6.75 6.75-6.75c1.67 0 3.27.62 4.5 1.73A6.72 6.72 0 0 1 14.72 12a6.7 6.7 0 0 1-2.25 5.02 6.7 6.7 0 0 1-4.5 1.73m0-12c-2.89 0-5.25 2.36-5.25 5.25s2.36 5.25 5.25 5.25c1.3 0 2.54-.48 3.5-1.35a5.2 5.2 0 0 0 1.75-3.9c0-1.49-.64-2.92-1.75-3.9-.96-.87-2.2-1.35-3.5-1.35" })
|
|
22
|
+
] });
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
Blend1.displayName = "Blend1";
|
|
26
|
+
|
|
27
|
+
// dist/icons/Blend21.tsx
|
|
28
|
+
import React3 from "react";
|
|
29
|
+
import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
30
|
+
var Blend21 = React3.forwardRef(
|
|
31
|
+
({ size, ...props }, ref) => {
|
|
32
|
+
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: [
|
|
33
|
+
/* @__PURE__ */ jsx3("path", { fill: "#1e293b", d: "M8.97 16.75c-.39 0-.73-.03-1.05-.08-3.8-.5-6.7-3.8-6.7-7.67 0-4.27 3.48-7.75 7.75-7.75 3.87 0 7.17 2.89 7.67 6.72.05.3.08.64.08 1.03 0 4.27-3.47 7.75-7.75 7.75m0-14c-3.45 0-6.25 2.8-6.25 6.25a6.26 6.26 0 0 0 5.42 6.19c.26.04.53.06.83.06 3.45 0 6.25-2.8 6.25-6.25q0-.45-.06-.81a6.254 6.254 0 0 0-6.19-5.44" }),
|
|
34
|
+
/* @__PURE__ */ jsx3("path", { fill: "#1e293b", d: "M14.97 22.75c-3.87 0-7.17-2.89-7.67-6.72a.747.747 0 0 1 .87-.84c.24.04.5.06.8.06 3.45 0 6.25-2.8 6.25-6.25q0-.45-.06-.81c-.04-.23.04-.47.2-.64s.39-.26.64-.22c3.83.5 6.72 3.8 6.72 7.67 0 4.27-3.47 7.75-7.75 7.75m-5.99-6c.76 2.62 3.19 4.5 5.99 4.5 3.45 0 6.25-2.8 6.25-6.25 0-2.8-1.88-5.24-4.5-5.99 0 4.26-3.47 7.74-7.74 7.74" }),
|
|
35
|
+
/* @__PURE__ */ jsx3("path", { fill: "#1e293b", d: "M15.43 16.16c-.19 0-.38-.07-.53-.21l-1.3-1.28a.755.755 0 0 1-.01-1.06c.29-.29.76-.3 1.06-.01l1.3 1.28c.29.29.3.77.01 1.06-.14.14-.34.22-.53.22M16.97 12.75c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1 1c.29.29.29.77 0 1.06a.7.7 0 0 1-.53.22M11.97 17.75c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1 1c.29.29.29.77 0 1.06a.7.7 0 0 1-.53.22" })
|
|
36
|
+
] });
|
|
37
|
+
}
|
|
38
|
+
);
|
|
39
|
+
Blend21.displayName = "Blend21";
|
|
40
|
+
|
|
41
|
+
// dist/icons/FilterTick2.tsx
|
|
42
|
+
import React4 from "react";
|
|
43
|
+
import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
44
|
+
var FilterTick2 = React4.forwardRef(
|
|
45
|
+
({ size, ...props }, ref) => {
|
|
46
|
+
return /* @__PURE__ */ jsxs4("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
47
|
+
/* @__PURE__ */ jsx4("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" }),
|
|
48
|
+
/* @__PURE__ */ jsx4("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" }),
|
|
49
|
+
/* @__PURE__ */ jsx4("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" })
|
|
23
50
|
] });
|
|
24
51
|
}
|
|
25
52
|
);
|
|
26
53
|
FilterTick2.displayName = "FilterTick2";
|
|
27
54
|
export {
|
|
28
55
|
BatteryCharging1,
|
|
56
|
+
Blend1,
|
|
57
|
+
Blend21,
|
|
29
58
|
FilterTick2
|
|
30
59
|
};
|
|
31
60
|
//# sourceMappingURL=index.mjs.map
|
package/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["icons/BatteryCharging1.tsx","icons/FilterTick2.tsx"],"sourcesContent":["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","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"],"mappings":";AAAA,OAAO,WAAW;AAsBZ,SAAoH,KAApH;AAHC,IAAM,mBAAmB,MAAM;AAAA,EACpC,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,6iBAA2iB;AAAA,MAAE,oBAAC,UAAK,MAAK,WAAU,GAAE,gYAA8X;AAAA,OAAE;AAAA,EAEnlC;AACF;AAEA,iBAAiB,cAAc;;;AC3B/B,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;","names":["React","jsx","jsxs"]}
|
|
1
|
+
{"version":3,"sources":["icons/BatteryCharging1.tsx","icons/Blend1.tsx","icons/Blend21.tsx","icons/FilterTick2.tsx"],"sourcesContent":["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","import React from 'react';\n\n/**\n * Props for the Blend1 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Blend1Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Blend1 icon component\n * @example\n * ```tsx\n * import { Blend1 } from 'magick-icons';\n * \n * <Blend1 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Blend1 = React.forwardRef<SVGSVGElement, Blend1Props>(\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=\"M15.97 18.75c-1.67 0-3.27-.62-4.5-1.73a.75.75 0 0 1 0-1.12 5.2 5.2 0 0 0 1.75-3.9 5.2 5.2 0 0 0-1.75-3.9.75.75 0 0 1 0-1.12 6.68 6.68 0 0 1 4.5-1.73c3.72 0 6.75 3.03 6.75 6.75s-3.02 6.75-6.75 6.75m-2.87-2.36c.85.56 1.84.86 2.88.86 2.89 0 5.25-2.36 5.25-5.25s-2.36-5.25-5.25-5.25c-1.03 0-2.03.3-2.88.86a6.73 6.73 0 0 1 0 8.78\"/><path fill=\"#1e293b\" d=\"M7.97 18.75c-3.72 0-6.75-3.03-6.75-6.75s3.03-6.75 6.75-6.75c1.67 0 3.27.62 4.5 1.73A6.72 6.72 0 0 1 14.72 12a6.7 6.7 0 0 1-2.25 5.02 6.7 6.7 0 0 1-4.5 1.73m0-12c-2.89 0-5.25 2.36-5.25 5.25s2.36 5.25 5.25 5.25c1.3 0 2.54-.48 3.5-1.35a5.2 5.2 0 0 0 1.75-3.9c0-1.49-.64-2.92-1.75-3.9-.96-.87-2.2-1.35-3.5-1.35\"/></svg>\n );\n }\n);\n\nBlend1.displayName = 'Blend1';\n","import React from 'react';\n\n/**\n * Props for the Blend21 icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface Blend21Props extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Blend21 icon component\n * @example\n * ```tsx\n * import { Blend21 } from 'magick-icons';\n * \n * <Blend21 size={24} className=\"text-blue-500\" strokeWidth={2} />\n * ```\n */\nexport const Blend21 = React.forwardRef<SVGSVGElement, Blend21Props>(\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=\"M8.97 16.75c-.39 0-.73-.03-1.05-.08-3.8-.5-6.7-3.8-6.7-7.67 0-4.27 3.48-7.75 7.75-7.75 3.87 0 7.17 2.89 7.67 6.72.05.3.08.64.08 1.03 0 4.27-3.47 7.75-7.75 7.75m0-14c-3.45 0-6.25 2.8-6.25 6.25a6.26 6.26 0 0 0 5.42 6.19c.26.04.53.06.83.06 3.45 0 6.25-2.8 6.25-6.25q0-.45-.06-.81a6.254 6.254 0 0 0-6.19-5.44\"/><path fill=\"#1e293b\" d=\"M14.97 22.75c-3.87 0-7.17-2.89-7.67-6.72a.747.747 0 0 1 .87-.84c.24.04.5.06.8.06 3.45 0 6.25-2.8 6.25-6.25q0-.45-.06-.81c-.04-.23.04-.47.2-.64s.39-.26.64-.22c3.83.5 6.72 3.8 6.72 7.67 0 4.27-3.47 7.75-7.75 7.75m-5.99-6c.76 2.62 3.19 4.5 5.99 4.5 3.45 0 6.25-2.8 6.25-6.25 0-2.8-1.88-5.24-4.5-5.99 0 4.26-3.47 7.74-7.74 7.74\"/><path fill=\"#1e293b\" d=\"M15.43 16.16c-.19 0-.38-.07-.53-.21l-1.3-1.28a.755.755 0 0 1-.01-1.06c.29-.29.76-.3 1.06-.01l1.3 1.28c.29.29.3.77.01 1.06-.14.14-.34.22-.53.22M16.97 12.75c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1 1c.29.29.29.77 0 1.06a.7.7 0 0 1-.53.22M11.97 17.75c-.19 0-.38-.07-.53-.22l-1-1a.754.754 0 0 1 0-1.06c.29-.29.77-.29 1.06 0l1 1c.29.29.29.77 0 1.06a.7.7 0 0 1-.53.22\"/></svg>\n );\n }\n);\n\nBlend21.displayName = 'Blend21';\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"],"mappings":";AAAA,OAAO,WAAW;AAsBZ,SAAoH,KAApH;AAHC,IAAM,mBAAmB,MAAM;AAAA,EACpC,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,6iBAA2iB;AAAA,MAAE,oBAAC,UAAK,MAAK,WAAU,GAAE,gYAA8X;AAAA,OAAE;AAAA,EAEnlC;AACF;AAEA,iBAAiB,cAAc;;;AC3B/B,OAAOA,YAAW;AAsBZ,SAAoH,OAAAC,MAApH,QAAAC,aAAA;AAHC,IAAM,SAASF,OAAM;AAAA,EAC1B,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,wUAAsU;AAAA,MAAE,gBAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,sTAAoT;AAAA,OAAE;AAAA,EAEpyB;AACF;AAEA,OAAO,cAAc;;;AC3BrB,OAAOE,YAAW;AAsBZ,SAAoH,OAAAC,MAApH,QAAAC,aAAA;AAHC,IAAM,UAAUF,OAAM;AAAA,EAC3B,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,oTAAkT;AAAA,MAAE,gBAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,uUAAqU;AAAA,MAAE,gBAAAA,KAAC,UAAK,MAAK,WAAU,GAAE,8YAA4Y;AAAA,OAAE;AAAA,EAEtsC;AACF;AAEA,QAAQ,cAAc;;;AC3BtB,OAAOE,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;","names":["React","jsx","jsxs","React","jsx","jsxs","React","jsx","jsxs"]}
|