magick-icons 0.1.87 → 0.1.89
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 -43
- package/index.d.ts +7 -43
- package/index.js +8 -41
- package/index.js.map +1 -1
- package/index.mjs +7 -38
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/README.md +0 -116
package/index.d.mts
CHANGED
|
@@ -1,57 +1,21 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* Props for the
|
|
4
|
+
* Props for the FilterTick2 icon component
|
|
5
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
6
|
*/
|
|
7
|
-
interface
|
|
7
|
+
interface FilterTick2Props extends React.SVGProps<SVGSVGElement> {
|
|
8
8
|
size?: number | string;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* FilterTick2 icon component
|
|
12
12
|
* @example
|
|
13
13
|
* ```tsx
|
|
14
|
-
* import {
|
|
14
|
+
* import { FilterTick2 } from 'magick-icons';
|
|
15
15
|
*
|
|
16
|
-
* <
|
|
16
|
+
* <FilterTick2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
declare const
|
|
19
|
+
declare const FilterTick2: React.ForwardRefExoticComponent<Omit<FilterTick2Props, "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
|
-
/**
|
|
40
|
-
* Props for the Autobrightness1 icon component
|
|
41
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
-
*/
|
|
43
|
-
interface Autobrightness1Props extends React.SVGProps<SVGSVGElement> {
|
|
44
|
-
size?: number | string;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* Autobrightness1 icon component
|
|
48
|
-
* @example
|
|
49
|
-
* ```tsx
|
|
50
|
-
* import { Autobrightness1 } from 'magick-icons';
|
|
51
|
-
*
|
|
52
|
-
* <Autobrightness1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
-
* ```
|
|
54
|
-
*/
|
|
55
|
-
declare const Autobrightness1: React.ForwardRefExoticComponent<Omit<Autobrightness1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
-
|
|
57
|
-
export { Add1, type Add1Props, AddCircle1, type AddCircle1Props, Autobrightness1, type Autobrightness1Props };
|
|
21
|
+
export { FilterTick2, type FilterTick2Props };
|
package/index.d.ts
CHANGED
|
@@ -1,57 +1,21 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* Props for the
|
|
4
|
+
* Props for the FilterTick2 icon component
|
|
5
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
6
|
*/
|
|
7
|
-
interface
|
|
7
|
+
interface FilterTick2Props extends React.SVGProps<SVGSVGElement> {
|
|
8
8
|
size?: number | string;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* FilterTick2 icon component
|
|
12
12
|
* @example
|
|
13
13
|
* ```tsx
|
|
14
|
-
* import {
|
|
14
|
+
* import { FilterTick2 } from 'magick-icons';
|
|
15
15
|
*
|
|
16
|
-
* <
|
|
16
|
+
* <FilterTick2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
declare const
|
|
19
|
+
declare const FilterTick2: React.ForwardRefExoticComponent<Omit<FilterTick2Props, "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
|
-
/**
|
|
40
|
-
* Props for the Autobrightness1 icon component
|
|
41
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
-
*/
|
|
43
|
-
interface Autobrightness1Props extends React.SVGProps<SVGSVGElement> {
|
|
44
|
-
size?: number | string;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* Autobrightness1 icon component
|
|
48
|
-
* @example
|
|
49
|
-
* ```tsx
|
|
50
|
-
* import { Autobrightness1 } from 'magick-icons';
|
|
51
|
-
*
|
|
52
|
-
* <Autobrightness1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
-
* ```
|
|
54
|
-
*/
|
|
55
|
-
declare const Autobrightness1: React.ForwardRefExoticComponent<Omit<Autobrightness1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
-
|
|
57
|
-
export { Add1, type Add1Props, AddCircle1, type AddCircle1Props, Autobrightness1, type Autobrightness1Props };
|
|
21
|
+
export { FilterTick2, type FilterTick2Props };
|
package/index.js
CHANGED
|
@@ -30,58 +30,25 @@ 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,
|
|
35
|
-
Autobrightness1: () => Autobrightness1
|
|
33
|
+
FilterTick2: () => FilterTick2
|
|
36
34
|
});
|
|
37
35
|
module.exports = __toCommonJS(index_exports);
|
|
38
36
|
|
|
39
|
-
// dist/icons/
|
|
37
|
+
// dist/icons/FilterTick2.tsx
|
|
40
38
|
var import_react = __toESM(require("react"));
|
|
41
39
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
42
|
-
var
|
|
40
|
+
var FilterTick2 = import_react.default.forwardRef(
|
|
43
41
|
({ size, ...props }, ref) => {
|
|
44
42
|
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: [
|
|
45
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "
|
|
46
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "
|
|
47
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#1e293b", d: "
|
|
48
|
-
/* @__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" })
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.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" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.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" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.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" })
|
|
49
46
|
] });
|
|
50
47
|
}
|
|
51
48
|
);
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
// dist/icons/AddCircle1.tsx
|
|
55
|
-
var import_react2 = __toESM(require("react"));
|
|
56
|
-
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
57
|
-
var AddCircle1 = import_react2.default.forwardRef(
|
|
58
|
-
({ size, ...props }, ref) => {
|
|
59
|
-
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: [
|
|
60
|
-
/* @__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" }),
|
|
61
|
-
/* @__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" }),
|
|
62
|
-
/* @__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" })
|
|
63
|
-
] });
|
|
64
|
-
}
|
|
65
|
-
);
|
|
66
|
-
AddCircle1.displayName = "AddCircle1";
|
|
67
|
-
|
|
68
|
-
// dist/icons/Autobrightness1.tsx
|
|
69
|
-
var import_react3 = __toESM(require("react"));
|
|
70
|
-
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
71
|
-
var Autobrightness1 = import_react3.default.forwardRef(
|
|
72
|
-
({ size, ...props }, ref) => {
|
|
73
|
-
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: [
|
|
74
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "#1e293b", d: "M12.01 22.74c-.63 0-1.25-.21-1.74-.63l-1.58-1.35c-.16-.14-.56-.28-.77-.28H6.17a2.68 2.68 0 0 1-2.68-2.68v-1.71c0-.21-.14-.61-.27-.76l-1.36-1.6c-.82-.97-.82-2.49 0-3.47l1.36-1.6c.13-.15.27-.55.27-.76V6.2c0-1.48 1.2-2.68 2.68-2.68H7.9c.21 0 .6-.15.77-.29l1.58-1.35c.98-.83 2.51-.83 3.49 0l1.58 1.35c.16.14.57.28.78.28h1.7c1.48 0 2.68 1.2 2.68 2.68v1.7c0 .21.15.6.29.77l1.35 1.58c.84.99.83 2.52 0 3.49l-1.35 1.58c-.14.17-.28.56-.28.77v1.7c0 1.48-1.2 2.68-2.68 2.68h-1.7c-.21 0-.6.15-.78.29l-1.58 1.35c-.49.43-1.12.64-1.74.64M6.17 5.02c-.65 0-1.18.53-1.18 1.18v1.7c0 .57-.26 1.29-.63 1.73L3 11.23c-.34.41-.34 1.13 0 1.53l1.35 1.59c.36.41.63 1.16.63 1.73v1.71c0 .65.53 1.18 1.18 1.18H7.9c.56 0 1.3.27 1.74.64l1.59 1.36c.41.35 1.12.35 1.54 0l1.58-1.35c.45-.38 1.18-.64 1.74-.64h1.7c.65 0 1.18-.53 1.18-1.18v-1.7c0-.56.27-1.29.64-1.74l1.36-1.59c.35-.41.35-1.13 0-1.54l-1.35-1.58c-.38-.45-.64-1.18-.64-1.74V6.2c0-.65-.53-1.18-1.18-1.18h-1.7c-.57 0-1.31-.27-1.75-.64l-1.59-1.36c-.41-.35-1.12-.35-1.54 0L9.65 4.38c-.45.37-1.18.64-1.75.64z" }),
|
|
75
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "#1e293b", d: "M14.81 16.24 12 9.91l-2.81 6.33-1.38-.61 3.5-7.87h1.38l3.5 7.87z" }),
|
|
76
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "#1e293b", d: "M13.75 14.06h-3.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.5c.41 0 .75.34.75.75s-.34.75-.75.75" })
|
|
77
|
-
] });
|
|
78
|
-
}
|
|
79
|
-
);
|
|
80
|
-
Autobrightness1.displayName = "Autobrightness1";
|
|
49
|
+
FilterTick2.displayName = "FilterTick2";
|
|
81
50
|
// Annotate the CommonJS export names for ESM import in node:
|
|
82
51
|
0 && (module.exports = {
|
|
83
|
-
|
|
84
|
-
AddCircle1,
|
|
85
|
-
Autobrightness1
|
|
52
|
+
FilterTick2
|
|
86
53
|
});
|
|
87
54
|
//# 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/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 { FilterTick2 } from 'magick-icons';\n * \n * function MyComponent() {\n * return <FilterTick2 size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\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 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;;;ACAA,mBAAkB;AAsBZ;AAHC,IAAM,cAAc,aAAAA,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;AAAA,kDAAC,UAAK,MAAK,WAAU,GAAE,2YAAyY;AAAA,MAAE,4CAAC,UAAK,MAAK,WAAU,GAAE,oLAAkL;AAAA,MAAE,4CAAC,UAAK,MAAK,WAAU,GAAE,iuBAA+tB;AAAA,OAAE;AAAA,EAE79C;AACF;AAEA,YAAY,cAAc;","names":["React"]}
|
package/index.mjs
CHANGED
|
@@ -1,48 +1,17 @@
|
|
|
1
|
-
// dist/icons/
|
|
1
|
+
// dist/icons/FilterTick2.tsx
|
|
2
2
|
import React from "react";
|
|
3
3
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
-
var
|
|
4
|
+
var FilterTick2 = React.forwardRef(
|
|
5
5
|
({ size, ...props }, ref) => {
|
|
6
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: "
|
|
8
|
-
/* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "
|
|
9
|
-
/* @__PURE__ */ jsx("path", { fill: "#1e293b", d: "
|
|
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" })
|
|
7
|
+
/* @__PURE__ */ 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" }),
|
|
8
|
+
/* @__PURE__ */ 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" }),
|
|
9
|
+
/* @__PURE__ */ 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" })
|
|
11
10
|
] });
|
|
12
11
|
}
|
|
13
12
|
);
|
|
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";
|
|
29
|
-
|
|
30
|
-
// dist/icons/Autobrightness1.tsx
|
|
31
|
-
import React3 from "react";
|
|
32
|
-
import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
33
|
-
var Autobrightness1 = React3.forwardRef(
|
|
34
|
-
({ size, ...props }, ref) => {
|
|
35
|
-
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: [
|
|
36
|
-
/* @__PURE__ */ jsx3("path", { fill: "#1e293b", d: "M12.01 22.74c-.63 0-1.25-.21-1.74-.63l-1.58-1.35c-.16-.14-.56-.28-.77-.28H6.17a2.68 2.68 0 0 1-2.68-2.68v-1.71c0-.21-.14-.61-.27-.76l-1.36-1.6c-.82-.97-.82-2.49 0-3.47l1.36-1.6c.13-.15.27-.55.27-.76V6.2c0-1.48 1.2-2.68 2.68-2.68H7.9c.21 0 .6-.15.77-.29l1.58-1.35c.98-.83 2.51-.83 3.49 0l1.58 1.35c.16.14.57.28.78.28h1.7c1.48 0 2.68 1.2 2.68 2.68v1.7c0 .21.15.6.29.77l1.35 1.58c.84.99.83 2.52 0 3.49l-1.35 1.58c-.14.17-.28.56-.28.77v1.7c0 1.48-1.2 2.68-2.68 2.68h-1.7c-.21 0-.6.15-.78.29l-1.58 1.35c-.49.43-1.12.64-1.74.64M6.17 5.02c-.65 0-1.18.53-1.18 1.18v1.7c0 .57-.26 1.29-.63 1.73L3 11.23c-.34.41-.34 1.13 0 1.53l1.35 1.59c.36.41.63 1.16.63 1.73v1.71c0 .65.53 1.18 1.18 1.18H7.9c.56 0 1.3.27 1.74.64l1.59 1.36c.41.35 1.12.35 1.54 0l1.58-1.35c.45-.38 1.18-.64 1.74-.64h1.7c.65 0 1.18-.53 1.18-1.18v-1.7c0-.56.27-1.29.64-1.74l1.36-1.59c.35-.41.35-1.13 0-1.54l-1.35-1.58c-.38-.45-.64-1.18-.64-1.74V6.2c0-.65-.53-1.18-1.18-1.18h-1.7c-.57 0-1.31-.27-1.75-.64l-1.59-1.36c-.41-.35-1.12-.35-1.54 0L9.65 4.38c-.45.37-1.18.64-1.75.64z" }),
|
|
37
|
-
/* @__PURE__ */ jsx3("path", { fill: "#1e293b", d: "M14.81 16.24 12 9.91l-2.81 6.33-1.38-.61 3.5-7.87h1.38l3.5 7.87z" }),
|
|
38
|
-
/* @__PURE__ */ jsx3("path", { fill: "#1e293b", d: "M13.75 14.06h-3.5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.5c.41 0 .75.34.75.75s-.34.75-.75.75" })
|
|
39
|
-
] });
|
|
40
|
-
}
|
|
41
|
-
);
|
|
42
|
-
Autobrightness1.displayName = "Autobrightness1";
|
|
13
|
+
FilterTick2.displayName = "FilterTick2";
|
|
43
14
|
export {
|
|
44
|
-
|
|
45
|
-
AddCircle1,
|
|
46
|
-
Autobrightness1
|
|
15
|
+
FilterTick2
|
|
47
16
|
};
|
|
48
17
|
//# sourceMappingURL=index.mjs.map
|
package/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["icons/
|
|
1
|
+
{"version":3,"sources":["icons/FilterTick2.tsx"],"sourcesContent":["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,cAAc,MAAM;AAAA,EAC/B,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,2YAAyY;AAAA,MAAE,oBAAC,UAAK,MAAK,WAAU,GAAE,oLAAkL;AAAA,MAAE,oBAAC,UAAK,MAAK,WAAU,GAAE,iuBAA+tB;AAAA,OAAE;AAAA,EAE79C;AACF;AAEA,YAAY,cAAc;","names":[]}
|
package/package.json
CHANGED
package/README.md
DELETED
|
@@ -1,116 +0,0 @@
|
|
|
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
|