magick-icons 0.1.18 → 0.1.20
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/icons/Magicko3DotsMore.tsx +19 -0
- package/index.js +18 -2
- package/index.js.map +1 -1
- package/index.mjs +16 -1
- package/index.mjs.map +1 -1
- package/index.ts +1 -0
- package/package.json +1 -1
- package/types.ts +3 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
export interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(
|
|
8
|
+
({ size, ...props }, ref) => {
|
|
9
|
+
return (
|
|
10
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
11
|
+
<path d="M5 10C5 11.1046 4.10457 12 3 12C1.89543 12 1 11.1046 1 10C1 8.89543 1.89543 8 3 8C4.10457 8 5 8.89543 5 10Z" fill="#1E293B"/>
|
|
12
|
+
<path d="M12 10C12 11.1046 11.1046 12 10 12C8.89543 12 8 11.1046 8 10C8 8.89543 8.89543 8 10 8C11.1046 8 12 8.89543 12 10Z" fill="#1E293B"/>
|
|
13
|
+
<path d="M19 10C19 11.1046 18.1046 12 17 12C15.8954 12 15 11.1046 15 10C15 8.89543 15.8954 8 17 8C18.1046 8 19 8.89543 19 10Z" fill="#1E293B"/>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
Magicko3DotsMore.displayName = 'Magicko3DotsMore';
|
package/index.js
CHANGED
|
@@ -32,7 +32,8 @@ var index_exports = {};
|
|
|
32
32
|
__export(index_exports, {
|
|
33
33
|
EnglishC: () => EnglishC,
|
|
34
34
|
Image10: () => Image10,
|
|
35
|
-
Image8: () => Image8
|
|
35
|
+
Image8: () => Image8,
|
|
36
|
+
Magicko3DotsMore: () => Magicko3DotsMore
|
|
36
37
|
});
|
|
37
38
|
module.exports = __toCommonJS(index_exports);
|
|
38
39
|
|
|
@@ -80,10 +81,25 @@ var Image8 = import_react3.default.forwardRef(
|
|
|
80
81
|
}
|
|
81
82
|
);
|
|
82
83
|
Image8.displayName = "Image8";
|
|
84
|
+
|
|
85
|
+
// dist/icons/Magicko3DotsMore.tsx
|
|
86
|
+
var import_react4 = __toESM(require("react"));
|
|
87
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
88
|
+
var Magicko3DotsMore = import_react4.default.forwardRef(
|
|
89
|
+
({ size, ...props }, ref) => {
|
|
90
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
91
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M5 10C5 11.1046 4.10457 12 3 12C1.89543 12 1 11.1046 1 10C1 8.89543 1.89543 8 3 8C4.10457 8 5 8.89543 5 10Z", fill: "#1E293B" }),
|
|
92
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M12 10C12 11.1046 11.1046 12 10 12C8.89543 12 8 11.1046 8 10C8 8.89543 8.89543 8 10 8C11.1046 8 12 8.89543 12 10Z", fill: "#1E293B" }),
|
|
93
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M19 10C19 11.1046 18.1046 12 17 12C15.8954 12 15 11.1046 15 10C15 8.89543 15.8954 8 17 8C18.1046 8 19 8.89543 19 10Z", fill: "#1E293B" })
|
|
94
|
+
] });
|
|
95
|
+
}
|
|
96
|
+
);
|
|
97
|
+
Magicko3DotsMore.displayName = "Magicko3DotsMore";
|
|
83
98
|
// Annotate the CommonJS export names for ESM import in node:
|
|
84
99
|
0 && (module.exports = {
|
|
85
100
|
EnglishC,
|
|
86
101
|
Image10,
|
|
87
|
-
Image8
|
|
102
|
+
Image8,
|
|
103
|
+
Magicko3DotsMore
|
|
88
104
|
});
|
|
89
105
|
//# sourceMappingURL=index.js.map
|