@medway-ui/icons 1.2.0 → 1.3.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.
- package/dist/components/icons/Flame.cjs +43 -0
- package/dist/components/icons/Flame.d.cts +6 -0
- package/dist/components/icons/Flame.d.ts +6 -0
- package/dist/components/icons/Flame.js +9 -0
- package/dist/components/icons/HistoryBack.cjs +43 -0
- package/dist/components/icons/HistoryBack.d.cts +6 -0
- package/dist/components/icons/HistoryBack.d.ts +6 -0
- package/dist/components/icons/HistoryBack.js +9 -0
- package/dist/components/icons/MedbrainFullAi.cjs +43 -0
- package/dist/components/icons/MedbrainFullAi.d.cts +6 -0
- package/dist/components/icons/MedbrainFullAi.d.ts +6 -0
- package/dist/components/icons/MedbrainFullAi.js +9 -0
- package/dist/components/icons/Test.cjs +43 -0
- package/dist/components/icons/Test.d.cts +6 -0
- package/dist/components/icons/Test.d.ts +6 -0
- package/dist/components/icons/Test.js +9 -0
- package/dist/components/icons/TestTime.cjs +43 -0
- package/dist/components/icons/TestTime.d.cts +6 -0
- package/dist/components/icons/TestTime.d.ts +6 -0
- package/dist/components/icons/TestTime.js +9 -0
- package/dist/components/icons/index.cjs +15 -0
- package/dist/components/icons/index.d.cts +5 -0
- package/dist/components/icons/index.d.ts +5 -0
- package/dist/components/icons/index.js +10 -0
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/native/components/icons/Flame.cjs +45 -0
- package/native/components/icons/Flame.d.cts +9 -0
- package/native/components/icons/Flame.d.ts +9 -0
- package/native/components/icons/Flame.js +11 -0
- package/native/components/icons/HistoryBack.cjs +46 -0
- package/native/components/icons/HistoryBack.d.cts +9 -0
- package/native/components/icons/HistoryBack.d.ts +9 -0
- package/native/components/icons/HistoryBack.js +12 -0
- package/native/components/icons/MedbrainFullAi.cjs +48 -0
- package/native/components/icons/MedbrainFullAi.d.cts +9 -0
- package/native/components/icons/MedbrainFullAi.d.ts +9 -0
- package/native/components/icons/MedbrainFullAi.js +14 -0
- package/native/components/icons/Test.cjs +45 -0
- package/native/components/icons/Test.d.cts +9 -0
- package/native/components/icons/Test.d.ts +9 -0
- package/native/components/icons/Test.js +11 -0
- package/native/components/icons/TestTime.cjs +49 -0
- package/native/components/icons/TestTime.d.cts +9 -0
- package/native/components/icons/TestTime.d.ts +9 -0
- package/native/components/icons/TestTime.js +15 -0
- package/native/components/icons/index.cjs +15 -0
- package/native/components/icons/index.d.cts +5 -0
- package/native/components/icons/index.d.ts +5 -0
- package/native/components/icons/index.js +10 -0
- package/native/index.d.cts +31 -1
- package/native/index.d.ts +31 -1
- 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 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
|
+
};
|
|
@@ -233,6 +233,7 @@ __export(icons_exports, {
|
|
|
233
233
|
Fire: () => import_Fire.Fire,
|
|
234
234
|
FirstAid: () => import_FirstAid.FirstAid,
|
|
235
235
|
Flag: () => import_Flag.Flag,
|
|
236
|
+
Flame: () => import_Flame.Flame,
|
|
236
237
|
Flashcard: () => import_Flashcard.Flashcard,
|
|
237
238
|
Focus: () => import_Focus.Focus,
|
|
238
239
|
Folder: () => import_Folder.Folder,
|
|
@@ -271,6 +272,7 @@ __export(icons_exports, {
|
|
|
271
272
|
Heart2: () => import_Heart2.Heart2,
|
|
272
273
|
Help: () => import_Help.Help,
|
|
273
274
|
Hide: () => import_Hide.Hide,
|
|
275
|
+
HistoryBack: () => import_HistoryBack.HistoryBack,
|
|
274
276
|
House: () => import_House.House,
|
|
275
277
|
House2: () => import_House2.House2,
|
|
276
278
|
House3: () => import_House3.House3,
|
|
@@ -324,6 +326,7 @@ __export(icons_exports, {
|
|
|
324
326
|
MapPin: () => import_MapPin.MapPin,
|
|
325
327
|
Medbrain: () => import_Medbrain.Medbrain,
|
|
326
328
|
MedbrainAi: () => import_MedbrainAi.MedbrainAi,
|
|
329
|
+
MedbrainFullAi: () => import_MedbrainFullAi.MedbrainFullAi,
|
|
327
330
|
MedicalClinic: () => import_MedicalClinic.MedicalClinic,
|
|
328
331
|
Mention: () => import_Mention.Mention,
|
|
329
332
|
MenuAlt: () => import_MenuAlt.MenuAlt,
|
|
@@ -450,7 +453,9 @@ __export(icons_exports, {
|
|
|
450
453
|
Target: () => import_Target.Target,
|
|
451
454
|
TarguetArrow: () => import_TarguetArrow.TarguetArrow,
|
|
452
455
|
Terminal: () => import_Terminal.Terminal,
|
|
456
|
+
Test: () => import_Test.Test,
|
|
453
457
|
TestAi: () => import_TestAi.TestAi,
|
|
458
|
+
TestTime: () => import_TestTime.TestTime,
|
|
454
459
|
Text: () => import_Text.Text,
|
|
455
460
|
TextAlignCenter: () => import_TextAlignCenter.TextAlignCenter,
|
|
456
461
|
TextAlignJustify: () => import_TextAlignJustify.TextAlignJustify,
|
|
@@ -734,6 +739,7 @@ var import_FilterOff = require("./FilterOff");
|
|
|
734
739
|
var import_Fire = require("./Fire");
|
|
735
740
|
var import_FirstAid = require("./FirstAid");
|
|
736
741
|
var import_Flag = require("./Flag");
|
|
742
|
+
var import_Flame = require("./Flame");
|
|
737
743
|
var import_Flashcard = require("./Flashcard");
|
|
738
744
|
var import_Focus = require("./Focus");
|
|
739
745
|
var import_Folder = require("./Folder");
|
|
@@ -772,6 +778,7 @@ var import_Heart = require("./Heart");
|
|
|
772
778
|
var import_Heart2 = require("./Heart2");
|
|
773
779
|
var import_Help = require("./Help");
|
|
774
780
|
var import_Hide = require("./Hide");
|
|
781
|
+
var import_HistoryBack = require("./HistoryBack");
|
|
775
782
|
var import_House = require("./House");
|
|
776
783
|
var import_House2 = require("./House2");
|
|
777
784
|
var import_House3 = require("./House3");
|
|
@@ -825,6 +832,7 @@ var import_Map = require("./Map");
|
|
|
825
832
|
var import_MapPin = require("./MapPin");
|
|
826
833
|
var import_Medbrain = require("./Medbrain");
|
|
827
834
|
var import_MedbrainAi = require("./MedbrainAi");
|
|
835
|
+
var import_MedbrainFullAi = require("./MedbrainFullAi");
|
|
828
836
|
var import_MedicalClinic = require("./MedicalClinic");
|
|
829
837
|
var import_Mention = require("./Mention");
|
|
830
838
|
var import_MenuAlt = require("./MenuAlt");
|
|
@@ -951,7 +959,9 @@ var import_Tag = require("./Tag");
|
|
|
951
959
|
var import_Target = require("./Target");
|
|
952
960
|
var import_TarguetArrow = require("./TarguetArrow");
|
|
953
961
|
var import_Terminal = require("./Terminal");
|
|
962
|
+
var import_Test = require("./Test");
|
|
954
963
|
var import_TestAi = require("./TestAi");
|
|
964
|
+
var import_TestTime = require("./TestTime");
|
|
955
965
|
var import_Text = require("./Text");
|
|
956
966
|
var import_TextAlignCenter = require("./TextAlignCenter");
|
|
957
967
|
var import_TextAlignJustify = require("./TextAlignJustify");
|
|
@@ -1235,6 +1245,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1235
1245
|
Fire,
|
|
1236
1246
|
FirstAid,
|
|
1237
1247
|
Flag,
|
|
1248
|
+
Flame,
|
|
1238
1249
|
Flashcard,
|
|
1239
1250
|
Focus,
|
|
1240
1251
|
Folder,
|
|
@@ -1273,6 +1284,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1273
1284
|
Heart2,
|
|
1274
1285
|
Help,
|
|
1275
1286
|
Hide,
|
|
1287
|
+
HistoryBack,
|
|
1276
1288
|
House,
|
|
1277
1289
|
House2,
|
|
1278
1290
|
House3,
|
|
@@ -1326,6 +1338,7 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1326
1338
|
MapPin,
|
|
1327
1339
|
Medbrain,
|
|
1328
1340
|
MedbrainAi,
|
|
1341
|
+
MedbrainFullAi,
|
|
1329
1342
|
MedicalClinic,
|
|
1330
1343
|
Mention,
|
|
1331
1344
|
MenuAlt,
|
|
@@ -1452,7 +1465,9 @@ var import_WindowTerminal = require("./WindowTerminal");
|
|
|
1452
1465
|
Target,
|
|
1453
1466
|
TarguetArrow,
|
|
1454
1467
|
Terminal,
|
|
1468
|
+
Test,
|
|
1455
1469
|
TestAi,
|
|
1470
|
+
TestTime,
|
|
1456
1471
|
Text,
|
|
1457
1472
|
TextAlignCenter,
|
|
1458
1473
|
TextAlignJustify,
|
|
@@ -213,6 +213,7 @@ export { FilterOff } from './FilterOff.cjs';
|
|
|
213
213
|
export { Fire } from './Fire.cjs';
|
|
214
214
|
export { FirstAid } from './FirstAid.cjs';
|
|
215
215
|
export { Flag } from './Flag.cjs';
|
|
216
|
+
export { Flame } from './Flame.cjs';
|
|
216
217
|
export { Flashcard } from './Flashcard.cjs';
|
|
217
218
|
export { Focus } from './Focus.cjs';
|
|
218
219
|
export { Folder } from './Folder.cjs';
|
|
@@ -251,6 +252,7 @@ export { Heart } from './Heart.cjs';
|
|
|
251
252
|
export { Heart2 } from './Heart2.cjs';
|
|
252
253
|
export { Help } from './Help.cjs';
|
|
253
254
|
export { Hide } from './Hide.cjs';
|
|
255
|
+
export { HistoryBack } from './HistoryBack.cjs';
|
|
254
256
|
export { House } from './House.cjs';
|
|
255
257
|
export { House2 } from './House2.cjs';
|
|
256
258
|
export { House3 } from './House3.cjs';
|
|
@@ -304,6 +306,7 @@ export { Map } from './Map.cjs';
|
|
|
304
306
|
export { MapPin } from './MapPin.cjs';
|
|
305
307
|
export { Medbrain } from './Medbrain.cjs';
|
|
306
308
|
export { MedbrainAi } from './MedbrainAi.cjs';
|
|
309
|
+
export { MedbrainFullAi } from './MedbrainFullAi.cjs';
|
|
307
310
|
export { MedicalClinic } from './MedicalClinic.cjs';
|
|
308
311
|
export { Mention } from './Mention.cjs';
|
|
309
312
|
export { MenuAlt } from './MenuAlt.cjs';
|
|
@@ -430,7 +433,9 @@ export { Tag } from './Tag.cjs';
|
|
|
430
433
|
export { Target } from './Target.cjs';
|
|
431
434
|
export { TarguetArrow } from './TarguetArrow.cjs';
|
|
432
435
|
export { Terminal } from './Terminal.cjs';
|
|
436
|
+
export { Test } from './Test.cjs';
|
|
433
437
|
export { TestAi } from './TestAi.cjs';
|
|
438
|
+
export { TestTime } from './TestTime.cjs';
|
|
434
439
|
export { Text } from './Text.cjs';
|
|
435
440
|
export { TextAlignCenter } from './TextAlignCenter.cjs';
|
|
436
441
|
export { TextAlignJustify } from './TextAlignJustify.cjs';
|
|
@@ -213,6 +213,7 @@ export { FilterOff } from './FilterOff.js';
|
|
|
213
213
|
export { Fire } from './Fire.js';
|
|
214
214
|
export { FirstAid } from './FirstAid.js';
|
|
215
215
|
export { Flag } from './Flag.js';
|
|
216
|
+
export { Flame } from './Flame.js';
|
|
216
217
|
export { Flashcard } from './Flashcard.js';
|
|
217
218
|
export { Focus } from './Focus.js';
|
|
218
219
|
export { Folder } from './Folder.js';
|
|
@@ -251,6 +252,7 @@ export { Heart } from './Heart.js';
|
|
|
251
252
|
export { Heart2 } from './Heart2.js';
|
|
252
253
|
export { Help } from './Help.js';
|
|
253
254
|
export { Hide } from './Hide.js';
|
|
255
|
+
export { HistoryBack } from './HistoryBack.js';
|
|
254
256
|
export { House } from './House.js';
|
|
255
257
|
export { House2 } from './House2.js';
|
|
256
258
|
export { House3 } from './House3.js';
|
|
@@ -304,6 +306,7 @@ export { Map } from './Map.js';
|
|
|
304
306
|
export { MapPin } from './MapPin.js';
|
|
305
307
|
export { Medbrain } from './Medbrain.js';
|
|
306
308
|
export { MedbrainAi } from './MedbrainAi.js';
|
|
309
|
+
export { MedbrainFullAi } from './MedbrainFullAi.js';
|
|
307
310
|
export { MedicalClinic } from './MedicalClinic.js';
|
|
308
311
|
export { Mention } from './Mention.js';
|
|
309
312
|
export { MenuAlt } from './MenuAlt.js';
|
|
@@ -430,7 +433,9 @@ export { Tag } from './Tag.js';
|
|
|
430
433
|
export { Target } from './Target.js';
|
|
431
434
|
export { TarguetArrow } from './TarguetArrow.js';
|
|
432
435
|
export { Terminal } from './Terminal.js';
|
|
436
|
+
export { Test } from './Test.js';
|
|
433
437
|
export { TestAi } from './TestAi.js';
|
|
438
|
+
export { TestTime } from './TestTime.js';
|
|
434
439
|
export { Text } from './Text.js';
|
|
435
440
|
export { TextAlignCenter } from './TextAlignCenter.js';
|
|
436
441
|
export { TextAlignJustify } from './TextAlignJustify.js';
|
|
@@ -213,6 +213,7 @@ import { FilterOff } from "./FilterOff";
|
|
|
213
213
|
import { Fire } from "./Fire";
|
|
214
214
|
import { FirstAid } from "./FirstAid";
|
|
215
215
|
import { Flag } from "./Flag";
|
|
216
|
+
import { Flame } from "./Flame";
|
|
216
217
|
import { Flashcard } from "./Flashcard";
|
|
217
218
|
import { Focus } from "./Focus";
|
|
218
219
|
import { Folder } from "./Folder";
|
|
@@ -251,6 +252,7 @@ import { Heart } from "./Heart";
|
|
|
251
252
|
import { Heart2 } from "./Heart2";
|
|
252
253
|
import { Help } from "./Help";
|
|
253
254
|
import { Hide } from "./Hide";
|
|
255
|
+
import { HistoryBack } from "./HistoryBack";
|
|
254
256
|
import { House } from "./House";
|
|
255
257
|
import { House2 } from "./House2";
|
|
256
258
|
import { House3 } from "./House3";
|
|
@@ -304,6 +306,7 @@ import { Map } from "./Map";
|
|
|
304
306
|
import { MapPin } from "./MapPin";
|
|
305
307
|
import { Medbrain } from "./Medbrain";
|
|
306
308
|
import { MedbrainAi } from "./MedbrainAi";
|
|
309
|
+
import { MedbrainFullAi } from "./MedbrainFullAi";
|
|
307
310
|
import { MedicalClinic } from "./MedicalClinic";
|
|
308
311
|
import { Mention } from "./Mention";
|
|
309
312
|
import { MenuAlt } from "./MenuAlt";
|
|
@@ -430,7 +433,9 @@ import { Tag } from "./Tag";
|
|
|
430
433
|
import { Target } from "./Target";
|
|
431
434
|
import { TarguetArrow } from "./TarguetArrow";
|
|
432
435
|
import { Terminal } from "./Terminal";
|
|
436
|
+
import { Test } from "./Test";
|
|
433
437
|
import { TestAi } from "./TestAi";
|
|
438
|
+
import { TestTime } from "./TestTime";
|
|
434
439
|
import { Text } from "./Text";
|
|
435
440
|
import { TextAlignCenter } from "./TextAlignCenter";
|
|
436
441
|
import { TextAlignJustify } from "./TextAlignJustify";
|
|
@@ -713,6 +718,7 @@ export {
|
|
|
713
718
|
Fire,
|
|
714
719
|
FirstAid,
|
|
715
720
|
Flag,
|
|
721
|
+
Flame,
|
|
716
722
|
Flashcard,
|
|
717
723
|
Focus,
|
|
718
724
|
Folder,
|
|
@@ -751,6 +757,7 @@ export {
|
|
|
751
757
|
Heart2,
|
|
752
758
|
Help,
|
|
753
759
|
Hide,
|
|
760
|
+
HistoryBack,
|
|
754
761
|
House,
|
|
755
762
|
House2,
|
|
756
763
|
House3,
|
|
@@ -804,6 +811,7 @@ export {
|
|
|
804
811
|
MapPin,
|
|
805
812
|
Medbrain,
|
|
806
813
|
MedbrainAi,
|
|
814
|
+
MedbrainFullAi,
|
|
807
815
|
MedicalClinic,
|
|
808
816
|
Mention,
|
|
809
817
|
MenuAlt,
|
|
@@ -930,7 +938,9 @@ export {
|
|
|
930
938
|
Target,
|
|
931
939
|
TarguetArrow,
|
|
932
940
|
Terminal,
|
|
941
|
+
Test,
|
|
933
942
|
TestAi,
|
|
943
|
+
TestTime,
|
|
934
944
|
Text,
|
|
935
945
|
TextAlignCenter,
|
|
936
946
|
TextAlignJustify,
|