magick-icons 0.1.19 → 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
package/index.mjs
CHANGED
|
@@ -42,9 +42,24 @@ var Image8 = React3.forwardRef(
|
|
|
42
42
|
}
|
|
43
43
|
);
|
|
44
44
|
Image8.displayName = "Image8";
|
|
45
|
+
|
|
46
|
+
// dist/icons/Magicko3DotsMore.tsx
|
|
47
|
+
import React4 from "react";
|
|
48
|
+
import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
49
|
+
var Magicko3DotsMore = React4.forwardRef(
|
|
50
|
+
({ size, ...props }, ref) => {
|
|
51
|
+
return /* @__PURE__ */ jsxs4("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
52
|
+
/* @__PURE__ */ jsx4("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" }),
|
|
53
|
+
/* @__PURE__ */ jsx4("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" }),
|
|
54
|
+
/* @__PURE__ */ jsx4("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" })
|
|
55
|
+
] });
|
|
56
|
+
}
|
|
57
|
+
);
|
|
58
|
+
Magicko3DotsMore.displayName = "Magicko3DotsMore";
|
|
45
59
|
export {
|
|
46
60
|
EnglishC,
|
|
47
61
|
Image10,
|
|
48
|
-
Image8
|
|
62
|
+
Image8,
|
|
63
|
+
Magicko3DotsMore
|
|
49
64
|
};
|
|
50
65
|
//# sourceMappingURL=index.mjs.map
|