magick-icons 0.1.8
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/File.tsx +15 -0
- package/icons/Magicko3DotsMore.tsx +19 -0
- package/index.d.mts +13 -0
- package/index.d.ts +13 -0
- package/index.js +66 -0
- package/index.js.map +1 -0
- package/index.mjs +28 -0
- package/index.mjs.map +1 -0
- package/index.ts +3 -0
- package/package.json +15 -0
- package/types.ts +11 -0
package/icons/File.tsx
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
export interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export const File = React.forwardRef<SVGSVGElement, FileProps>(
|
|
8
|
+
({ size, ...props }, ref) => {
|
|
9
|
+
return (
|
|
10
|
+
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
File.displayName = 'File';
|
|
@@ -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.d.mts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
|
|
8
|
+
interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
|
|
9
|
+
size?: number | string;
|
|
10
|
+
}
|
|
11
|
+
declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12
|
+
|
|
13
|
+
export { File, type FileProps, Magicko3DotsMore, type Magicko3DotsMoreProps };
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
|
|
8
|
+
interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
|
|
9
|
+
size?: number | string;
|
|
10
|
+
}
|
|
11
|
+
declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12
|
+
|
|
13
|
+
export { File, type FileProps, Magicko3DotsMore, type Magicko3DotsMoreProps };
|
package/index.js
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// dist/index.ts
|
|
31
|
+
var index_exports = {};
|
|
32
|
+
__export(index_exports, {
|
|
33
|
+
File: () => File,
|
|
34
|
+
Magicko3DotsMore: () => Magicko3DotsMore
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(index_exports);
|
|
37
|
+
|
|
38
|
+
// dist/icons/File.tsx
|
|
39
|
+
var import_react = __toESM(require("react"));
|
|
40
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
41
|
+
var File = import_react.default.forwardRef(
|
|
42
|
+
({ size, ...props }, ref) => {
|
|
43
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { fill: "none", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z", "clip-rule": "evenodd", fill: "#666", "fill-rule": "evenodd" }) });
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
File.displayName = "File";
|
|
47
|
+
|
|
48
|
+
// dist/icons/Magicko3DotsMore.tsx
|
|
49
|
+
var import_react2 = __toESM(require("react"));
|
|
50
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
51
|
+
var Magicko3DotsMore = import_react2.default.forwardRef(
|
|
52
|
+
({ size, ...props }, ref) => {
|
|
53
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
54
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.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" }),
|
|
55
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.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" }),
|
|
56
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.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" })
|
|
57
|
+
] });
|
|
58
|
+
}
|
|
59
|
+
);
|
|
60
|
+
Magicko3DotsMore.displayName = "Magicko3DotsMore";
|
|
61
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
62
|
+
0 && (module.exports = {
|
|
63
|
+
File,
|
|
64
|
+
Magicko3DotsMore
|
|
65
|
+
});
|
|
66
|
+
//# sourceMappingURL=index.js.map
|
package/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["index.ts","icons/File.tsx","icons/Magicko3DotsMore.tsx"],"sourcesContent":["// Auto-generated file - do not edit manually\nexport { File, type FileProps } from './icons/File';\nexport { Magicko3DotsMore, type Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';\n","import React from 'react';\n\nexport interface FileProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\nexport const File = React.forwardRef<SVGSVGElement, FileProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg fill=\"none\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z\" clip-rule=\"evenodd\" fill=\"#666\" fill-rule=\"evenodd\"/></svg>\n );\n }\n);\n\nFile.displayName = 'File';\n","import React from 'react';\n\nexport interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\nexport const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<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\"/>\n<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\"/>\n<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\"/>\n</svg>\n );\n }\n);\n\nMagicko3DotsMore.displayName = 'Magicko3DotsMore';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAS4D;AAHvE,IAAM,OAAO,aAAAA,QAAM;AAAA,EACxB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,4CAAC,SAAI,MAAK,QAAO,SAAQ,aAAY,OAAM,8BAA6B,sDAAC,UAAK,GAAE,6PAA4P,aAAU,WAAU,MAAK,QAAO,aAAU,WAAS,GAAE;AAAA,EAErY;AACF;AAEA,KAAK,cAAc;;;ACdnB,IAAAC,gBAAkB;AASZ,IAAAC,sBAAA;AAHC,IAAM,mBAAmB,cAAAC,QAAM;AAAA,EACpC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,8CAAC,SAAI,OAAM,MAAK,QAAO,MAAK,SAAQ,aAAY,MAAK,QAAO,OAAM,8BACxE;AAAA,mDAAC,UAAK,GAAE,+GAA8G,MAAK,WAAS;AAAA,MACpI,6CAAC,UAAK,GAAE,qHAAoH,MAAK,WAAS;AAAA,MAC1I,6CAAC,UAAK,GAAE,wHAAuH,MAAK,WAAS;AAAA,OAC7I;AAAA,EAEE;AACF;AAEA,iBAAiB,cAAc;","names":["React","import_react","import_jsx_runtime","React"]}
|
package/index.mjs
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// dist/icons/File.tsx
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
var File = React.forwardRef(
|
|
5
|
+
({ size, ...props }, ref) => {
|
|
6
|
+
return /* @__PURE__ */ jsx("svg", { fill: "none", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx("path", { d: "M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z", "clip-rule": "evenodd", fill: "#666", "fill-rule": "evenodd" }) });
|
|
7
|
+
}
|
|
8
|
+
);
|
|
9
|
+
File.displayName = "File";
|
|
10
|
+
|
|
11
|
+
// dist/icons/Magicko3DotsMore.tsx
|
|
12
|
+
import React2 from "react";
|
|
13
|
+
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
14
|
+
var Magicko3DotsMore = React2.forwardRef(
|
|
15
|
+
({ size, ...props }, ref) => {
|
|
16
|
+
return /* @__PURE__ */ jsxs("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
17
|
+
/* @__PURE__ */ jsx2("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" }),
|
|
18
|
+
/* @__PURE__ */ jsx2("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" }),
|
|
19
|
+
/* @__PURE__ */ jsx2("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" })
|
|
20
|
+
] });
|
|
21
|
+
}
|
|
22
|
+
);
|
|
23
|
+
Magicko3DotsMore.displayName = "Magicko3DotsMore";
|
|
24
|
+
export {
|
|
25
|
+
File,
|
|
26
|
+
Magicko3DotsMore
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=index.mjs.map
|
package/index.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["icons/File.tsx","icons/Magicko3DotsMore.tsx"],"sourcesContent":["import React from 'react';\n\nexport interface FileProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\nexport const File = React.forwardRef<SVGSVGElement, FileProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg fill=\"none\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z\" clip-rule=\"evenodd\" fill=\"#666\" fill-rule=\"evenodd\"/></svg>\n );\n }\n);\n\nFile.displayName = 'File';\n","import React from 'react';\n\nexport interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\nexport const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<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\"/>\n<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\"/>\n<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\"/>\n</svg>\n );\n }\n);\n\nMagicko3DotsMore.displayName = 'Magicko3DotsMore';\n"],"mappings":";AAAA,OAAO,WAAW;AAS4D;AAHvE,IAAM,OAAO,MAAM;AAAA,EACxB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,oBAAC,SAAI,MAAK,QAAO,SAAQ,aAAY,OAAM,8BAA6B,8BAAC,UAAK,GAAE,6PAA4P,aAAU,WAAU,MAAK,QAAO,aAAU,WAAS,GAAE;AAAA,EAErY;AACF;AAEA,KAAK,cAAc;;;ACdnB,OAAOA,YAAW;AASZ,SACN,OAAAC,MADM;AAHC,IAAM,mBAAmBD,OAAM;AAAA,EACpC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,qBAAC,SAAI,OAAM,MAAK,QAAO,MAAK,SAAQ,aAAY,MAAK,QAAO,OAAM,8BACxE;AAAA,sBAAAC,KAAC,UAAK,GAAE,+GAA8G,MAAK,WAAS;AAAA,MACpI,gBAAAA,KAAC,UAAK,GAAE,qHAAoH,MAAK,WAAS;AAAA,MAC1I,gBAAAA,KAAC,UAAK,GAAE,wHAAuH,MAAK,WAAS;AAAA,OAC7I;AAAA,EAEE;AACF;AAEA,iBAAiB,cAAc;","names":["React","jsx"]}
|
package/index.ts
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "magick-icons",
|
|
3
|
+
"version": "0.1.8",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"module": "index.esm.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./index.d.ts",
|
|
10
|
+
"import": "./index.esm.js",
|
|
11
|
+
"require": "./index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"sideEffects": false
|
|
15
|
+
}
|
package/types.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// Auto-generated file - do not edit manually
|
|
2
|
+
import type * as React from 'react';
|
|
3
|
+
import type { FileProps } from './icons/File';
|
|
4
|
+
import type { Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
|
|
5
|
+
|
|
6
|
+
export interface IconComponents {
|
|
7
|
+
File: React.ComponentType<FileProps>;
|
|
8
|
+
Magicko3DotsMore: React.ComponentType<Magicko3DotsMoreProps>;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export type IconName = 'File' | 'Magicko3DotsMore';
|