@medway-ui/icons 1.2.0 → 1.4.0

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.
Files changed (61) hide show
  1. package/dist/components/icons/Anticipate.cjs +43 -0
  2. package/dist/components/icons/Anticipate.d.cts +6 -0
  3. package/dist/components/icons/Anticipate.d.ts +6 -0
  4. package/dist/components/icons/Anticipate.js +9 -0
  5. package/dist/components/icons/Flame.cjs +43 -0
  6. package/dist/components/icons/Flame.d.cts +6 -0
  7. package/dist/components/icons/Flame.d.ts +6 -0
  8. package/dist/components/icons/Flame.js +9 -0
  9. package/dist/components/icons/HistoryBack.cjs +43 -0
  10. package/dist/components/icons/HistoryBack.d.cts +6 -0
  11. package/dist/components/icons/HistoryBack.d.ts +6 -0
  12. package/dist/components/icons/HistoryBack.js +9 -0
  13. package/dist/components/icons/MedbrainFullAi.cjs +43 -0
  14. package/dist/components/icons/MedbrainFullAi.d.cts +6 -0
  15. package/dist/components/icons/MedbrainFullAi.d.ts +6 -0
  16. package/dist/components/icons/MedbrainFullAi.js +9 -0
  17. package/dist/components/icons/Test.cjs +43 -0
  18. package/dist/components/icons/Test.d.cts +6 -0
  19. package/dist/components/icons/Test.d.ts +6 -0
  20. package/dist/components/icons/Test.js +9 -0
  21. package/dist/components/icons/TestTime.cjs +43 -0
  22. package/dist/components/icons/TestTime.d.cts +6 -0
  23. package/dist/components/icons/TestTime.d.ts +6 -0
  24. package/dist/components/icons/TestTime.js +9 -0
  25. package/dist/components/icons/index.cjs +18 -0
  26. package/dist/components/icons/index.d.cts +6 -0
  27. package/dist/components/icons/index.d.ts +6 -0
  28. package/dist/components/icons/index.js +12 -0
  29. package/dist/index.d.cts +6 -0
  30. package/dist/index.d.ts +6 -0
  31. package/native/components/icons/Anticipate.cjs +45 -0
  32. package/native/components/icons/Anticipate.d.cts +9 -0
  33. package/native/components/icons/Anticipate.d.ts +9 -0
  34. package/native/components/icons/Anticipate.js +11 -0
  35. package/native/components/icons/Flame.cjs +45 -0
  36. package/native/components/icons/Flame.d.cts +9 -0
  37. package/native/components/icons/Flame.d.ts +9 -0
  38. package/native/components/icons/Flame.js +11 -0
  39. package/native/components/icons/HistoryBack.cjs +46 -0
  40. package/native/components/icons/HistoryBack.d.cts +9 -0
  41. package/native/components/icons/HistoryBack.d.ts +9 -0
  42. package/native/components/icons/HistoryBack.js +12 -0
  43. package/native/components/icons/MedbrainFullAi.cjs +48 -0
  44. package/native/components/icons/MedbrainFullAi.d.cts +9 -0
  45. package/native/components/icons/MedbrainFullAi.d.ts +9 -0
  46. package/native/components/icons/MedbrainFullAi.js +14 -0
  47. package/native/components/icons/Test.cjs +45 -0
  48. package/native/components/icons/Test.d.cts +9 -0
  49. package/native/components/icons/Test.d.ts +9 -0
  50. package/native/components/icons/Test.js +11 -0
  51. package/native/components/icons/TestTime.cjs +49 -0
  52. package/native/components/icons/TestTime.d.cts +9 -0
  53. package/native/components/icons/TestTime.d.ts +9 -0
  54. package/native/components/icons/TestTime.js +15 -0
  55. package/native/components/icons/index.cjs +18 -0
  56. package/native/components/icons/index.d.cts +6 -0
  57. package/native/components/icons/index.d.ts +6 -0
  58. package/native/components/icons/index.js +12 -0
  59. package/native/index.d.cts +37 -1
  60. package/native/index.d.ts +37 -1
  61. package/package.json +1 -1
