@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,49 @@
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_react_native_svg = require("react-native-svg");
36
+ const TestTime = ({ height = 24, width = 24, color, strokeWidth = 2 }) => {
37
+ return /* @__PURE__ */ import_react.default.createElement(import_react_native_svg.SvgXml, { xml: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
38
+ <path d="M13.395 16.033H7.08V18.027H13.395V16.033Z" fill="${color}"/>
39
+ <path d="M17.025 8.25187H7.02V10.2459H17.025V8.25187Z" fill="${color}"/>
40
+ <path d="M13.5005 12.2399H7.02V14.2339H13.5005V12.2399Z" fill="${color}"/>
41
+ <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="${color}"/>
42
+ <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="${color}"/>
43
+ </svg>
44
+ `, height, width, color, strokeWidth });
45
+ };
46
+ // Annotate the CommonJS export names for ESM import in node:
47
+ 0 && (module.exports = {
48
+ TestTime
49
+ });
@@ -0,0 +1,9 @@
1
+ import { SvgProps } from 'react-native-svg';
2
+
3
+ type TestTimeProps = {
4
+ color: string;
5
+ strokeWidth?: number;
6
+ } & SvgProps;
7
+ declare const TestTime: ({ height, width, color, strokeWidth }: TestTimeProps) => JSX.Element;
8
+
9
+ export { TestTime };
@@ -0,0 +1,9 @@
1
+ import { SvgProps } from 'react-native-svg';
2
+
3
+ type TestTimeProps = {
4
+ color: string;
5
+ strokeWidth?: number;
6
+ } & SvgProps;
7
+ declare const TestTime: ({ height, width, color, strokeWidth }: TestTimeProps) => JSX.Element;
8
+
9
+ export { TestTime };
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ import { SvgXml } from "react-native-svg";
3
+ const TestTime = ({ height = 24, width = 24, color, strokeWidth = 2 }) => {
4
+ return /* @__PURE__ */ React.createElement(SvgXml, { xml: `<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <path d="M13.395 16.033H7.08V18.027H13.395V16.033Z" fill="${color}"/>
6
+ <path d="M17.025 8.25187H7.02V10.2459H17.025V8.25187Z" fill="${color}"/>
7
+ <path d="M13.5005 12.2399H7.02V14.2339H13.5005V12.2399Z" fill="${color}"/>
8
+ <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="${color}"/>
9
+ <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="${color}"/>
10
+ </svg>
11
+ `, height, width, color, strokeWidth });
12
+ };
13
+ export {
14
+ TestTime
15
+ };
@@ -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';
@@ -7,6 +7,7 @@ export { AddRow } from './AddRow.js';
7
7
  export { AddToQueue } from './AddToQueue.js';
8
8
  export { Airplay } from './Airplay.js';
9
9
  export { Alarm } from './Alarm.js';
10
+ export { Anticipate } from './Anticipate.js';
10
11
  export { Archive } from './Archive.js';
11
12
  export { ArrowCircleDown } from './ArrowCircleDown.js';
12
13
  export { ArrowCircleDownLeft } from './ArrowCircleDownLeft.js';
@@ -213,6 +214,7 @@ export { FilterOff } from './FilterOff.js';
213
214
  export { Fire } from './Fire.js';
214
215
  export { FirstAid } from './FirstAid.js';
215
216
  export { Flag } from './Flag.js';
217
+ export { Flame } from './Flame.js';
216
218
  export { Flashcard } from './Flashcard.js';
217
219
  export { Focus } from './Focus.js';
218
220
  export { Folder } from './Folder.js';
@@ -251,6 +253,7 @@ export { Heart } from './Heart.js';
251
253
  export { Heart2 } from './Heart2.js';
252
254
  export { Help } from './Help.js';
253
255
  export { Hide } from './Hide.js';
256
+ export { HistoryBack } from './HistoryBack.js';
254
257
  export { House } from './House.js';
255
258
  export { House2 } from './House2.js';
256
259
  export { House3 } from './House3.js';
@@ -304,6 +307,7 @@ export { Map } from './Map.js';
304
307
  export { MapPin } from './MapPin.js';
305
308
  export { Medbrain } from './Medbrain.js';
306
309
  export { MedbrainAi } from './MedbrainAi.js';
310
+ export { MedbrainFullAi } from './MedbrainFullAi.js';
307
311
  export { MedicalClinic } from './MedicalClinic.js';
308
312
  export { Mention } from './Mention.js';
309
313
  export { MenuAlt } from './MenuAlt.js';
@@ -430,7 +434,9 @@ export { Tag } from './Tag.js';
430
434
  export { Target } from './Target.js';
431
435
  export { TarguetArrow } from './TarguetArrow.js';
432
436
  export { Terminal } from './Terminal.js';
437
+ export { Test } from './Test.js';
433
438
  export { TestAi } from './TestAi.js';
439
+ export { TestTime } from './TestTime.js';
434
440
  export { Text } from './Text.js';
435
441
  export { TextAlignCenter } from './TextAlignCenter.js';
436
442
  export { TextAlignJustify } from './TextAlignJustify.js';
@@ -7,6 +7,7 @@ import { AddRow } from "./AddRow";
7
7
  import { AddToQueue } from "./AddToQueue";
8
8
  import { Airplay } from "./Airplay";
9
9
  import { Alarm } from "./Alarm";
10
+ import { Anticipate } from "./Anticipate";
10
11
  import { Archive } from "./Archive";
11
12
  import { ArrowCircleDown } from "./ArrowCircleDown";
12
13
  import { ArrowCircleDownLeft } from "./ArrowCircleDownLeft";
@@ -213,6 +214,7 @@ import { FilterOff } from "./FilterOff";
213
214
  import { Fire } from "./Fire";
214
215
  import { FirstAid } from "./FirstAid";
215
216
  import { Flag } from "./Flag";
217
+ import { Flame } from "./Flame";
216
218
  import { Flashcard } from "./Flashcard";
217
219
  import { Focus } from "./Focus";
218
220
  import { Folder } from "./Folder";
@@ -251,6 +253,7 @@ import { Heart } from "./Heart";
251
253
  import { Heart2 } from "./Heart2";
252
254
  import { Help } from "./Help";
253
255
  import { Hide } from "./Hide";
256
+ import { HistoryBack } from "./HistoryBack";
254
257
  import { House } from "./House";
255
258
  import { House2 } from "./House2";
256
259
  import { House3 } from "./House3";
@@ -304,6 +307,7 @@ import { Map } from "./Map";
304
307
  import { MapPin } from "./MapPin";
305
308
  import { Medbrain } from "./Medbrain";
306
309
  import { MedbrainAi } from "./MedbrainAi";
310
+ import { MedbrainFullAi } from "./MedbrainFullAi";
307
311
  import { MedicalClinic } from "./MedicalClinic";
308
312
  import { Mention } from "./Mention";
309
313
  import { MenuAlt } from "./MenuAlt";
@@ -430,7 +434,9 @@ import { Tag } from "./Tag";
430
434
  import { Target } from "./Target";
431
435
  import { TarguetArrow } from "./TarguetArrow";
432
436
  import { Terminal } from "./Terminal";
437
+ import { Test } from "./Test";
433
438
  import { TestAi } from "./TestAi";
439
+ import { TestTime } from "./TestTime";
434
440
  import { Text } from "./Text";
435
441
  import { TextAlignCenter } from "./TextAlignCenter";
436
442
  import { TextAlignJustify } from "./TextAlignJustify";
@@ -507,6 +513,7 @@ export {
507
513
  AddToQueue,
508
514
  Airplay,
509
515
  Alarm,
516
+ Anticipate,
510
517
  Archive,
511
518
  ArrowCircleDown,
512
519
  ArrowCircleDownLeft,
@@ -713,6 +720,7 @@ export {
713
720
  Fire,
714
721
  FirstAid,
715
722
  Flag,
723
+ Flame,
716
724
  Flashcard,
717
725
  Focus,
718
726
  Folder,
@@ -751,6 +759,7 @@ export {
751
759
  Heart2,
752
760
  Help,
753
761
  Hide,
762
+ HistoryBack,
754
763
  House,
755
764
  House2,
756
765
  House3,
@@ -804,6 +813,7 @@ export {
804
813
  MapPin,
805
814
  Medbrain,
806
815
  MedbrainAi,
816
+ MedbrainFullAi,
807
817
  MedicalClinic,
808
818
  Mention,
809
819
  MenuAlt,
@@ -930,7 +940,9 @@ export {
930
940
  Target,
931
941
  TarguetArrow,
932
942
  Terminal,
943
+ Test,
933
944
  TestAi,
945
+ TestTime,
934
946
  Text,
935
947
  TextAlignCenter,
936
948
  TextAlignJustify,
@@ -54,6 +54,12 @@ type AlarmProps = {
54
54
  } & SvgProps;
55
55
  declare const Alarm: ({ height, width, color, strokeWidth }: AlarmProps) => JSX.Element;
56
56
 
57
+ type AnticipateProps = {
58
+ color: string;
59
+ strokeWidth?: number;
60
+ } & SvgProps;
61
+ declare const Anticipate: ({ height, width, color, strokeWidth }: AnticipateProps) => JSX.Element;
62
+
57
63
  type ArchiveProps = {
58
64
  color: string;
59
65
  strokeWidth?: number;
@@ -1290,6 +1296,12 @@ type FlagProps = {
1290
1296
  } & SvgProps;
1291
1297
  declare const Flag: ({ height, width, color, strokeWidth }: FlagProps) => JSX.Element;
1292
1298
 
1299
+ type FlameProps = {
1300
+ color: string;
1301
+ strokeWidth?: number;
1302
+ } & SvgProps;
1303
+ declare const Flame: ({ height, width, color, strokeWidth }: FlameProps) => JSX.Element;
1304
+
1293
1305
  type FlashcardProps = {
1294
1306
  color: string;
1295
1307
  strokeWidth?: number;
@@ -1518,6 +1530,12 @@ type HideProps = {
1518
1530
  } & SvgProps;
1519
1531
  declare const Hide: ({ height, width, color, strokeWidth }: HideProps) => JSX.Element;
1520
1532
 
1533
+ type HistoryBackProps = {
1534
+ color: string;
1535
+ strokeWidth?: number;
1536
+ } & SvgProps;
1537
+ declare const HistoryBack: ({ height, width, color, strokeWidth }: HistoryBackProps) => JSX.Element;
1538
+
1521
1539
  type HouseProps = {
1522
1540
  color: string;
1523
1541
  strokeWidth?: number;
@@ -1836,6 +1854,12 @@ type MedbrainAiProps = {
1836
1854
  } & SvgProps;
1837
1855
  declare const MedbrainAi: ({ height, width, color, strokeWidth }: MedbrainAiProps) => JSX.Element;
1838
1856
 
1857
+ type MedbrainFullAiProps = {
1858
+ color: string;
1859
+ strokeWidth?: number;
1860
+ } & SvgProps;
1861
+ declare const MedbrainFullAi: ({ height, width, color, strokeWidth }: MedbrainFullAiProps) => JSX.Element;
1862
+
1839
1863
  type MedicalClinicProps = {
1840
1864
  color: string;
1841
1865
  strokeWidth?: number;
@@ -2592,12 +2616,24 @@ type TerminalProps = {
2592
2616
  } & SvgProps;
2593
2617
  declare const Terminal: ({ height, width, color, strokeWidth }: TerminalProps) => JSX.Element;
2594
2618
 
2619
+ type TestProps = {
2620
+ color: string;
2621
+ strokeWidth?: number;
2622
+ } & SvgProps;
2623
+ declare const Test: ({ height, width, color, strokeWidth }: TestProps) => JSX.Element;
2624
+
2595
2625
  type TestAiProps = {
2596
2626
  color: string;
2597
2627
  strokeWidth?: number;
2598
2628
  } & SvgProps;
2599
2629
  declare const TestAi: ({ height, width, color, strokeWidth }: TestAiProps) => JSX.Element;
2600
2630
 
2631
+ type TestTimeProps = {
2632
+ color: string;
2633
+ strokeWidth?: number;
2634
+ } & SvgProps;
2635
+ declare const TestTime: ({ height, width, color, strokeWidth }: TestTimeProps) => JSX.Element;
2636
+
2601
2637
  type TextProps = {
2602
2638
  color: string;
2603
2639
  strokeWidth?: number;
@@ -2994,4 +3030,4 @@ type WindowTerminalProps = {
2994
3030
  } & SvgProps;
2995
3031
  declare const WindowTerminal: ({ height, width, color, strokeWidth }: WindowTerminalProps) => JSX.Element;
2996
3032
 
2997
- export { AddColumn, AddMinusSquare, AddPlus, AddPlusCircle, AddPlusSquare, AddRow, AddToQueue, Airplay, Alarm, Archive, ArrowCircleDown, ArrowCircleDownLeft, ArrowCircleDownRight, ArrowCircleLeft, ArrowCircleRight, ArrowCircleUp, ArrowCircleUpLeft, ArrowCircleUpRight, ArrowDownLeftLg, ArrowDownLeftMd, ArrowDownLeftSm, ArrowDownLg, ArrowDownMd, ArrowDownRightLg, ArrowDownRightMd, ArrowDownRightSm, ArrowDownSm, ArrowDownUp, ArrowLeftLg, ArrowLeftMd, ArrowLeftRight, ArrowLeftSm, ArrowReload02, ArrowRightLg, ArrowRightMd, ArrowRightSm, ArrowSubDownLeft, ArrowSubDownRight, ArrowSubLeftDown, ArrowSubLeftUp, ArrowSubRightDown, ArrowSubRightUp, ArrowSubUpLeft, ArrowSubUpRight, ArrowUndoDownLeft, ArrowUndoDownRight, ArrowUndoUpLeft, ArrowUndoUpRight, ArrowUpLeftLg, ArrowUpLeftMd, ArrowUpLeftSm, ArrowUpLg, ArrowUpMd, ArrowUpRightLg, ArrowUpRightMd, ArrowUpRightSm, ArrowUpSm, ArrowsReload01, BarBottom, BarLeft, BarRight, BarTop, Bell, BellAdd, BellClose, BellNotification, BellOff, BellRemove, BellRing, Bold, Bolt, Book, Book2, BookOpen, Bookmark, Building, Building2, Building3, Building4, Bulb, Calendar, CalendarAdd, CalendarCheck, CalendarClose, CalendarDays, CalendarEvent, CalendarList, CalendarRemove, CalendarWeek, Camera, CarAuto, CardLibrary, CaretCircleDown, CaretCircleLeft, CaretCircleRight, CaretCircleUp, CaretDownMd, CaretDownSm, CaretLeftSm, CaretRightSm, CaretUpMd, CaretUpSm, ChartBarHorizontal, ChartBarVertical, ChartBarVertical02, ChartLine, ChartPie, Chat, ChatAdd, ChatCheck, ChatCircle, ChatCircleAdd, ChatCircleCheck, ChatCircleClose, ChatCircleDots, ChatCircleRemove, ChatClose, ChatConversation, ChatConversationCircle, ChatDots, ChatRemove, Check, CheckAll, CheckAllBig, CheckBig, CheckMedium, CheckboxCheck, CheckboxFill, CheckboxUnchecked, ChevronDown, ChevronDownDuo, ChevronLeft, ChevronLeftDuo, ChevronLeftMd, ChevronRight, ChevronRightDuo, ChevronRightMd, ChevronUp, ChevronUpDuo, Chromecast, Circle, CircleCheck, CircleHelp, CircleWarning, Clock, CloseCircle, CloseLg, CloseMd, CloseSm, CloseSquare, Cloud, CloudAdd, CloudCheck, CloudClose, CloudDownload, CloudOff, CloudRemove, CloudUpload, Code, CoffeToGo, Coffee, Columns, CombineAi, CombineCells, Command, Compass, Cookie, Copy, CreditCard, CreditCard2, Crop, Cupcake, Cylinder, Data, DeleteColumn, DeleteRow, Desktop, DesktopTower, Devices, DoubleQuotesL, DoubleQuotesR, Download, DownloadPackage, DragHorizontal, DragVertical, DummyCircle, DummyCircleSmall, DummySquare, DummySquareSmall, EditPencil, EditPencil2, EditPencilLine, EditPencilLine2, EventShortcut, Exit, Expand, ExternalLink, Figma, FileAdd, FileBlank, FileCheck, FileClose, FileCode, FileDocument, FileDownload, FileEdit, FileRemove, FileSearch, FileUpload, Files, Filter, FilterOff, Fire, FirstAid, Flag, Flashcard, Focus, Folder, FolderAdd, FolderCheck, FolderClose, FolderCode, FolderDocument, FolderDownload, FolderEdit, FolderOpen, FolderRemove, FolderSearch, FolderUpload, Folders, Font, Forward, Gift, Globe, Graduation, Grid, GynecologyAndObstetrics, HalfCheckLg, HamburgerLg, HamburgerMd, Handbag, Heading, HeadingH1, HeadingH2, HeadingH3, HeadingH4, HeadingH5, HeadingH6, Headphones, Heart, Heart2, Help, Hide, House, House2, House3, HouseAdd, HouseCheck, HouseClose, HouseRemove, Image, Image2, IndexHigh, IndexLow, IndexMedium, IndexPriority, Info, Instance, InternshipContent, InternshipSync, Italic, Keyboard, Label, Laptop, LastActivity, Layer, Layers, Leaf, LineL, LineM, LineS, LineXl, Link, LinkBreak, LinkHorizontal, LinkHorizontalOff, LinkVertical, ListAdd, ListCheck, ListChecklist, ListOrdered, ListRemove, ListUnordered, Loading, Lock, LockOpen, LogOut, MagnifyingGlassMinus, MagnifyingGlassPlus, Mail, MailOpen, MainComponent, Map, MapPin, Medbrain, MedbrainAi, MedicalClinic, Mention, MenuAlt, MenuAlt2, MenuAlt3, MenuAlt4, MenuAlt5, MenuDuoLg, MenuDuoMd, Mobile, MobileButton, Monitor, MonitorPlay, Moon, MoreGridBig, MoreGridSmall, MoreHorizontal, MoreVertical, Mouse, Move, MoveHorizontal, MoveVertical, MovingDesk, Navigation, Note, NoteEdit, NoteSearch, Notebook, Octagon, OctagonCheck, OctagonHelp, OctagonWarning, Option, PaperPlane, PaperclipAttechmentHorizontal, PaperclipAttechmentTilt, Paragraph, Path, Pause, PauseCircle, Pediatrics, Pen, Phone, Planet, Play, PlayCircle, Playlist, Preventive, Printer, Puzzle, QrCode, QuestionAi, RadioFill, RadioUnchecked, Rainbow, Redo, ReloadAi, RemoveMinus, RemoveMinusCircle, Repeat, Rewind, Rocket, Rows, Ruler, Save, SearchAi, SearchMagnifyingGlass, SelectMultiple, Settings, SettingsFuture, ShareAndroid, ShareIOsExport, Shield, ShieldCheck, ShieldWarning, ShoppingBag, ShoppingBag2, ShoppingCart, ShoppingCart2, Show, Shrink, Shuffle, SidebarClose, SidebarOpen, SingleQuotesL, SingleQuotesR, SkipBack, SkipForward, Slider, Slider2, Slider3, Smile, SortAscending, SortDescending, SparkleArrowDownRightMd, SparkleArrowRightMd, SparkleArrowSubDownRightMd, SparkleArrowUpMd, SparkleArrowUpRightMd, SparklesAi, Spin10, Spin5, Square, SquareCheck, SquareHelp, SquareWarning, Star, Stop, StopCircle, StopSign, Strikethrough, Suitcase, Sun, Surgery, SwatchesPalette, SwichtLeft, SwichtRight, Table, TableAdd, TableRemove, Tablet, TabletButton, Tag, Target, TarguetArrow, Terminal, TestAi, Text, TextAlignCenter, TextAlignJustify, TextAlignLeft, TextAlignRight, ThumbsDown, ThumbsUp, TicketVoucher, TimeAi, TimeRemaining, TimelineAi, Timer, TimerAdd, TimerClose, TimerRemove, Trade, TrashEmpty, TrashFull, TrendingDown, TrendingUp, Triangle, TriangleCheck, TriangleWarning, TurboReview, Underline, Undo, UnfoldLess, UnfoldMore, User, User2, User3, UserAdd, UserCardId, UserCheck, UserCircle, UserClose, UserRemove, UserSquare, UserVoice, Users, UsersGroup, VolumeMax, VolumeMin, VolumeMinus, VolumeOff, VolumeOff2, VolumePlus, Warning, WaterDrop, Wavy, WavyCheck, WavyHelp, WavyWarning, WeekAi, WifiHigh, WifiLow, WifiMedium, WifiNone, WifiOff, WifiProblem, Window, WindowCheck, WindowClose, WindowCodeBlock, WindowSidebar, WindowTerminal };
3033
+ export { AddColumn, AddMinusSquare, AddPlus, AddPlusCircle, AddPlusSquare, AddRow, AddToQueue, Airplay, Alarm, Anticipate, Archive, ArrowCircleDown, ArrowCircleDownLeft, ArrowCircleDownRight, ArrowCircleLeft, ArrowCircleRight, ArrowCircleUp, ArrowCircleUpLeft, ArrowCircleUpRight, ArrowDownLeftLg, ArrowDownLeftMd, ArrowDownLeftSm, ArrowDownLg, ArrowDownMd, ArrowDownRightLg, ArrowDownRightMd, ArrowDownRightSm, ArrowDownSm, ArrowDownUp, ArrowLeftLg, ArrowLeftMd, ArrowLeftRight, ArrowLeftSm, ArrowReload02, ArrowRightLg, ArrowRightMd, ArrowRightSm, ArrowSubDownLeft, ArrowSubDownRight, ArrowSubLeftDown, ArrowSubLeftUp, ArrowSubRightDown, ArrowSubRightUp, ArrowSubUpLeft, ArrowSubUpRight, ArrowUndoDownLeft, ArrowUndoDownRight, ArrowUndoUpLeft, ArrowUndoUpRight, ArrowUpLeftLg, ArrowUpLeftMd, ArrowUpLeftSm, ArrowUpLg, ArrowUpMd, ArrowUpRightLg, ArrowUpRightMd, ArrowUpRightSm, ArrowUpSm, ArrowsReload01, BarBottom, BarLeft, BarRight, BarTop, Bell, BellAdd, BellClose, BellNotification, BellOff, BellRemove, BellRing, Bold, Bolt, Book, Book2, BookOpen, Bookmark, Building, Building2, Building3, Building4, Bulb, Calendar, CalendarAdd, CalendarCheck, CalendarClose, CalendarDays, CalendarEvent, CalendarList, CalendarRemove, CalendarWeek, Camera, CarAuto, CardLibrary, CaretCircleDown, CaretCircleLeft, CaretCircleRight, CaretCircleUp, CaretDownMd, CaretDownSm, CaretLeftSm, CaretRightSm, CaretUpMd, CaretUpSm, ChartBarHorizontal, ChartBarVertical, ChartBarVertical02, ChartLine, ChartPie, Chat, ChatAdd, ChatCheck, ChatCircle, ChatCircleAdd, ChatCircleCheck, ChatCircleClose, ChatCircleDots, ChatCircleRemove, ChatClose, ChatConversation, ChatConversationCircle, ChatDots, ChatRemove, Check, CheckAll, CheckAllBig, CheckBig, CheckMedium, CheckboxCheck, CheckboxFill, CheckboxUnchecked, ChevronDown, ChevronDownDuo, ChevronLeft, ChevronLeftDuo, ChevronLeftMd, ChevronRight, ChevronRightDuo, ChevronRightMd, ChevronUp, ChevronUpDuo, Chromecast, Circle, CircleCheck, CircleHelp, CircleWarning, Clock, CloseCircle, CloseLg, CloseMd, CloseSm, CloseSquare, Cloud, CloudAdd, CloudCheck, CloudClose, CloudDownload, CloudOff, CloudRemove, CloudUpload, Code, CoffeToGo, Coffee, Columns, CombineAi, CombineCells, Command, Compass, Cookie, Copy, CreditCard, CreditCard2, Crop, Cupcake, Cylinder, Data, DeleteColumn, DeleteRow, Desktop, DesktopTower, Devices, DoubleQuotesL, DoubleQuotesR, Download, DownloadPackage, DragHorizontal, DragVertical, DummyCircle, DummyCircleSmall, DummySquare, DummySquareSmall, EditPencil, EditPencil2, EditPencilLine, EditPencilLine2, EventShortcut, Exit, Expand, ExternalLink, Figma, FileAdd, FileBlank, FileCheck, FileClose, FileCode, FileDocument, FileDownload, FileEdit, FileRemove, FileSearch, FileUpload, Files, Filter, FilterOff, Fire, FirstAid, Flag, Flame, Flashcard, Focus, Folder, FolderAdd, FolderCheck, FolderClose, FolderCode, FolderDocument, FolderDownload, FolderEdit, FolderOpen, FolderRemove, FolderSearch, FolderUpload, Folders, Font, Forward, Gift, Globe, Graduation, Grid, GynecologyAndObstetrics, HalfCheckLg, HamburgerLg, HamburgerMd, Handbag, Heading, HeadingH1, HeadingH2, HeadingH3, HeadingH4, HeadingH5, HeadingH6, Headphones, Heart, Heart2, Help, Hide, HistoryBack, House, House2, House3, HouseAdd, HouseCheck, HouseClose, HouseRemove, Image, Image2, IndexHigh, IndexLow, IndexMedium, IndexPriority, Info, Instance, InternshipContent, InternshipSync, Italic, Keyboard, Label, Laptop, LastActivity, Layer, Layers, Leaf, LineL, LineM, LineS, LineXl, Link, LinkBreak, LinkHorizontal, LinkHorizontalOff, LinkVertical, ListAdd, ListCheck, ListChecklist, ListOrdered, ListRemove, ListUnordered, Loading, Lock, LockOpen, LogOut, MagnifyingGlassMinus, MagnifyingGlassPlus, Mail, MailOpen, MainComponent, Map, MapPin, Medbrain, MedbrainAi, MedbrainFullAi, MedicalClinic, Mention, MenuAlt, MenuAlt2, MenuAlt3, MenuAlt4, MenuAlt5, MenuDuoLg, MenuDuoMd, Mobile, MobileButton, Monitor, MonitorPlay, Moon, MoreGridBig, MoreGridSmall, MoreHorizontal, MoreVertical, Mouse, Move, MoveHorizontal, MoveVertical, MovingDesk, Navigation, Note, NoteEdit, NoteSearch, Notebook, Octagon, OctagonCheck, OctagonHelp, OctagonWarning, Option, PaperPlane, PaperclipAttechmentHorizontal, PaperclipAttechmentTilt, Paragraph, Path, Pause, PauseCircle, Pediatrics, Pen, Phone, Planet, Play, PlayCircle, Playlist, Preventive, Printer, Puzzle, QrCode, QuestionAi, RadioFill, RadioUnchecked, Rainbow, Redo, ReloadAi, RemoveMinus, RemoveMinusCircle, Repeat, Rewind, Rocket, Rows, Ruler, Save, SearchAi, SearchMagnifyingGlass, SelectMultiple, Settings, SettingsFuture, ShareAndroid, ShareIOsExport, Shield, ShieldCheck, ShieldWarning, ShoppingBag, ShoppingBag2, ShoppingCart, ShoppingCart2, Show, Shrink, Shuffle, SidebarClose, SidebarOpen, SingleQuotesL, SingleQuotesR, SkipBack, SkipForward, Slider, Slider2, Slider3, Smile, SortAscending, SortDescending, SparkleArrowDownRightMd, SparkleArrowRightMd, SparkleArrowSubDownRightMd, SparkleArrowUpMd, SparkleArrowUpRightMd, SparklesAi, Spin10, Spin5, Square, SquareCheck, SquareHelp, SquareWarning, Star, Stop, StopCircle, StopSign, Strikethrough, Suitcase, Sun, Surgery, SwatchesPalette, SwichtLeft, SwichtRight, Table, TableAdd, TableRemove, Tablet, TabletButton, Tag, Target, TarguetArrow, Terminal, Test, TestAi, TestTime, Text, TextAlignCenter, TextAlignJustify, TextAlignLeft, TextAlignRight, ThumbsDown, ThumbsUp, TicketVoucher, TimeAi, TimeRemaining, TimelineAi, Timer, TimerAdd, TimerClose, TimerRemove, Trade, TrashEmpty, TrashFull, TrendingDown, TrendingUp, Triangle, TriangleCheck, TriangleWarning, TurboReview, Underline, Undo, UnfoldLess, UnfoldMore, User, User2, User3, UserAdd, UserCardId, UserCheck, UserCircle, UserClose, UserRemove, UserSquare, UserVoice, Users, UsersGroup, VolumeMax, VolumeMin, VolumeMinus, VolumeOff, VolumeOff2, VolumePlus, Warning, WaterDrop, Wavy, WavyCheck, WavyHelp, WavyWarning, WeekAi, WifiHigh, WifiLow, WifiMedium, WifiNone, WifiOff, WifiProblem, Window, WindowCheck, WindowClose, WindowCodeBlock, WindowSidebar, WindowTerminal };
package/native/index.d.ts CHANGED
@@ -54,6 +54,12 @@ type AlarmProps = {
54
54
  } & SvgProps;
55
55
  declare const Alarm: ({ height, width, color, strokeWidth }: AlarmProps) => JSX.Element;
56
56
 
57
+ type AnticipateProps = {
58
+ color: string;
59
+ strokeWidth?: number;
60
+ } & SvgProps;
61
+ declare const Anticipate: ({ height, width, color, strokeWidth }: AnticipateProps) => JSX.Element;
62
+
57
63
  type ArchiveProps = {
58
64
  color: string;
59
65
  strokeWidth?: number;
@@ -1290,6 +1296,12 @@ type FlagProps = {
1290
1296
  } & SvgProps;
1291
1297
  declare const Flag: ({ height, width, color, strokeWidth }: FlagProps) => JSX.Element;
1292
1298
 
1299
+ type FlameProps = {
1300
+ color: string;
1301
+ strokeWidth?: number;
1302
+ } & SvgProps;
1303
+ declare const Flame: ({ height, width, color, strokeWidth }: FlameProps) => JSX.Element;
1304
+
1293
1305
  type FlashcardProps = {
1294
1306
  color: string;
1295
1307
  strokeWidth?: number;
@@ -1518,6 +1530,12 @@ type HideProps = {
1518
1530
  } & SvgProps;
1519
1531
  declare const Hide: ({ height, width, color, strokeWidth }: HideProps) => JSX.Element;
1520
1532
 
1533
+ type HistoryBackProps = {
1534
+ color: string;
1535
+ strokeWidth?: number;
1536
+ } & SvgProps;
1537
+ declare const HistoryBack: ({ height, width, color, strokeWidth }: HistoryBackProps) => JSX.Element;
1538
+
1521
1539
  type HouseProps = {
1522
1540
  color: string;
1523
1541
  strokeWidth?: number;
@@ -1836,6 +1854,12 @@ type MedbrainAiProps = {
1836
1854
  } & SvgProps;
1837
1855
  declare const MedbrainAi: ({ height, width, color, strokeWidth }: MedbrainAiProps) => JSX.Element;
1838
1856
 
1857
+ type MedbrainFullAiProps = {
1858
+ color: string;
1859
+ strokeWidth?: number;
1860
+ } & SvgProps;
1861
+ declare const MedbrainFullAi: ({ height, width, color, strokeWidth }: MedbrainFullAiProps) => JSX.Element;
1862
+
1839
1863
  type MedicalClinicProps = {
1840
1864
  color: string;
1841
1865
  strokeWidth?: number;
@@ -2592,12 +2616,24 @@ type TerminalProps = {
2592
2616
  } & SvgProps;
2593
2617
  declare const Terminal: ({ height, width, color, strokeWidth }: TerminalProps) => JSX.Element;
2594
2618
 
2619
+ type TestProps = {
2620
+ color: string;
2621
+ strokeWidth?: number;
2622
+ } & SvgProps;
2623
+ declare const Test: ({ height, width, color, strokeWidth }: TestProps) => JSX.Element;
2624
+
2595
2625
  type TestAiProps = {
2596
2626
  color: string;
2597
2627
  strokeWidth?: number;
2598
2628
  } & SvgProps;
2599
2629
  declare const TestAi: ({ height, width, color, strokeWidth }: TestAiProps) => JSX.Element;
2600
2630
 
2631
+ type TestTimeProps = {
2632
+ color: string;
2633
+ strokeWidth?: number;
2634
+ } & SvgProps;
2635
+ declare const TestTime: ({ height, width, color, strokeWidth }: TestTimeProps) => JSX.Element;
2636
+
2601
2637
  type TextProps = {
2602
2638
  color: string;
2603
2639
  strokeWidth?: number;
@@ -2994,4 +3030,4 @@ type WindowTerminalProps = {
2994
3030
  } & SvgProps;
2995
3031
  declare const WindowTerminal: ({ height, width, color, strokeWidth }: WindowTerminalProps) => JSX.Element;
2996
3032
 
2997
- export { AddColumn, AddMinusSquare, AddPlus, AddPlusCircle, AddPlusSquare, AddRow, AddToQueue, Airplay, Alarm, Archive, ArrowCircleDown, ArrowCircleDownLeft, ArrowCircleDownRight, ArrowCircleLeft, ArrowCircleRight, ArrowCircleUp, ArrowCircleUpLeft, ArrowCircleUpRight, ArrowDownLeftLg, ArrowDownLeftMd, ArrowDownLeftSm, ArrowDownLg, ArrowDownMd, ArrowDownRightLg, ArrowDownRightMd, ArrowDownRightSm, ArrowDownSm, ArrowDownUp, ArrowLeftLg, ArrowLeftMd, ArrowLeftRight, ArrowLeftSm, ArrowReload02, ArrowRightLg, ArrowRightMd, ArrowRightSm, ArrowSubDownLeft, ArrowSubDownRight, ArrowSubLeftDown, ArrowSubLeftUp, ArrowSubRightDown, ArrowSubRightUp, ArrowSubUpLeft, ArrowSubUpRight, ArrowUndoDownLeft, ArrowUndoDownRight, ArrowUndoUpLeft, ArrowUndoUpRight, ArrowUpLeftLg, ArrowUpLeftMd, ArrowUpLeftSm, ArrowUpLg, ArrowUpMd, ArrowUpRightLg, ArrowUpRightMd, ArrowUpRightSm, ArrowUpSm, ArrowsReload01, BarBottom, BarLeft, BarRight, BarTop, Bell, BellAdd, BellClose, BellNotification, BellOff, BellRemove, BellRing, Bold, Bolt, Book, Book2, BookOpen, Bookmark, Building, Building2, Building3, Building4, Bulb, Calendar, CalendarAdd, CalendarCheck, CalendarClose, CalendarDays, CalendarEvent, CalendarList, CalendarRemove, CalendarWeek, Camera, CarAuto, CardLibrary, CaretCircleDown, CaretCircleLeft, CaretCircleRight, CaretCircleUp, CaretDownMd, CaretDownSm, CaretLeftSm, CaretRightSm, CaretUpMd, CaretUpSm, ChartBarHorizontal, ChartBarVertical, ChartBarVertical02, ChartLine, ChartPie, Chat, ChatAdd, ChatCheck, ChatCircle, ChatCircleAdd, ChatCircleCheck, ChatCircleClose, ChatCircleDots, ChatCircleRemove, ChatClose, ChatConversation, ChatConversationCircle, ChatDots, ChatRemove, Check, CheckAll, CheckAllBig, CheckBig, CheckMedium, CheckboxCheck, CheckboxFill, CheckboxUnchecked, ChevronDown, ChevronDownDuo, ChevronLeft, ChevronLeftDuo, ChevronLeftMd, ChevronRight, ChevronRightDuo, ChevronRightMd, ChevronUp, ChevronUpDuo, Chromecast, Circle, CircleCheck, CircleHelp, CircleWarning, Clock, CloseCircle, CloseLg, CloseMd, CloseSm, CloseSquare, Cloud, CloudAdd, CloudCheck, CloudClose, CloudDownload, CloudOff, CloudRemove, CloudUpload, Code, CoffeToGo, Coffee, Columns, CombineAi, CombineCells, Command, Compass, Cookie, Copy, CreditCard, CreditCard2, Crop, Cupcake, Cylinder, Data, DeleteColumn, DeleteRow, Desktop, DesktopTower, Devices, DoubleQuotesL, DoubleQuotesR, Download, DownloadPackage, DragHorizontal, DragVertical, DummyCircle, DummyCircleSmall, DummySquare, DummySquareSmall, EditPencil, EditPencil2, EditPencilLine, EditPencilLine2, EventShortcut, Exit, Expand, ExternalLink, Figma, FileAdd, FileBlank, FileCheck, FileClose, FileCode, FileDocument, FileDownload, FileEdit, FileRemove, FileSearch, FileUpload, Files, Filter, FilterOff, Fire, FirstAid, Flag, Flashcard, Focus, Folder, FolderAdd, FolderCheck, FolderClose, FolderCode, FolderDocument, FolderDownload, FolderEdit, FolderOpen, FolderRemove, FolderSearch, FolderUpload, Folders, Font, Forward, Gift, Globe, Graduation, Grid, GynecologyAndObstetrics, HalfCheckLg, HamburgerLg, HamburgerMd, Handbag, Heading, HeadingH1, HeadingH2, HeadingH3, HeadingH4, HeadingH5, HeadingH6, Headphones, Heart, Heart2, Help, Hide, House, House2, House3, HouseAdd, HouseCheck, HouseClose, HouseRemove, Image, Image2, IndexHigh, IndexLow, IndexMedium, IndexPriority, Info, Instance, InternshipContent, InternshipSync, Italic, Keyboard, Label, Laptop, LastActivity, Layer, Layers, Leaf, LineL, LineM, LineS, LineXl, Link, LinkBreak, LinkHorizontal, LinkHorizontalOff, LinkVertical, ListAdd, ListCheck, ListChecklist, ListOrdered, ListRemove, ListUnordered, Loading, Lock, LockOpen, LogOut, MagnifyingGlassMinus, MagnifyingGlassPlus, Mail, MailOpen, MainComponent, Map, MapPin, Medbrain, MedbrainAi, MedicalClinic, Mention, MenuAlt, MenuAlt2, MenuAlt3, MenuAlt4, MenuAlt5, MenuDuoLg, MenuDuoMd, Mobile, MobileButton, Monitor, MonitorPlay, Moon, MoreGridBig, MoreGridSmall, MoreHorizontal, MoreVertical, Mouse, Move, MoveHorizontal, MoveVertical, MovingDesk, Navigation, Note, NoteEdit, NoteSearch, Notebook, Octagon, OctagonCheck, OctagonHelp, OctagonWarning, Option, PaperPlane, PaperclipAttechmentHorizontal, PaperclipAttechmentTilt, Paragraph, Path, Pause, PauseCircle, Pediatrics, Pen, Phone, Planet, Play, PlayCircle, Playlist, Preventive, Printer, Puzzle, QrCode, QuestionAi, RadioFill, RadioUnchecked, Rainbow, Redo, ReloadAi, RemoveMinus, RemoveMinusCircle, Repeat, Rewind, Rocket, Rows, Ruler, Save, SearchAi, SearchMagnifyingGlass, SelectMultiple, Settings, SettingsFuture, ShareAndroid, ShareIOsExport, Shield, ShieldCheck, ShieldWarning, ShoppingBag, ShoppingBag2, ShoppingCart, ShoppingCart2, Show, Shrink, Shuffle, SidebarClose, SidebarOpen, SingleQuotesL, SingleQuotesR, SkipBack, SkipForward, Slider, Slider2, Slider3, Smile, SortAscending, SortDescending, SparkleArrowDownRightMd, SparkleArrowRightMd, SparkleArrowSubDownRightMd, SparkleArrowUpMd, SparkleArrowUpRightMd, SparklesAi, Spin10, Spin5, Square, SquareCheck, SquareHelp, SquareWarning, Star, Stop, StopCircle, StopSign, Strikethrough, Suitcase, Sun, Surgery, SwatchesPalette, SwichtLeft, SwichtRight, Table, TableAdd, TableRemove, Tablet, TabletButton, Tag, Target, TarguetArrow, Terminal, TestAi, Text, TextAlignCenter, TextAlignJustify, TextAlignLeft, TextAlignRight, ThumbsDown, ThumbsUp, TicketVoucher, TimeAi, TimeRemaining, TimelineAi, Timer, TimerAdd, TimerClose, TimerRemove, Trade, TrashEmpty, TrashFull, TrendingDown, TrendingUp, Triangle, TriangleCheck, TriangleWarning, TurboReview, Underline, Undo, UnfoldLess, UnfoldMore, User, User2, User3, UserAdd, UserCardId, UserCheck, UserCircle, UserClose, UserRemove, UserSquare, UserVoice, Users, UsersGroup, VolumeMax, VolumeMin, VolumeMinus, VolumeOff, VolumeOff2, VolumePlus, Warning, WaterDrop, Wavy, WavyCheck, WavyHelp, WavyWarning, WeekAi, WifiHigh, WifiLow, WifiMedium, WifiNone, WifiOff, WifiProblem, Window, WindowCheck, WindowClose, WindowCodeBlock, WindowSidebar, WindowTerminal };
3033
+ export { AddColumn, AddMinusSquare, AddPlus, AddPlusCircle, AddPlusSquare, AddRow, AddToQueue, Airplay, Alarm, Anticipate, Archive, ArrowCircleDown, ArrowCircleDownLeft, ArrowCircleDownRight, ArrowCircleLeft, ArrowCircleRight, ArrowCircleUp, ArrowCircleUpLeft, ArrowCircleUpRight, ArrowDownLeftLg, ArrowDownLeftMd, ArrowDownLeftSm, ArrowDownLg, ArrowDownMd, ArrowDownRightLg, ArrowDownRightMd, ArrowDownRightSm, ArrowDownSm, ArrowDownUp, ArrowLeftLg, ArrowLeftMd, ArrowLeftRight, ArrowLeftSm, ArrowReload02, ArrowRightLg, ArrowRightMd, ArrowRightSm, ArrowSubDownLeft, ArrowSubDownRight, ArrowSubLeftDown, ArrowSubLeftUp, ArrowSubRightDown, ArrowSubRightUp, ArrowSubUpLeft, ArrowSubUpRight, ArrowUndoDownLeft, ArrowUndoDownRight, ArrowUndoUpLeft, ArrowUndoUpRight, ArrowUpLeftLg, ArrowUpLeftMd, ArrowUpLeftSm, ArrowUpLg, ArrowUpMd, ArrowUpRightLg, ArrowUpRightMd, ArrowUpRightSm, ArrowUpSm, ArrowsReload01, BarBottom, BarLeft, BarRight, BarTop, Bell, BellAdd, BellClose, BellNotification, BellOff, BellRemove, BellRing, Bold, Bolt, Book, Book2, BookOpen, Bookmark, Building, Building2, Building3, Building4, Bulb, Calendar, CalendarAdd, CalendarCheck, CalendarClose, CalendarDays, CalendarEvent, CalendarList, CalendarRemove, CalendarWeek, Camera, CarAuto, CardLibrary, CaretCircleDown, CaretCircleLeft, CaretCircleRight, CaretCircleUp, CaretDownMd, CaretDownSm, CaretLeftSm, CaretRightSm, CaretUpMd, CaretUpSm, ChartBarHorizontal, ChartBarVertical, ChartBarVertical02, ChartLine, ChartPie, Chat, ChatAdd, ChatCheck, ChatCircle, ChatCircleAdd, ChatCircleCheck, ChatCircleClose, ChatCircleDots, ChatCircleRemove, ChatClose, ChatConversation, ChatConversationCircle, ChatDots, ChatRemove, Check, CheckAll, CheckAllBig, CheckBig, CheckMedium, CheckboxCheck, CheckboxFill, CheckboxUnchecked, ChevronDown, ChevronDownDuo, ChevronLeft, ChevronLeftDuo, ChevronLeftMd, ChevronRight, ChevronRightDuo, ChevronRightMd, ChevronUp, ChevronUpDuo, Chromecast, Circle, CircleCheck, CircleHelp, CircleWarning, Clock, CloseCircle, CloseLg, CloseMd, CloseSm, CloseSquare, Cloud, CloudAdd, CloudCheck, CloudClose, CloudDownload, CloudOff, CloudRemove, CloudUpload, Code, CoffeToGo, Coffee, Columns, CombineAi, CombineCells, Command, Compass, Cookie, Copy, CreditCard, CreditCard2, Crop, Cupcake, Cylinder, Data, DeleteColumn, DeleteRow, Desktop, DesktopTower, Devices, DoubleQuotesL, DoubleQuotesR, Download, DownloadPackage, DragHorizontal, DragVertical, DummyCircle, DummyCircleSmall, DummySquare, DummySquareSmall, EditPencil, EditPencil2, EditPencilLine, EditPencilLine2, EventShortcut, Exit, Expand, ExternalLink, Figma, FileAdd, FileBlank, FileCheck, FileClose, FileCode, FileDocument, FileDownload, FileEdit, FileRemove, FileSearch, FileUpload, Files, Filter, FilterOff, Fire, FirstAid, Flag, Flame, Flashcard, Focus, Folder, FolderAdd, FolderCheck, FolderClose, FolderCode, FolderDocument, FolderDownload, FolderEdit, FolderOpen, FolderRemove, FolderSearch, FolderUpload, Folders, Font, Forward, Gift, Globe, Graduation, Grid, GynecologyAndObstetrics, HalfCheckLg, HamburgerLg, HamburgerMd, Handbag, Heading, HeadingH1, HeadingH2, HeadingH3, HeadingH4, HeadingH5, HeadingH6, Headphones, Heart, Heart2, Help, Hide, HistoryBack, House, House2, House3, HouseAdd, HouseCheck, HouseClose, HouseRemove, Image, Image2, IndexHigh, IndexLow, IndexMedium, IndexPriority, Info, Instance, InternshipContent, InternshipSync, Italic, Keyboard, Label, Laptop, LastActivity, Layer, Layers, Leaf, LineL, LineM, LineS, LineXl, Link, LinkBreak, LinkHorizontal, LinkHorizontalOff, LinkVertical, ListAdd, ListCheck, ListChecklist, ListOrdered, ListRemove, ListUnordered, Loading, Lock, LockOpen, LogOut, MagnifyingGlassMinus, MagnifyingGlassPlus, Mail, MailOpen, MainComponent, Map, MapPin, Medbrain, MedbrainAi, MedbrainFullAi, MedicalClinic, Mention, MenuAlt, MenuAlt2, MenuAlt3, MenuAlt4, MenuAlt5, MenuDuoLg, MenuDuoMd, Mobile, MobileButton, Monitor, MonitorPlay, Moon, MoreGridBig, MoreGridSmall, MoreHorizontal, MoreVertical, Mouse, Move, MoveHorizontal, MoveVertical, MovingDesk, Navigation, Note, NoteEdit, NoteSearch, Notebook, Octagon, OctagonCheck, OctagonHelp, OctagonWarning, Option, PaperPlane, PaperclipAttechmentHorizontal, PaperclipAttechmentTilt, Paragraph, Path, Pause, PauseCircle, Pediatrics, Pen, Phone, Planet, Play, PlayCircle, Playlist, Preventive, Printer, Puzzle, QrCode, QuestionAi, RadioFill, RadioUnchecked, Rainbow, Redo, ReloadAi, RemoveMinus, RemoveMinusCircle, Repeat, Rewind, Rocket, Rows, Ruler, Save, SearchAi, SearchMagnifyingGlass, SelectMultiple, Settings, SettingsFuture, ShareAndroid, ShareIOsExport, Shield, ShieldCheck, ShieldWarning, ShoppingBag, ShoppingBag2, ShoppingCart, ShoppingCart2, Show, Shrink, Shuffle, SidebarClose, SidebarOpen, SingleQuotesL, SingleQuotesR, SkipBack, SkipForward, Slider, Slider2, Slider3, Smile, SortAscending, SortDescending, SparkleArrowDownRightMd, SparkleArrowRightMd, SparkleArrowSubDownRightMd, SparkleArrowUpMd, SparkleArrowUpRightMd, SparklesAi, Spin10, Spin5, Square, SquareCheck, SquareHelp, SquareWarning, Star, Stop, StopCircle, StopSign, Strikethrough, Suitcase, Sun, Surgery, SwatchesPalette, SwichtLeft, SwichtRight, Table, TableAdd, TableRemove, Tablet, TabletButton, Tag, Target, TarguetArrow, Terminal, Test, TestAi, TestTime, Text, TextAlignCenter, TextAlignJustify, TextAlignLeft, TextAlignRight, ThumbsDown, ThumbsUp, TicketVoucher, TimeAi, TimeRemaining, TimelineAi, Timer, TimerAdd, TimerClose, TimerRemove, Trade, TrashEmpty, TrashFull, TrendingDown, TrendingUp, Triangle, TriangleCheck, TriangleWarning, TurboReview, Underline, Undo, UnfoldLess, UnfoldMore, User, User2, User3, UserAdd, UserCardId, UserCheck, UserCircle, UserClose, UserRemove, UserSquare, UserVoice, Users, UsersGroup, VolumeMax, VolumeMin, VolumeMinus, VolumeOff, VolumeOff2, VolumePlus, Warning, WaterDrop, Wavy, WavyCheck, WavyHelp, WavyWarning, WeekAi, WifiHigh, WifiLow, WifiMedium, WifiNone, WifiOff, WifiProblem, Window, WindowCheck, WindowClose, WindowCodeBlock, WindowSidebar, WindowTerminal };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medway-ui/icons",
3
- "version": "1.2.0",
3
+ "version": "1.4.0",
4
4
  "description": "Pacote para geração e gerenciamento de ícones Medway.",
5
5
  "homepage": "https://main.d13e8l5cmf2py3.amplifyapp.com/",
6
6
  "main": "dist/index.cjs",