magick-icons 0.1.43 → 0.1.44
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 +19 -1
- package/index.d.ts +19 -1
- package/index.js +19 -7
- package/index.js.map +1 -1
- package/index.mjs +17 -6
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Props for the Enter icon component
|
|
5
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
+
*/
|
|
7
|
+
interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
8
|
+
size?: number | string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Enter icon component
|
|
12
|
+
* @example
|
|
13
|
+
* ```tsx
|
|
14
|
+
* import { Enter } from 'magick-icons';
|
|
15
|
+
*
|
|
16
|
+
* <Enter size={24} className="text-blue-500" />
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
+
|
|
3
21
|
/**
|
|
4
22
|
* Props for the Frame icon component
|
|
5
23
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18,4 +36,4 @@ interface FrameProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18
36
|
*/
|
|
19
37
|
declare const Frame: React.ForwardRefExoticComponent<Omit<FrameProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
38
|
|
|
21
|
-
export { Frame, type FrameProps };
|
|
39
|
+
export { Enter, type EnterProps, Frame, type FrameProps };
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Props for the Enter icon component
|
|
5
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
+
*/
|
|
7
|
+
interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
8
|
+
size?: number | string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Enter icon component
|
|
12
|
+
* @example
|
|
13
|
+
* ```tsx
|
|
14
|
+
* import { Enter } from 'magick-icons';
|
|
15
|
+
*
|
|
16
|
+
* <Enter size={24} className="text-blue-500" />
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
+
|
|
3
21
|
/**
|
|
4
22
|
* Props for the Frame icon component
|
|
5
23
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18,4 +36,4 @@ interface FrameProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18
36
|
*/
|
|
19
37
|
declare const Frame: React.ForwardRefExoticComponent<Omit<FrameProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
38
|
|
|
21
|
-
export { Frame, type FrameProps };
|
|
39
|
+
export { Enter, type EnterProps, Frame, type FrameProps };
|
package/index.js
CHANGED
|
@@ -30,27 +30,39 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
30
30
|
// dist/index.ts
|
|
31
31
|
var index_exports = {};
|
|
32
32
|
__export(index_exports, {
|
|
33
|
+
Enter: () => Enter,
|
|
33
34
|
Frame: () => Frame
|
|
34
35
|
});
|
|
35
36
|
module.exports = __toCommonJS(index_exports);
|
|
36
37
|
|
|
37
|
-
// dist/icons/
|
|
38
|
+
// dist/icons/Enter.tsx
|
|
38
39
|
var import_react = __toESM(require("react"));
|
|
39
40
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
40
|
-
var
|
|
41
|
+
var Enter = import_react.default.forwardRef(
|
|
42
|
+
({ size, ...props }, ref) => {
|
|
43
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#000", d: "M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0" }) });
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
Enter.displayName = "Enter";
|
|
47
|
+
|
|
48
|
+
// dist/icons/Frame.tsx
|
|
49
|
+
var import_react2 = __toESM(require("react"));
|
|
50
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
51
|
+
var Frame = import_react2.default.forwardRef(
|
|
41
52
|
({ size, ...props }, ref) => {
|
|
42
|
-
return /* @__PURE__ */ (0,
|
|
43
|
-
/* @__PURE__ */ (0,
|
|
44
|
-
/* @__PURE__ */ (0,
|
|
45
|
-
/* @__PURE__ */ (0,
|
|
53
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: [
|
|
54
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { fill: "#000", "clip-path": "url(#clip0_7_897)", children: [
|
|
55
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z" }),
|
|
56
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { "fill-rule": "evenodd", d: "M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637", "clip-rule": "evenodd" })
|
|
46
57
|
] }),
|
|
47
|
-
/* @__PURE__ */ (0,
|
|
58
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("clipPath", { id: "clip0_7_897", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
48
59
|
] });
|
|
49
60
|
}
|
|
50
61
|
);
|
|
51
62
|
Frame.displayName = "Frame";
|
|
52
63
|
// Annotate the CommonJS export names for ESM import in node:
|
|
53
64
|
0 && (module.exports = {
|
|
65
|
+
Enter,
|
|
54
66
|
Frame
|
|
55
67
|
});
|
|
56
68
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts","icons/Frame.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 {
|
|
1
|
+
{"version":3,"sources":["index.ts","icons/Enter.tsx","icons/Frame.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 { Enter } from 'magick-icons';\n * \n * function MyComponent() {\n * return <Enter size={24} className=\"text-blue-500\" />;\n * }\n * ```\n */\n\n/**\n * Enter icon component and its props type\n * @see {@link EnterProps} for available props\n */\nexport { Enter, type EnterProps } from './icons/Enter';\n\n/**\n * Frame icon component and its props type\n * @see {@link FrameProps} for available props\n */\nexport { Frame, type FrameProps } from './icons/Frame';\n","import React from 'react';\n\n/**\n * Props for the Enter icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface EnterProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Enter icon component\n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * <Enter size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Enter = React.forwardRef<SVGSVGElement, EnterProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0\"/></svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n","import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,mBAAkB;AAsBmF;AAH9F,IAAM,QAAQ,aAAAA,QAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,4CAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY,sDAAC,UAAK,MAAK,QAAO,GAAE,gNAA8M,GAAE;AAAA,EAEvU;AACF;AAEA,MAAM,cAAc;;;AC3BpB,IAAAC,gBAAkB;AAsBmF,IAAAC,sBAAA;AAH9F,IAAM,QAAQ,cAAAC,QAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,8CAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY;AAAA,oDAAC,OAAE,MAAK,QAAO,aAAU,qBAAoB;AAAA,qDAAC,UAAK,GAAE,0NAAwN;AAAA,QAAE,6CAAC,UAAK,aAAU,WAAU,GAAE,yIAAwI,aAAU,WAAS;AAAA,SAAE;AAAA,MAAI,6CAAC,UAAK,uDAAC,cAAS,IAAG,eAAc,uDAAC,UAAK,MAAK,QAAO,GAAE,iBAAe,GAAE,GAAW;AAAA,OAAO;AAAA,EAEvoB;AACF;AAEA,MAAM,cAAc;","names":["React","import_react","import_jsx_runtime","React"]}
|
package/index.mjs
CHANGED
|
@@ -1,19 +1,30 @@
|
|
|
1
|
-
// dist/icons/
|
|
1
|
+
// dist/icons/Enter.tsx
|
|
2
2
|
import React from "react";
|
|
3
|
-
import { jsx
|
|
4
|
-
var
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
var Enter = React.forwardRef(
|
|
5
|
+
({ size, ...props }, ref) => {
|
|
6
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { fill: "#000", d: "M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0" }) });
|
|
7
|
+
}
|
|
8
|
+
);
|
|
9
|
+
Enter.displayName = "Enter";
|
|
10
|
+
|
|
11
|
+
// dist/icons/Frame.tsx
|
|
12
|
+
import React2 from "react";
|
|
13
|
+
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
14
|
+
var Frame = React2.forwardRef(
|
|
5
15
|
({ size, ...props }, ref) => {
|
|
6
16
|
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", children: [
|
|
7
17
|
/* @__PURE__ */ jsxs("g", { fill: "#000", "clip-path": "url(#clip0_7_897)", children: [
|
|
8
|
-
/* @__PURE__ */
|
|
9
|
-
/* @__PURE__ */
|
|
18
|
+
/* @__PURE__ */ jsx2("path", { d: "M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z" }),
|
|
19
|
+
/* @__PURE__ */ jsx2("path", { "fill-rule": "evenodd", d: "M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637", "clip-rule": "evenodd" })
|
|
10
20
|
] }),
|
|
11
|
-
/* @__PURE__ */
|
|
21
|
+
/* @__PURE__ */ jsx2("defs", { children: /* @__PURE__ */ jsx2("clipPath", { id: "clip0_7_897", children: /* @__PURE__ */ jsx2("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
12
22
|
] });
|
|
13
23
|
}
|
|
14
24
|
);
|
|
15
25
|
Frame.displayName = "Frame";
|
|
16
26
|
export {
|
|
27
|
+
Enter,
|
|
17
28
|
Frame
|
|
18
29
|
};
|
|
19
30
|
//# sourceMappingURL=index.mjs.map
|
package/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["icons/Frame.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBmF,SAA6C,
|
|
1
|
+
{"version":3,"sources":["icons/Enter.tsx","icons/Frame.tsx"],"sourcesContent":["import React from 'react';\n\n/**\n * Props for the Enter icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface EnterProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Enter icon component\n * @example\n * ```tsx\n * import { Enter } from 'magick-icons';\n * \n * <Enter size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Enter = React.forwardRef<SVGSVGElement, EnterProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M19.25 6v2A3.25 3.25 0 0 1 16 11.25H5.81l3.72-3.72.052-.056a.75.75 0 0 0-1.056-1.056l-.056.052-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06l-3.72-3.72H16A4.75 4.75 0 0 0 20.75 8V6a.75.75 0 1 0-1.5 0\"/></svg>\n );\n }\n);\n\nEnter.displayName = 'Enter';\n","import React from 'react';\n\n/**\n * Props for the Frame icon component\n * @property {number | string} [size] - Size of the icon (default: 24)\n */\nexport interface FrameProps extends React.SVGProps<SVGSVGElement> {\n size?: number | string;\n}\n\n/**\n * Frame icon component\n * @example\n * ```tsx\n * import { Frame } from 'magick-icons';\n * \n * <Frame size={24} className=\"text-blue-500\" />\n * ```\n */\nexport const Frame = React.forwardRef<SVGSVGElement, FrameProps>(\n ({ size, ...props }, ref) => {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" viewBox=\"0 0 24 24\"><g fill=\"#000\" clip-path=\"url(#clip0_7_897)\"><path d=\"M16.734 9.079a1.09 1.09 0 1 0-1.488-1.596l-3.192 2.976-2.976-3.194a1.09 1.09 0 0 0-1.595 1.488l2.977 3.192-3.194 2.976a1.09 1.09 0 1 0 1.488 1.595l3.192-2.974 2.976 3.191a1.091 1.091 0 1 0 1.595-1.487l-2.975-3.191z\"/><path fill-rule=\"evenodd\" d=\"M0 12C0 5.373 5.373 0 12 0s12 5.373 12 12-5.373 12-12 12S0 18.627 0 12m12 9.818a9.819 9.819 0 1 1 0-19.637 9.819 9.819 0 0 1 0 19.637\" clip-rule=\"evenodd\"/></g><defs><clipPath id=\"clip0_7_897\"><path fill=\"#fff\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>\n );\n }\n);\n\nFrame.displayName = 'Frame';\n"],"mappings":";AAAA,OAAO,WAAW;AAsBmF;AAH9F,IAAM,QAAQ,MAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,oBAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY,8BAAC,UAAK,MAAK,QAAO,GAAE,gNAA8M,GAAE;AAAA,EAEvU;AACF;AAEA,MAAM,cAAc;;;AC3BpB,OAAOA,YAAW;AAsBmF,SAA6C,OAAAC,MAA7C;AAH9F,IAAM,QAAQD,OAAM;AAAA,EACzB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;AAC3B,WACE,qBAAC,SAAI,OAAM,8BAA6B,OAAM,MAAK,QAAO,MAAK,MAAK,QAAO,SAAQ,aAAY;AAAA,2BAAC,OAAE,MAAK,QAAO,aAAU,qBAAoB;AAAA,wBAAAC,KAAC,UAAK,GAAE,0NAAwN;AAAA,QAAE,gBAAAA,KAAC,UAAK,aAAU,WAAU,GAAE,yIAAwI,aAAU,WAAS;AAAA,SAAE;AAAA,MAAI,gBAAAA,KAAC,UAAK,0BAAAA,KAAC,cAAS,IAAG,eAAc,0BAAAA,KAAC,UAAK,MAAK,QAAO,GAAE,iBAAe,GAAE,GAAW;AAAA,OAAO;AAAA,EAEvoB;AACF;AAEA,MAAM,cAAc;","names":["React","jsx"]}
|