@@ -0,0 +1,43 @@
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
+ var Anticipate_exports = {};
30
+ __export(Anticipate_exports, {
31
+ Anticipate: () => Anticipate
32
+ });
33
+ module.exports = __toCommonJS(Anticipate_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const Anticipate = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M8.00333 19.0088H5.00083C4.47013 19.0088 3.96113 18.7981 3.58587 18.4229C3.21061 18.0476 3 17.5386 3 17.0079V6.00083C3 5.47013 3.21061 4.96113 3.58587 4.58587C3.96113 4.21061 4.47013 4 5.00083 4H19.0067C19.5374 4 20.0464 4.21061 20.4216 4.58587C20.7969 4.96113 21.0075 5.47013 21.0075 6.00083V8.5M7.00171 9.00546H12M7.00171 12.9941C7.78209 12.9915 8.21962 12.9967 9 12.9941M21.2426 16H12.7574M12.7574 16L15.9393 19.182M12.7574 16L15.9393 12.818", strokeLinecap: "round", strokeLinejoin: "round" }))
38
+ );
39
+ Anticipate.displayName = "Anticipate";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ Anticipate
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const Anticipate: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { Anticipate };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const Anticipate: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { Anticipate };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const Anticipate = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M8.00333 19.0088H5.00083C4.47013 19.0088 3.96113 18.7981 3.58587 18.4229C3.21061 18.0476 3 17.5386 3 17.0079V6.00083C3 5.47013 3.21061 4.96113 3.58587 4.58587C3.96113 4.21061 4.47013 4 5.00083 4H19.0067C19.5374 4 20.0464 4.21061 20.4216 4.58587C20.7969 4.96113 21.0075 5.47013 21.0075 6.00083V8.5M7.00171 9.00546H12M7.00171 12.9941C7.78209 12.9915 8.21962 12.9967 9 12.9941M21.2426 16H12.7574M12.7574 16L15.9393 19.182M12.7574 16L15.9393 12.818", strokeLinecap: "round", strokeLinejoin: "round" }))
5
+ );
6
+ Anticipate.displayName = "Anticipate";
7
+ export {
8
+ Anticipate
9
+ };
@@ -0,0 +1,43 @@
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
+ var Flame_exports = {};
30
+ __export(Flame_exports, {
31
+ Flame: () => Flame
32
+ });
33
+ module.exports = __toCommonJS(Flame_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const Flame = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M7.19824 1.67969C8.37429 2.46862 9.33414 3.57001 10.0469 4.9873L10.0479 4.98828C11.0038 6.88128 11.3967 8.53659 11.3154 9.93262V9.93848C11.3119 10.0074 11.317 10.7074 11.3252 11.3242C11.3295 11.6489 11.3349 11.9773 11.3418 12.2285C11.3452 12.3528 11.3489 12.4664 11.3535 12.5527C11.3557 12.5936 11.3587 12.6417 11.3633 12.6865C11.3653 12.7062 11.3702 12.7464 11.3789 12.793C11.3829 12.814 11.3924 12.8624 11.4111 12.9209C11.4205 12.9501 11.4384 13.0025 11.4688 13.0635C11.4908 13.1078 11.5501 13.2174 11.6631 13.3291V13.3311C11.6667 13.3346 11.6712 13.3373 11.6748 13.3408C11.6812 13.3469 11.6866 13.3543 11.6934 13.3604L11.6943 13.3584C11.9875 13.628 12.3337 13.678 12.5703 13.6553C12.77 13.6361 13.0786 13.5509 13.3291 13.2676L13.335 13.2607L13.3418 13.2529C13.7154 12.8134 14.1282 12.042 14.4502 11.2148C14.688 10.6039 14.9004 9.89621 15.0127 9.17871C15.544 9.81522 15.9841 10.5357 16.3135 11.3184H16.3145C16.7706 12.4001 16.9999 13.5477 17 14.7334V14.7354C17.0022 15.869 16.7861 16.9908 16.3652 18.0303H16.3643C15.9585 19.0348 15.3784 19.9367 14.6396 20.707L14.6367 20.709C13.997 21.381 13.2565 21.93 12.4482 22.335L12.0977 22.5C11.8761 22.5975 11.6513 22.6831 11.4248 22.7588C11.0305 22.5715 10.6865 22.2053 10.2666 21.3115L10.2578 21.292L10.2471 21.2715C9.78799 20.3976 9.09213 18.7236 8.92871 18.2021L8.89746 18.1035L8.8252 17.873L8.65625 17.7012L8.37207 17.4131L8.07812 17.1143H6.37598V22.6865C6.21782 22.6285 6.05989 22.5669 5.9043 22.498H5.90332C4.9561 22.0804 4.10166 21.4771 3.36035 20.7041H3.36133C2.63008 19.9405 2.04238 19.0323 1.63477 18.0273H1.63574C1.21431 16.9851 1.00004 15.8792 1 14.7314L1.01367 14.2451C1.07606 13.1149 1.3534 12.0094 1.8291 10.9951C2.3762 9.84316 3.16055 8.84134 4.12012 8.0625L4.12207 8.06055C4.62833 7.6472 5.08836 7.17596 5.49316 6.65625L5.49414 6.65527C6.07678 5.9061 6.53179 5.07095 6.84863 4.17383C7.11225 3.42816 7.21881 2.58231 7.19824 1.67969Z" }))
38
+ );
39
+ Flame.displayName = "Flame";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ Flame
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const Flame: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { Flame };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const Flame: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { Flame };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const Flame = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M7.19824 1.67969C8.37429 2.46862 9.33414 3.57001 10.0469 4.9873L10.0479 4.98828C11.0038 6.88128 11.3967 8.53659 11.3154 9.93262V9.93848C11.3119 10.0074 11.317 10.7074 11.3252 11.3242C11.3295 11.6489 11.3349 11.9773 11.3418 12.2285C11.3452 12.3528 11.3489 12.4664 11.3535 12.5527C11.3557 12.5936 11.3587 12.6417 11.3633 12.6865C11.3653 12.7062 11.3702 12.7464 11.3789 12.793C11.3829 12.814 11.3924 12.8624 11.4111 12.9209C11.4205 12.9501 11.4384 13.0025 11.4688 13.0635C11.4908 13.1078 11.5501 13.2174 11.6631 13.3291V13.3311C11.6667 13.3346 11.6712 13.3373 11.6748 13.3408C11.6812 13.3469 11.6866 13.3543 11.6934 13.3604L11.6943 13.3584C11.9875 13.628 12.3337 13.678 12.5703 13.6553C12.77 13.6361 13.0786 13.5509 13.3291 13.2676L13.335 13.2607L13.3418 13.2529C13.7154 12.8134 14.1282 12.042 14.4502 11.2148C14.688 10.6039 14.9004 9.89621 15.0127 9.17871C15.544 9.81522 15.9841 10.5357 16.3135 11.3184H16.3145C16.7706 12.4001 16.9999 13.5477 17 14.7334V14.7354C17.0022 15.869 16.7861 16.9908 16.3652 18.0303H16.3643C15.9585 19.0348 15.3784 19.9367 14.6396 20.707L14.6367 20.709C13.997 21.381 13.2565 21.93 12.4482 22.335L12.0977 22.5C11.8761 22.5975 11.6513 22.6831 11.4248 22.7588C11.0305 22.5715 10.6865 22.2053 10.2666 21.3115L10.2578 21.292L10.2471 21.2715C9.78799 20.3976 9.09213 18.7236 8.92871 18.2021L8.89746 18.1035L8.8252 17.873L8.65625 17.7012L8.37207 17.4131L8.07812 17.1143H6.37598V22.6865C6.21782 22.6285 6.05989 22.5669 5.9043 22.498H5.90332C4.9561 22.0804 4.10166 21.4771 3.36035 20.7041H3.36133C2.63008 19.9405 2.04238 19.0323 1.63477 18.0273H1.63574C1.21431 16.9851 1.00004 15.8792 1 14.7314L1.01367 14.2451C1.07606 13.1149 1.3534 12.0094 1.8291 10.9951C2.3762 9.84316 3.16055 8.84134 4.12012 8.0625L4.12207 8.06055C4.62833 7.6472 5.08836 7.17596 5.49316 6.65625L5.49414 6.65527C6.07678 5.9061 6.53179 5.07095 6.84863 4.17383C7.11225 3.42816 7.21881 2.58231 7.19824 1.67969Z" }))
5
+ );
6
+ Flame.displayName = "Flame";
7
+ export {
8
+ Flame
9
+ };
@@ -0,0 +1,43 @@
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
+ var HistoryBack_exports = {};
30
+ __export(HistoryBack_exports, {
31
+ HistoryBack: () => HistoryBack
32
+ });
33
+ module.exports = __toCommonJS(HistoryBack_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const HistoryBack = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M12.0002 22C7.16225 22 3.12674 18.5645 2.2002 14H4.25219C5.14028 17.4505 8.27248 20 12.0002 20C16.4185 20 20.0002 16.4183 20.0002 12C19.9952 7.58378 16.4164 4.00496 12.0002 4C9.0206 4 6.42149 5.62888 5.04473 8.04473L8 11H1V4L3.58908 6.58908C5.36889 3.82814 8.47103 2 12.0002 2C17.523 2 22.0002 6.47715 22.0002 12C21.9941 17.5203 17.5205 21.9939 12.0002 22Z", fill: "#313949" }), /* @__PURE__ */ import_react.default.createElement("path", { d: "M17.0002 13H11.0002V7H13.0002V11H17.0002V13Z", fill: "#313949" }))
38
+ );
39
+ HistoryBack.displayName = "HistoryBack";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ HistoryBack
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const HistoryBack: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { HistoryBack };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const HistoryBack: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { HistoryBack };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const HistoryBack = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M12.0002 22C7.16225 22 3.12674 18.5645 2.2002 14H4.25219C5.14028 17.4505 8.27248 20 12.0002 20C16.4185 20 20.0002 16.4183 20.0002 12C19.9952 7.58378 16.4164 4.00496 12.0002 4C9.0206 4 6.42149 5.62888 5.04473 8.04473L8 11H1V4L3.58908 6.58908C5.36889 3.82814 8.47103 2 12.0002 2C17.523 2 22.0002 6.47715 22.0002 12C21.9941 17.5203 17.5205 21.9939 12.0002 22Z", fill: "#313949" }), /* @__PURE__ */ React.createElement("path", { d: "M17.0002 13H11.0002V7H13.0002V11H17.0002V13Z", fill: "#313949" }))
5
+ );
6
+ HistoryBack.displayName = "HistoryBack";
7
+ export {
8
+ HistoryBack
9
+ };
@@ -0,0 +1,43 @@
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
+ var MedbrainFullAi_exports = {};
30
+ __export(MedbrainFullAi_exports, {
31
+ MedbrainFullAi: () => MedbrainFullAi
32
+ });
33
+ module.exports = __toCommonJS(MedbrainFullAi_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const MedbrainFullAi = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M20.5 12C20.7 11.7 20.8 11.4 20.9 11.1C21 10.8 21 10.5 21 10.1C21 9.2 20.7 8.4 20.1 7.8C19.5 7.1 18.7 6.8 17.8 6.7C17.8 5.9 17.5 5.3 16.9 4.8C16.4 4.3 15.8 4 15 4C14.6 4 14.2 4.1 13.9 4.2C13.6 4.3 13.3 4.6 13 4.8C12.7 4.5 12.4 4.3 12.1 4.2C11.7 4.1 11.4 4 11 4C10.2 4 9.6 4.3 9 4.8C8.5 5.3 8.2 6 8.1 6.7C7.2 6.8 6.5 7.2 5.9 7.9C5.3 8.5 5 9.3 5 10.2C5 10.5 5 10.8 5.1 11.2C5.2 11.5 5.3 11.8 5.5 12.1C5.3 12.4 5.2 12.7 5.1 13C5 13.3 5 13.6 5 13.9C5 14.8 5.3 15.6 5.9 16.3C6.5 17 7.3 17.3 8.2 17.4C8.3 18.1 8.6 18.7 9.1 19.2C9.6 19.7 10.2 20 11 20C11.4 20 11.8 19.9 12.1 19.8C12.4 19.6 12.8 19.4 13 19.2C13.3 19.5 13.6 19.7 13.9 19.8C14.2 19.9 14.6 20 15 20C15.7 20 16.4 19.7 16.9 19.2C17.4 18.7 17.7 18.1 17.8 17.4C18.7 17.3 19.5 17 20.1 16.3C20.7 15.6 21 14.8 21 13.9C21 13.6 21 13.3 20.9 13C20.8 12.7 20.7 12.3 20.5 12ZM12.2 17.2C12.2 17.5 12.1 17.8 11.8 18.1C11.6 18.3 11.3 18.5 10.9 18.5C10.6 18.5 10.3 18.4 10.1 18.2C9.9 18 9.8 17.7 9.7 17.3C10 17.2 10.3 17 10.6 16.8C10.9 16.6 11.1 16.4 11.3 16.1C11.4 15.9 11.5 15.7 11.4 15.5C11.4 15.3 11.3 15.1 11.1 15C10.9 14.9 10.7 14.8 10.5 14.9C10.3 14.9 10.1 15 10 15.2C9.8 15.4 9.6 15.6 9.3 15.8C9 15.9 8.7 16 8.4 16C7.9 16 7.4 15.8 7.1 15.5C6.7 15.1 6.6 14.7 6.6 14.2C6.6 14.1 6.6 14 6.6 13.8C6.6 13.7 6.7 13.6 6.7 13.5C7 13.7 7.2 13.8 7.5 13.9C7.8 14 8.1 14 8.4 14C8.6 14 8.8 13.9 9 13.8C9.2 13.6 9.2 13.5 9.2 13.2C9.2 13 9.1 12.8 9 12.6C8.8 12.4 8.7 12.4 8.4 12.4C7.9 12.4 7.4 12.2 7.1 11.9C6.7 11.5 6.6 11.1 6.6 10.6C6.6 10.1 6.8 9.6 7.2 9.3C7.6 8.9 8 8.8 8.6 8.7C8.8 9 9 9.2 9.2 9.4C9.4 9.6 9.7 9.8 10 9.9C10.2 10 10.4 10 10.6 9.9C10.8 9.8 10.9 9.7 11 9.4C11.1 9.2 11.1 9 11 8.8C10.9 8.6 10.7 8.5 10.5 8.4C10.3 8.3 10.1 8.2 9.9 8C9.7 7.8 9.7 7.6 9.7 7.3C9.7 7 9.8 6.7 10.1 6.4C10.3 6.2 10.6 6 11 6C11.4 6 11.6 6.1 11.9 6.4C12.1 6.6 12.3 6.9 12.3 7.3V17.2H12.2ZM16.9 13.5C17.1 13.7 17.2 13.7 17.5 13.7C17.8 13.7 18.1 13.7 18.4 13.6C18.7 13.5 19 13.4 19.2 13.3C19.2 13.4 19.3 13.5 19.3 13.6C19.3 13.7 19.3 13.8 19.3 14C19.3 14.5 19.1 15 18.8 15.3C18.4 15.7 18 15.8 17.5 15.8C17.2 15.8 16.9 15.7 16.6 15.6C16.3 15.5 16.1 15.3 15.9 15C15.8 14.8 15.6 14.7 15.4 14.7C15.2 14.7 15 14.7 14.8 14.8C14.6 14.9 14.5 15.1 14.5 15.3C14.5 15.5 14.5 15.7 14.6 15.9C14.8 16.2 15 16.4 15.3 16.6C15.6 16.8 15.8 17 16.1 17.1C16.1 17.5 16 17.8 15.7 18C15.4 18.2 15.2 18.3 14.9 18.3C14.6 18.3 14.3 18.2 14 17.9C13.8 17.7 13.6 17.4 13.6 17V6.8C13.6 6.5 13.7 6.2 14 5.9C14.2 5.7 14.5 5.5 14.9 5.5C15.2 5.5 15.5 5.6 15.8 5.9C16 6.1 16.2 6.4 16.2 6.8C16.2 7.1 16.1 7.3 16 7.5C15.9 7.7 15.7 7.9 15.4 7.9C15.2 8 15 8.1 14.9 8.3C14.8 8.5 14.8 8.7 14.9 8.9C15 9.1 15.1 9.3 15.3 9.4C15.5 9.5 15.7 9.5 15.9 9.4C16.2 9.3 16.5 9.1 16.7 8.9C16.9 8.7 17.2 8.5 17.3 8.2C17.8 8.2 18.3 8.4 18.7 8.8C19.1 9.2 19.3 9.6 19.3 10.1C19.3 10.6 19.1 11.1 18.8 11.4C18.4 11.8 18 11.9 17.5 11.9C17.3 11.9 17.1 12 16.9 12.1C16.7 12.3 16.7 12.4 16.7 12.7C16.7 13.1 16.8 13.3 16.9 13.5Z", fill: "#313949" }), /* @__PURE__ */ import_react.default.createElement("path", { d: "M4.6375 4.6375L3.5 7L2.45 4.6375L0 3.5L2.45 2.3625L3.5 0L4.6375 2.3625L7 3.5L4.6375 4.6375Z", fill: "#313949" }), /* @__PURE__ */ import_react.default.createElement("path", { d: "M23 20L21.6667 19.3333L21 18L20.4 19.3333L19 20L20.4 20.6667L21 22L21.6667 20.6667L23 20Z", fill: "#313949" }), /* @__PURE__ */ import_react.default.createElement("path", { d: "M8 21L6 20L5 18L4.1 20L2 21L4.1 22L5 24L6 22L8 21Z", fill: "#313949" }))
38
+ );
39
+ MedbrainFullAi.displayName = "MedbrainFullAi";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ MedbrainFullAi
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const MedbrainFullAi: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { MedbrainFullAi };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const MedbrainFullAi: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { MedbrainFullAi };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const MedbrainFullAi = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M20.5 12C20.7 11.7 20.8 11.4 20.9 11.1C21 10.8 21 10.5 21 10.1C21 9.2 20.7 8.4 20.1 7.8C19.5 7.1 18.7 6.8 17.8 6.7C17.8 5.9 17.5 5.3 16.9 4.8C16.4 4.3 15.8 4 15 4C14.6 4 14.2 4.1 13.9 4.2C13.6 4.3 13.3 4.6 13 4.8C12.7 4.5 12.4 4.3 12.1 4.2C11.7 4.1 11.4 4 11 4C10.2 4 9.6 4.3 9 4.8C8.5 5.3 8.2 6 8.1 6.7C7.2 6.8 6.5 7.2 5.9 7.9C5.3 8.5 5 9.3 5 10.2C5 10.5 5 10.8 5.1 11.2C5.2 11.5 5.3 11.8 5.5 12.1C5.3 12.4 5.2 12.7 5.1 13C5 13.3 5 13.6 5 13.9C5 14.8 5.3 15.6 5.9 16.3C6.5 17 7.3 17.3 8.2 17.4C8.3 18.1 8.6 18.7 9.1 19.2C9.6 19.7 10.2 20 11 20C11.4 20 11.8 19.9 12.1 19.8C12.4 19.6 12.8 19.4 13 19.2C13.3 19.5 13.6 19.7 13.9 19.8C14.2 19.9 14.6 20 15 20C15.7 20 16.4 19.7 16.9 19.2C17.4 18.7 17.7 18.1 17.8 17.4C18.7 17.3 19.5 17 20.1 16.3C20.7 15.6 21 14.8 21 13.9C21 13.6 21 13.3 20.9 13C20.8 12.7 20.7 12.3 20.5 12ZM12.2 17.2C12.2 17.5 12.1 17.8 11.8 18.1C11.6 18.3 11.3 18.5 10.9 18.5C10.6 18.5 10.3 18.4 10.1 18.2C9.9 18 9.8 17.7 9.7 17.3C10 17.2 10.3 17 10.6 16.8C10.9 16.6 11.1 16.4 11.3 16.1C11.4 15.9 11.5 15.7 11.4 15.5C11.4 15.3 11.3 15.1 11.1 15C10.9 14.9 10.7 14.8 10.5 14.9C10.3 14.9 10.1 15 10 15.2C9.8 15.4 9.6 15.6 9.3 15.8C9 15.9 8.7 16 8.4 16C7.9 16 7.4 15.8 7.1 15.5C6.7 15.1 6.6 14.7 6.6 14.2C6.6 14.1 6.6 14 6.6 13.8C6.6 13.7 6.7 13.6 6.7 13.5C7 13.7 7.2 13.8 7.5 13.9C7.8 14 8.1 14 8.4 14C8.6 14 8.8 13.9 9 13.8C9.2 13.6 9.2 13.5 9.2 13.2C9.2 13 9.1 12.8 9 12.6C8.8 12.4 8.7 12.4 8.4 12.4C7.9 12.4 7.4 12.2 7.1 11.9C6.7 11.5 6.6 11.1 6.6 10.6C6.6 10.1 6.8 9.6 7.2 9.3C7.6 8.9 8 8.8 8.6 8.7C8.8 9 9 9.2 9.2 9.4C9.4 9.6 9.7 9.8 10 9.9C10.2 10 10.4 10 10.6 9.9C10.8 9.8 10.9 9.7 11 9.4C11.1 9.2 11.1 9 11 8.8C10.9 8.6 10.7 8.5 10.5 8.4C10.3 8.3 10.1 8.2 9.9 8C9.7 7.8 9.7 7.6 9.7 7.3C9.7 7 9.8 6.7 10.1 6.4C10.3 6.2 10.6 6 11 6C11.4 6 11.6 6.1 11.9 6.4C12.1 6.6 12.3 6.9 12.3 7.3V17.2H12.2ZM16.9 13.5C17.1 13.7 17.2 13.7 17.5 13.7C17.8 13.7 18.1 13.7 18.4 13.6C18.7 13.5 19 13.4 19.2 13.3C19.2 13.4 19.3 13.5 19.3 13.6C19.3 13.7 19.3 13.8 19.3 14C19.3 14.5 19.1 15 18.8 15.3C18.4 15.7 18 15.8 17.5 15.8C17.2 15.8 16.9 15.7 16.6 15.6C16.3 15.5 16.1 15.3 15.9 15C15.8 14.8 15.6 14.7 15.4 14.7C15.2 14.7 15 14.7 14.8 14.8C14.6 14.9 14.5 15.1 14.5 15.3C14.5 15.5 14.5 15.7 14.6 15.9C14.8 16.2 15 16.4 15.3 16.6C15.6 16.8 15.8 17 16.1 17.1C16.1 17.5 16 17.8 15.7 18C15.4 18.2 15.2 18.3 14.9 18.3C14.6 18.3 14.3 18.2 14 17.9C13.8 17.7 13.6 17.4 13.6 17V6.8C13.6 6.5 13.7 6.2 14 5.9C14.2 5.7 14.5 5.5 14.9 5.5C15.2 5.5 15.5 5.6 15.8 5.9C16 6.1 16.2 6.4 16.2 6.8C16.2 7.1 16.1 7.3 16 7.5C15.9 7.7 15.7 7.9 15.4 7.9C15.2 8 15 8.1 14.9 8.3C14.8 8.5 14.8 8.7 14.9 8.9C15 9.1 15.1 9.3 15.3 9.4C15.5 9.5 15.7 9.5 15.9 9.4C16.2 9.3 16.5 9.1 16.7 8.9C16.9 8.7 17.2 8.5 17.3 8.2C17.8 8.2 18.3 8.4 18.7 8.8C19.1 9.2 19.3 9.6 19.3 10.1C19.3 10.6 19.1 11.1 18.8 11.4C18.4 11.8 18 11.9 17.5 11.9C17.3 11.9 17.1 12 16.9 12.1C16.7 12.3 16.7 12.4 16.7 12.7C16.7 13.1 16.8 13.3 16.9 13.5Z", fill: "#313949" }), /* @__PURE__ */ React.createElement("path", { d: "M4.6375 4.6375L3.5 7L2.45 4.6375L0 3.5L2.45 2.3625L3.5 0L4.6375 2.3625L7 3.5L4.6375 4.6375Z", fill: "#313949" }), /* @__PURE__ */ React.createElement("path", { d: "M23 20L21.6667 19.3333L21 18L20.4 19.3333L19 20L20.4 20.6667L21 22L21.6667 20.6667L23 20Z", fill: "#313949" }), /* @__PURE__ */ React.createElement("path", { d: "M8 21L6 20L5 18L4.1 20L2 21L4.1 22L5 24L6 22L8 21Z", fill: "#313949" }))
5
+ );
6
+ MedbrainFullAi.displayName = "MedbrainFullAi";
7
+ export {
8
+ MedbrainFullAi
9
+ };
@@ -0,0 +1,43 @@
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
+ var Test_exports = {};
30
+ __export(Test_exports, {
31
+ Test: () => Test
32
+ });
33
+ module.exports = __toCommonJS(Test_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const Test = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M7 16H14V18H7V16ZM7 12H17V14H7V12ZM7 8H17V10H7V8ZM19 4H14.82C14.4 2.84 13.3 2 12 2C10.7 2 9.6 2.84 9.18 4H5C4.86 4 4.73 4.01 4.6 4.04C4.21 4.12 3.86 4.32 3.59 4.59C3.41 4.77 3.26 4.99 3.16 5.23C3.06 5.46 3 5.72 3 6V20C3 20.27 3.06 20.54 3.16 20.78C3.26 21.02 3.41 21.23 3.59 21.42C3.86 21.69 4.21 21.89 4.6 21.97C4.73 21.99 4.86 22 5 22H19C20.1 22 21 21.1 21 20V6C21 4.9 20.1 4 19 4ZM12 3.75C12.41 3.75 12.75 4.09 12.75 4.5C12.75 4.91 12.41 5.25 12 5.25C11.59 5.25 11.25 4.91 11.25 4.5C11.25 4.09 11.59 3.75 12 3.75ZM19 20H5V6H19V20Z", fill: "#313949" }))
38
+ );
39
+ Test.displayName = "Test";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ Test
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const Test: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { Test };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const Test: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { Test };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const Test = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M7 16H14V18H7V16ZM7 12H17V14H7V12ZM7 8H17V10H7V8ZM19 4H14.82C14.4 2.84 13.3 2 12 2C10.7 2 9.6 2.84 9.18 4H5C4.86 4 4.73 4.01 4.6 4.04C4.21 4.12 3.86 4.32 3.59 4.59C3.41 4.77 3.26 4.99 3.16 5.23C3.06 5.46 3 5.72 3 6V20C3 20.27 3.06 20.54 3.16 20.78C3.26 21.02 3.41 21.23 3.59 21.42C3.86 21.69 4.21 21.89 4.6 21.97C4.73 21.99 4.86 22 5 22H19C20.1 22 21 21.1 21 20V6C21 4.9 20.1 4 19 4ZM12 3.75C12.41 3.75 12.75 4.09 12.75 4.5C12.75 4.91 12.41 5.25 12 5.25C11.59 5.25 11.25 4.91 11.25 4.5C11.25 4.09 11.59 3.75 12 3.75ZM19 20H5V6H19V20Z", fill: "#313949" }))
5
+ );
6
+ Test.displayName = "Test";
7
+ export {
8
+ Test
9
+ };
@@ -0,0 +1,43 @@
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
+ var TestTime_exports = {};
30
+ __export(TestTime_exports, {
31
+ TestTime: () => TestTime
32
+ });
33
+ module.exports = __toCommonJS(TestTime_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const TestTime = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M13.395 16.033H7.08V18.027H13.395V16.033Z", fill: "#313949" }), /* @__PURE__ */ import_react.default.createElement("path", { d: "M17.025 8.25187H7.02V10.2459H17.025V8.25187Z", fill: "#313949" }), /* @__PURE__ */ import_react.default.createElement("path", { d: "M13.5005 12.2399H7.02V14.2339H13.5005V12.2399Z", fill: "#313949" }), /* @__PURE__ */ import_react.default.createElement("path", { d: "M19.02 17.8471L20.76 16.1229C20.865 16.018 20.925 15.8681 20.925 15.7331V14.9985C20.925 14.8486 20.805 14.7136 20.64 14.7136H16.11C15.96 14.7136 15.825 14.8336 15.825 14.9985V15.7181C15.825 15.8681 15.885 16.003 15.99 16.1079L17.73 17.8321C17.79 17.8921 17.82 17.952 17.82 18.027V18.6267C17.82 18.7016 17.79 18.7766 17.73 18.8216L15.99 20.5457C15.885 20.6507 15.825 20.8006 15.825 20.9355V21.6552C15.825 21.8051 15.945 21.94 16.11 21.94H20.655C20.805 21.94 20.94 21.8201 20.94 21.6552V20.9355C20.94 20.7856 20.88 20.6507 20.775 20.5457L19.035 18.8216C18.975 18.7616 18.945 18.7016 18.945 18.6267V18.027C18.945 17.967 18.975 17.8921 19.02 17.8471Z", fill: "#313949" }), /* @__PURE__ */ import_react.default.createElement("path", { d: "M19.005 3.994H14.82C14.4 2.83958 13.305 2 12 2C10.695 2 9.6 2.83958 9.18 3.994H4.995C4.86 3.994 4.725 4.009 4.59 4.03898C4.215 4.11394 3.855 4.32384 3.585 4.5937C3.405 4.77361 3.255 4.98351 3.165 5.22339C3.06 5.46327 3 5.71814 3 6.003V19.991C3 20.2609 3.06 20.5307 3.165 20.7706C3.27 21.0105 3.42 21.2204 3.6 21.4153C3.87 21.6852 4.215 21.8801 4.605 21.97C4.74 21.985 4.86 22 5.01 22H13.35V19.991H4.995V6.003H18.99V12.2099H21V6.003C21 4.89355 20.1 3.994 19.005 3.994ZM12 5.25337C11.595 5.25337 11.25 4.90855 11.25 4.50375C11.25 4.09895 11.595 3.75412 12 3.75412C12.405 3.75412 12.75 4.09895 12.75 4.50375C12.75 4.90855 12.405 5.25337 12 5.25337Z", fill: "#313949" }))
38
+ );
39
+ TestTime.displayName = "TestTime";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ TestTime
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const TestTime: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { TestTime };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const TestTime: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { TestTime };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const TestTime = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M13.395 16.033H7.08V18.027H13.395V16.033Z", fill: "#313949" }), /* @__PURE__ */ React.createElement("path", { d: "M17.025 8.25187H7.02V10.2459H17.025V8.25187Z", fill: "#313949" }), /* @__PURE__ */ React.createElement("path", { d: "M13.5005 12.2399H7.02V14.2339H13.5005V12.2399Z", fill: "#313949" }), /* @__PURE__ */ React.createElement("path", { d: "M19.02 17.8471L20.76 16.1229C20.865 16.018 20.925 15.8681 20.925 15.7331V14.9985C20.925 14.8486 20.805 14.7136 20.64 14.7136H16.11C15.96 14.7136 15.825 14.8336 15.825 14.9985V15.7181C15.825 15.8681 15.885 16.003 15.99 16.1079L17.73 17.8321C17.79 17.8921 17.82 17.952 17.82 18.027V18.6267C17.82 18.7016 17.79 18.7766 17.73 18.8216L15.99 20.5457C15.885 20.6507 15.825 20.8006 15.825 20.9355V21.6552C15.825 21.8051 15.945 21.94 16.11 21.94H20.655C20.805 21.94 20.94 21.8201 20.94 21.6552V20.9355C20.94 20.7856 20.88 20.6507 20.775 20.5457L19.035 18.8216C18.975 18.7616 18.945 18.7016 18.945 18.6267V18.027C18.945 17.967 18.975 17.8921 19.02 17.8471Z", fill: "#313949" }), /* @__PURE__ */ React.createElement("path", { d: "M19.005 3.994H14.82C14.4 2.83958 13.305 2 12 2C10.695 2 9.6 2.83958 9.18 3.994H4.995C4.86 3.994 4.725 4.009 4.59 4.03898C4.215 4.11394 3.855 4.32384 3.585 4.5937C3.405 4.77361 3.255 4.98351 3.165 5.22339C3.06 5.46327 3 5.71814 3 6.003V19.991C3 20.2609 3.06 20.5307 3.165 20.7706C3.27 21.0105 3.42 21.2204 3.6 21.4153C3.87 21.6852 4.215 21.8801 4.605 21.97C4.74 21.985 4.86 22 5.01 22H13.35V19.991H4.995V6.003H18.99V12.2099H21V6.003C21 4.89355 20.1 3.994 19.005 3.994ZM12 5.25337C11.595 5.25337 11.25 4.90855 11.25 4.50375C11.25 4.09895 11.595 3.75412 12 3.75412C12.405 3.75412 12.75 4.09895 12.75 4.50375C12.75 4.90855 12.405 5.25337 12 5.25337Z", fill: "#313949" }))
5
+ );
6
+ TestTime.displayName = "TestTime";
7
+ export {
8
+ TestTime
9
+ };
@@ -27,6 +27,7 @@ __export(icons_exports, {
27
27
  AddToQueue: () => import_AddToQueue.AddToQueue,
28
28
  Airplay: () => import_Airplay.Airplay,
29
29
  Alarm: () => import_Alarm.Alarm,
30
+ Anticipate: () => import_Anticipate.Anticipate,
30
31
  Archive: () => import_Archive.Archive,
31
32
  ArrowCircleDown: () => import_ArrowCircleDown.ArrowCircleDown,
32
33
  ArrowCircleDownLeft: () => import_ArrowCircleDownLeft.ArrowCircleDownLeft,
@@ -233,6 +234,7 @@ __export(icons_exports, {
233
234
  Fire: () => import_Fire.Fire,
234
235
  FirstAid: () => import_FirstAid.FirstAid,
235
236
  Flag: () => import_Flag.Flag,
237
+ Flame: () => import_Flame.Flame,
236
238
  Flashcard: () => import_Flashcard.Flashcard,
237
239
  Focus: () => import_Focus.Focus,
238
240
  Folder: () => import_Folder.Folder,
@@ -271,6 +273,7 @@ __export(icons_exports, {
271
273
  Heart2: () => import_Heart2.Heart2,
272
274
  Help: () => import_Help.Help,
273
275
  Hide: () => import_Hide.Hide,
276
+ HistoryBack: () => import_HistoryBack.HistoryBack,
274
277
  House: () => import_House.House,
275
278
  House2: () => import_House2.House2,
276
279
  House3: () => import_House3.House3,
@@ -324,6 +327,7 @@ __export(icons_exports, {
324
327
  MapPin: () => import_MapPin.MapPin,
325
328
  Medbrain: () => import_Medbrain.Medbrain,
326
329
  MedbrainAi: () => import_MedbrainAi.MedbrainAi,
330
+ MedbrainFullAi: () => import_MedbrainFullAi.MedbrainFullAi,
327
331
  MedicalClinic: () => import_MedicalClinic.MedicalClinic,
328
332
  Mention: () => import_Mention.Mention,
329
333
  MenuAlt: () => import_MenuAlt.MenuAlt,
@@ -450,7 +454,9 @@ __export(icons_exports, {
450
454
  Target: () => import_Target.Target,
451
455
  TarguetArrow: () => import_TarguetArrow.TarguetArrow,
452
456
  Terminal: () => import_Terminal.Terminal,
457
+ Test: () => import_Test.Test,
453
458
  TestAi: () => import_TestAi.TestAi,
459
+ TestTime: () => import_TestTime.TestTime,
454
460
  Text: () => import_Text.Text,
455
461
  TextAlignCenter: () => import_TextAlignCenter.TextAlignCenter,
456
462
  TextAlignJustify: () => import_TextAlignJustify.TextAlignJustify,
@@ -528,6 +534,7 @@ var import_AddRow = require("./AddRow");
528
534
  var import_AddToQueue = require("./AddToQueue");
529
535
  var import_Airplay = require("./Airplay");
530
536
  var import_Alarm = require("./Alarm");
537
+ var import_Anticipate = require("./Anticipate");
531
538
  var import_Archive = require("./Archive");
532
539
  var import_ArrowCircleDown = require("./ArrowCircleDown");
533
540
  var import_ArrowCircleDownLeft = require("./ArrowCircleDownLeft");
@@ -734,6 +741,7 @@ var import_FilterOff = require("./FilterOff");
734
741
  var import_Fire = require("./Fire");
735
742
  var import_FirstAid = require("./FirstAid");
736
743
  var import_Flag = require("./Flag");
744
+ var import_Flame = require("./Flame");
737
745
  var import_Flashcard = require("./Flashcard");
738
746
  var import_Focus = require("./Focus");
739
747
  var import_Folder = require("./Folder");
@@ -772,6 +780,7 @@ var import_Heart = require("./Heart");
772
780
  var import_Heart2 = require("./Heart2");
773
781
  var import_Help = require("./Help");
774
782
  var import_Hide = require("./Hide");
783
+ var import_HistoryBack = require("./HistoryBack");
775
784
  var import_House = require("./House");
776
785
  var import_House2 = require("./House2");
777
786
  var import_House3 = require("./House3");
@@ -825,6 +834,7 @@ var import_Map = require("./Map");
825
834
  var import_MapPin = require("./MapPin");
826
835
  var import_Medbrain = require("./Medbrain");
827
836
  var import_MedbrainAi = require("./MedbrainAi");
837
+ var import_MedbrainFullAi = require("./MedbrainFullAi");
828
838
  var import_MedicalClinic = require("./MedicalClinic");
829
839
  var import_Mention = require("./Mention");
830
840
  var import_MenuAlt = require("./MenuAlt");
@@ -951,7 +961,9 @@ var import_Tag = require("./Tag");
951
961
  var import_Target = require("./Target");
952
962
  var import_TarguetArrow = require("./TarguetArrow");
953
963
  var import_Terminal = require("./Terminal");
964
+ var import_Test = require("./Test");
954
965
  var import_TestAi = require("./TestAi");
966
+ var import_TestTime = require("./TestTime");
955
967
  var import_Text = require("./Text");
956
968
  var import_TextAlignCenter = require("./TextAlignCenter");
957
969
  var import_TextAlignJustify = require("./TextAlignJustify");
@@ -1029,6 +1041,7 @@ var import_WindowTerminal = require("./WindowTerminal");
1029
1041
  AddToQueue,
1030
1042
  Airplay,
1031
1043
  Alarm,
1044
+ Anticipate,
1032
1045
  Archive,
1033
1046
  ArrowCircleDown,
1034
1047
  ArrowCircleDownLeft,
@@ -1235,6 +1248,7 @@ var import_WindowTerminal = require("./WindowTerminal");
1235
1248
  Fire,
1236
1249
  FirstAid,
1237
1250
  Flag,
1251
+ Flame,
1238
1252
  Flashcard,
1239
1253
  Focus,
1240
1254
  Folder,
@@ -1273,6 +1287,7 @@ var import_WindowTerminal = require("./WindowTerminal");
1273
1287
  Heart2,
1274
1288
  Help,
1275
1289
  Hide,
1290
+ HistoryBack,
1276
1291
  House,
1277
1292
  House2,
1278
1293
  House3,
@@ -1326,6 +1341,7 @@ var import_WindowTerminal = require("./WindowTerminal");
1326
1341
  MapPin,
1327
1342
  Medbrain,
1328
1343
  MedbrainAi,
1344
+ MedbrainFullAi,
1329
1345
  MedicalClinic,
1330
1346
  Mention,
1331
1347
  MenuAlt,
@@ -1452,7 +1468,9 @@ var import_WindowTerminal = require("./WindowTerminal");
1452
1468
  Target,
1453
1469
  TarguetArrow,
1454
1470
  Terminal,
1471
+ Test,
1455
1472
  TestAi,
1473
+ TestTime,
1456
1474
  Text,
1457
1475
  TextAlignCenter,
1458
1476
  TextAlignJustify,
@@ -7,6 +7,7 @@ export { AddRow } from './AddRow.cjs';
7
7
  export { AddToQueue } from './AddToQueue.cjs';
8
8
  export { Airplay } from './Airplay.cjs';
9
9
  export { Alarm } from './Alarm.cjs';
10
+ export { Anticipate } from './Anticipate.cjs';
10
11
  export { Archive } from './Archive.cjs';
11
12
  export { ArrowCircleDown } from './ArrowCircleDown.cjs';
12
13
  export { ArrowCircleDownLeft } from './ArrowCircleDownLeft.cjs';
@@ -213,6 +214,7 @@ export { FilterOff } from './FilterOff.cjs';
213
214
  export { Fire } from './Fire.cjs';
214
215
  export { FirstAid } from './FirstAid.cjs';
215
216
  export { Flag } from './Flag.cjs';
217
+ export { Flame } from './Flame.cjs';
216
218
  export { Flashcard } from './Flashcard.cjs';
217
219
  export { Focus } from './Focus.cjs';
218
220
  export { Folder } from './Folder.cjs';
@@ -251,6 +253,7 @@ export { Heart } from './Heart.cjs';
251
253
  export { Heart2 } from './Heart2.cjs';
252
254
  export { Help } from './Help.cjs';
253
255
  export { Hide } from './Hide.cjs';
256
+ export { HistoryBack } from './HistoryBack.cjs';
254
257
  export { House } from './House.cjs';
255
258
  export { House2 } from './House2.cjs';
256
259
  export { House3 } from './House3.cjs';
@@ -304,6 +307,7 @@ export { Map } from './Map.cjs';
304
307
  export { MapPin } from './MapPin.cjs';
305
308
  export { Medbrain } from './Medbrain.cjs';
306
309
  export { MedbrainAi } from './MedbrainAi.cjs';
310
+ export { MedbrainFullAi } from './MedbrainFullAi.cjs';
307
311
  export { MedicalClinic } from './MedicalClinic.cjs';
308
312
  export { Mention } from './Mention.cjs';
309
313
  export { MenuAlt } from './MenuAlt.cjs';
@@ -430,7 +434,9 @@ export { Tag } from './Tag.cjs';
430
434
  export { Target } from './Target.cjs';
431
435
  export { TarguetArrow } from './TarguetArrow.cjs';
432
436
  export { Terminal } from './Terminal.cjs';
437
+ export { Test } from './Test.cjs';
433
438
  export { TestAi } from './TestAi.cjs';
439
+ export { TestTime } from './TestTime.cjs';
434
440
  export { Text } from './Text.cjs';
435
441
  export { TextAlignCenter } from './TextAlignCenter.cjs';
436
442
  export { TextAlignJustify } from './TextAlignJustify.cjs';