@medway-ui/icons 1.8.0 → 1.9.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 (45) hide show
  1. package/dist/components/icons/ClockProgress.cjs +43 -0
  2. package/dist/components/icons/ClockProgress.d.cts +6 -0
  3. package/dist/components/icons/ClockProgress.d.ts +6 -0
  4. package/dist/components/icons/ClockProgress.js +9 -0
  5. package/dist/components/icons/DrawingPencil.cjs +43 -0
  6. package/dist/components/icons/DrawingPencil.d.cts +6 -0
  7. package/dist/components/icons/DrawingPencil.d.ts +6 -0
  8. package/dist/components/icons/DrawingPencil.js +9 -0
  9. package/dist/components/icons/FlashcardAi.cjs +43 -0
  10. package/dist/components/icons/FlashcardAi.d.cts +6 -0
  11. package/dist/components/icons/FlashcardAi.d.ts +6 -0
  12. package/dist/components/icons/FlashcardAi.js +9 -0
  13. package/dist/components/icons/TwoCards.cjs +43 -0
  14. package/dist/components/icons/TwoCards.d.cts +6 -0
  15. package/dist/components/icons/TwoCards.d.ts +6 -0
  16. package/dist/components/icons/TwoCards.js +9 -0
  17. package/dist/components/icons/index.cjs +12 -0
  18. package/dist/components/icons/index.d.cts +4 -0
  19. package/dist/components/icons/index.d.ts +4 -0
  20. package/dist/components/icons/index.js +8 -0
  21. package/dist/index.d.cts +4 -0
  22. package/dist/index.d.ts +4 -0
  23. package/native/components/icons/ClockProgress.cjs +45 -0
  24. package/native/components/icons/ClockProgress.d.cts +9 -0
  25. package/native/components/icons/ClockProgress.d.ts +9 -0
  26. package/native/components/icons/ClockProgress.js +11 -0
  27. package/native/components/icons/DrawingPencil.cjs +45 -0
  28. package/native/components/icons/DrawingPencil.d.cts +9 -0
  29. package/native/components/icons/DrawingPencil.d.ts +9 -0
  30. package/native/components/icons/DrawingPencil.js +11 -0
  31. package/native/components/icons/FlashcardAi.cjs +45 -0
  32. package/native/components/icons/FlashcardAi.d.cts +9 -0
  33. package/native/components/icons/FlashcardAi.d.ts +9 -0
  34. package/native/components/icons/FlashcardAi.js +11 -0
  35. package/native/components/icons/TwoCards.cjs +45 -0
  36. package/native/components/icons/TwoCards.d.cts +9 -0
  37. package/native/components/icons/TwoCards.d.ts +9 -0
  38. package/native/components/icons/TwoCards.js +11 -0
  39. package/native/components/icons/index.cjs +12 -0
  40. package/native/components/icons/index.d.cts +4 -0
  41. package/native/components/icons/index.d.ts +4 -0
  42. package/native/components/icons/index.js +8 -0
  43. package/native/index.d.cts +25 -1
  44. package/native/index.d.ts +25 -1
  45. 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 ClockProgress_exports = {};
30
+ __export(ClockProgress_exports, {
31
+ ClockProgress: () => ClockProgress
32
+ });
33
+ module.exports = __toCommonJS(ClockProgress_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const ClockProgress = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M12 4V12L17 17", strokeLinecap: "round", strokeLinejoin: "round" }))
38
+ );
39
+ ClockProgress.displayName = "ClockProgress";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ ClockProgress
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const ClockProgress: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { ClockProgress };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const ClockProgress: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { ClockProgress };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const ClockProgress = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M12 4V12L17 17", strokeLinecap: "round", strokeLinejoin: "round" }))
5
+ );
6
+ ClockProgress.displayName = "ClockProgress";
7
+ export {
8
+ ClockProgress
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 DrawingPencil_exports = {};
30
+ __export(DrawingPencil_exports, {
31
+ DrawingPencil: () => DrawingPencil
32
+ });
33
+ module.exports = __toCommonJS(DrawingPencil_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const DrawingPencil = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M17.53 10.53L20.03 13.03M7 21H6.849C4.171 21 2 18.829 2 16.151C2 14.235 3.128 12.498 4.88 11.72L8.84 9.96C10.154 9.376 11 8.074 11 6.637C11 4.628 9.372 3 7.363 3H7M10.631 17.437L19.12 8.94804C19.511 8.55704 20.144 8.55704 20.534 8.94804L21.612 10.026C22.003 10.417 22.003 11.05 21.612 11.44L13.121 19.931C12.858 20.194 12.527 20.378 12.166 20.463L10.518 20.852C10.034 20.966 9.59897 20.532 9.71197 20.047L10.098 18.396C10.183 18.033 10.368 17.701 10.631 17.437Z", strokeLinecap: "round", strokeLinejoin: "round" }))
38
+ );
39
+ DrawingPencil.displayName = "DrawingPencil";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ DrawingPencil
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const DrawingPencil: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { DrawingPencil };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const DrawingPencil: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { DrawingPencil };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const DrawingPencil = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M17.53 10.53L20.03 13.03M7 21H6.849C4.171 21 2 18.829 2 16.151C2 14.235 3.128 12.498 4.88 11.72L8.84 9.96C10.154 9.376 11 8.074 11 6.637C11 4.628 9.372 3 7.363 3H7M10.631 17.437L19.12 8.94804C19.511 8.55704 20.144 8.55704 20.534 8.94804L21.612 10.026C22.003 10.417 22.003 11.05 21.612 11.44L13.121 19.931C12.858 20.194 12.527 20.378 12.166 20.463L10.518 20.852C10.034 20.966 9.59897 20.532 9.71197 20.047L10.098 18.396C10.183 18.033 10.368 17.701 10.631 17.437Z", strokeLinecap: "round", strokeLinejoin: "round" }))
5
+ );
6
+ DrawingPencil.displayName = "DrawingPencil";
7
+ export {
8
+ DrawingPencil
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 FlashcardAi_exports = {};
30
+ __export(FlashcardAi_exports, {
31
+ FlashcardAi: () => FlashcardAi
32
+ });
33
+ module.exports = __toCommonJS(FlashcardAi_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const FlashcardAi = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M9.9545 9.81818V7.05469C9.9545 6.24007 9.9545 5.83245 10.1031 5.52131C10.2339 5.24762 10.4423 5.02526 10.6989 4.88581C10.9906 4.72727 11.3727 4.72727 12.1364 4.72727H15.2727C16.0364 4.72727 16.4181 4.72727 16.7098 4.88581C16.9664 5.02526 17.1752 5.24762 17.3059 5.52131C17.4545 5.83245 17.4545 6.23976 17.4545 7.05438V11.8544C17.4545 12.669 17.4545 13.0763 17.3059 13.3875C17.1752 13.6612 16.9662 13.884 16.7096 14.0234C16.4182 14.1818 16.0369 14.1818 15.2747 14.1818H14.0454M14.0454 14.1818L14.0454 12.1432C14.0454 11.3302 14.0454 10.9231 13.8969 10.6122C13.7661 10.3385 13.5573 10.1162 13.3007 9.97672C13.009 9.81818 12.6274 9.81818 11.8637 9.81818H9.9545H8.72738C7.96368 9.81818 7.58155 9.81818 7.28985 9.97672C7.03327 10.1162 6.82481 10.3385 6.69408 10.6122C6.54545 10.9234 6.54545 11.331 6.54545 12.1456V16.9456C6.54545 17.7602 6.54545 18.1673 6.69408 18.4785C6.82481 18.7522 7.03327 18.9749 7.28985 19.1143C7.58126 19.2727 7.96293 19.2727 8.72513 19.2727H11.866C12.6282 19.2727 13.0093 19.2727 13.3007 19.1143C13.5573 18.9749 13.7661 18.7519 13.8969 18.4782C14.0454 18.1674 14.0454 17.7607 14.0454 16.9477V14.1818ZM19.2727 16.5455C18.5909 19.2727 19.2727 18.5909 16.5455 19.2727C18.8831 20.0519 18.5909 19.2727 19.2727 22C20.0519 19.6623 19.2727 19.9545 22 19.2727C19.2727 18.5909 19.9545 19.2727 19.2727 16.5455ZM4.72727 2C4.04545 4.72727 4.72727 4.04545 2 4.72727C4.33766 5.50649 4.04545 4.72727 4.72727 7.45455C5.50649 5.11688 4.72727 5.40909 7.45455 4.72727C4.72727 4.04545 5.40909 4.72727 4.72727 2Z", strokeLinecap: "round", strokeLinejoin: "round" }))
38
+ );
39
+ FlashcardAi.displayName = "FlashcardAi";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ FlashcardAi
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const FlashcardAi: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { FlashcardAi };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const FlashcardAi: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { FlashcardAi };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const FlashcardAi = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M9.9545 9.81818V7.05469C9.9545 6.24007 9.9545 5.83245 10.1031 5.52131C10.2339 5.24762 10.4423 5.02526 10.6989 4.88581C10.9906 4.72727 11.3727 4.72727 12.1364 4.72727H15.2727C16.0364 4.72727 16.4181 4.72727 16.7098 4.88581C16.9664 5.02526 17.1752 5.24762 17.3059 5.52131C17.4545 5.83245 17.4545 6.23976 17.4545 7.05438V11.8544C17.4545 12.669 17.4545 13.0763 17.3059 13.3875C17.1752 13.6612 16.9662 13.884 16.7096 14.0234C16.4182 14.1818 16.0369 14.1818 15.2747 14.1818H14.0454M14.0454 14.1818L14.0454 12.1432C14.0454 11.3302 14.0454 10.9231 13.8969 10.6122C13.7661 10.3385 13.5573 10.1162 13.3007 9.97672C13.009 9.81818 12.6274 9.81818 11.8637 9.81818H9.9545H8.72738C7.96368 9.81818 7.58155 9.81818 7.28985 9.97672C7.03327 10.1162 6.82481 10.3385 6.69408 10.6122C6.54545 10.9234 6.54545 11.331 6.54545 12.1456V16.9456C6.54545 17.7602 6.54545 18.1673 6.69408 18.4785C6.82481 18.7522 7.03327 18.9749 7.28985 19.1143C7.58126 19.2727 7.96293 19.2727 8.72513 19.2727H11.866C12.6282 19.2727 13.0093 19.2727 13.3007 19.1143C13.5573 18.9749 13.7661 18.7519 13.8969 18.4782C14.0454 18.1674 14.0454 17.7607 14.0454 16.9477V14.1818ZM19.2727 16.5455C18.5909 19.2727 19.2727 18.5909 16.5455 19.2727C18.8831 20.0519 18.5909 19.2727 19.2727 22C20.0519 19.6623 19.2727 19.9545 22 19.2727C19.2727 18.5909 19.9545 19.2727 19.2727 16.5455ZM4.72727 2C4.04545 4.72727 4.72727 4.04545 2 4.72727C4.33766 5.50649 4.04545 4.72727 4.72727 7.45455C5.50649 5.11688 4.72727 5.40909 7.45455 4.72727C4.72727 4.04545 5.40909 4.72727 4.72727 2Z", strokeLinecap: "round", strokeLinejoin: "round" }))
5
+ );
6
+ FlashcardAi.displayName = "FlashcardAi";
7
+ export {
8
+ FlashcardAi
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 TwoCards_exports = {};
30
+ __export(TwoCards_exports, {
31
+ TwoCards: () => TwoCards
32
+ });
33
+ module.exports = __toCommonJS(TwoCards_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_Icon = require("../Icon");
36
+ const TwoCards = (0, import_Icon.createIcon)(
37
+ /* @__PURE__ */ import_react.default.createElement(import_react.default.Fragment, null, /* @__PURE__ */ import_react.default.createElement("path", { d: "M9.75201 7.22202L10.731 3.56502C11.033 2.43902 12.191 1.77002 13.317 2.07202L19.434 3.71102C20.56 4.01302 21.229 5.17002 20.927 6.29702L18.195 16.493C17.893 17.619 16.736 18.288 15.61 17.986L13.555 17.436M11.444 22H5.111C3.945 22 3 21.055 3 19.889V9.33305C3 8.16705 3.945 7.22205 5.111 7.22205H11.444C12.61 7.22205 13.555 8.16705 13.555 9.33305V19.889C13.556 21.055 12.61 22 11.444 22Z", strokeLinecap: "round", strokeLinejoin: "round" }))
38
+ );
39
+ TwoCards.displayName = "TwoCards";
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ TwoCards
43
+ });
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.cjs';
2
+ import React__default from 'react';
3
+
4
+ declare const TwoCards: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { TwoCards };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icon.js';
2
+ import React__default from 'react';
3
+
4
+ declare const TwoCards: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>>;
5
+
6
+ export { TwoCards };
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { createIcon } from "../Icon";
3
+ const TwoCards = createIcon(
4
+ /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("path", { d: "M9.75201 7.22202L10.731 3.56502C11.033 2.43902 12.191 1.77002 13.317 2.07202L19.434 3.71102C20.56 4.01302 21.229 5.17002 20.927 6.29702L18.195 16.493C17.893 17.619 16.736 18.288 15.61 17.986L13.555 17.436M11.444 22H5.111C3.945 22 3 21.055 3 19.889V9.33305C3 8.16705 3.945 7.22205 5.111 7.22205H11.444C12.61 7.22205 13.555 8.16705 13.555 9.33305V19.889C13.556 21.055 12.61 22 11.444 22Z", strokeLinecap: "round", strokeLinejoin: "round" }))
5
+ );
6
+ TwoCards.displayName = "TwoCards";
7
+ export {
8
+ TwoCards
9
+ };
@@ -169,6 +169,7 @@ __export(icons_exports, {
169
169
  CircleHelp: () => import_CircleHelp.CircleHelp,
170
170
  CircleWarning: () => import_CircleWarning.CircleWarning,
171
171
  Clock: () => import_Clock.Clock,
172
+ ClockProgress: () => import_ClockProgress.ClockProgress,
172
173
  CloseCircle: () => import_CloseCircle.CloseCircle,
173
174
  CloseLg: () => import_CloseLg.CloseLg,
174
175
  CloseMd: () => import_CloseMd.CloseMd,
@@ -213,6 +214,7 @@ __export(icons_exports, {
213
214
  DownloadPackage: () => import_DownloadPackage.DownloadPackage,
214
215
  DragHorizontal: () => import_DragHorizontal.DragHorizontal,
215
216
  DragVertical: () => import_DragVertical.DragVertical,
217
+ DrawingPencil: () => import_DrawingPencil.DrawingPencil,
216
218
  DummyCircle: () => import_DummyCircle.DummyCircle,
217
219
  DummyCircleSmall: () => import_DummyCircleSmall.DummyCircleSmall,
218
220
  DummySquare: () => import_DummySquare.DummySquare,
@@ -245,6 +247,7 @@ __export(icons_exports, {
245
247
  FirstAid: () => import_FirstAid.FirstAid,
246
248
  Flag: () => import_Flag.Flag,
247
249
  Flashcard: () => import_Flashcard.Flashcard,
250
+ FlashcardAi: () => import_FlashcardAi.FlashcardAi,
248
251
  Focus: () => import_Focus.Focus,
249
252
  Folder: () => import_Folder.Folder,
250
253
  FolderAdd: () => import_FolderAdd.FolderAdd,
@@ -494,6 +497,7 @@ __export(icons_exports, {
494
497
  TriangleCheck: () => import_TriangleCheck.TriangleCheck,
495
498
  TriangleWarning: () => import_TriangleWarning.TriangleWarning,
496
499
  TurboReview: () => import_TurboReview.TurboReview,
500
+ TwoCards: () => import_TwoCards.TwoCards,
497
501
  Underline: () => import_Underline.Underline,
498
502
  Undo: () => import_Undo.Undo,
499
503
  UnfoldLess: () => import_UnfoldLess.UnfoldLess,
@@ -689,6 +693,7 @@ var import_CircleCheck = require("./CircleCheck");
689
693
  var import_CircleHelp = require("./CircleHelp");
690
694
  var import_CircleWarning = require("./CircleWarning");
691
695
  var import_Clock = require("./Clock");
696
+ var import_ClockProgress = require("./ClockProgress");
692
697
  var import_CloseCircle = require("./CloseCircle");
693
698
  var import_CloseLg = require("./CloseLg");
694
699
  var import_CloseMd = require("./CloseMd");
@@ -733,6 +738,7 @@ var import_Download = require("./Download");
733
738
  var import_DownloadPackage = require("./DownloadPackage");
734
739
  var import_DragHorizontal = require("./DragHorizontal");
735
740
  var import_DragVertical = require("./DragVertical");
741
+ var import_DrawingPencil = require("./DrawingPencil");
736
742
  var import_DummyCircle = require("./DummyCircle");
737
743
  var import_DummyCircleSmall = require("./DummyCircleSmall");
738
744
  var import_DummySquare = require("./DummySquare");
@@ -765,6 +771,7 @@ var import_Fire = require("./Fire");
765
771
  var import_FirstAid = require("./FirstAid");
766
772
  var import_Flag = require("./Flag");
767
773
  var import_Flashcard = require("./Flashcard");
774
+ var import_FlashcardAi = require("./FlashcardAi");
768
775
  var import_Focus = require("./Focus");
769
776
  var import_Folder = require("./Folder");
770
777
  var import_FolderAdd = require("./FolderAdd");
@@ -1014,6 +1021,7 @@ var import_Triangle = require("./Triangle");
1014
1021
  var import_TriangleCheck = require("./TriangleCheck");
1015
1022
  var import_TriangleWarning = require("./TriangleWarning");
1016
1023
  var import_TurboReview = require("./TurboReview");
1024
+ var import_TwoCards = require("./TwoCards");
1017
1025
  var import_Underline = require("./Underline");
1018
1026
  var import_Undo = require("./Undo");
1019
1027
  var import_UnfoldLess = require("./UnfoldLess");
@@ -1209,6 +1217,7 @@ var import_WindowTerminal = require("./WindowTerminal");
1209
1217
  CircleHelp,
1210
1218
  CircleWarning,
1211
1219
  Clock,
1220
+ ClockProgress,
1212
1221
  CloseCircle,
1213
1222
  CloseLg,
1214
1223
  CloseMd,
@@ -1253,6 +1262,7 @@ var import_WindowTerminal = require("./WindowTerminal");
1253
1262
  DownloadPackage,
1254
1263
  DragHorizontal,
1255
1264
  DragVertical,
1265
+ DrawingPencil,
1256
1266
  DummyCircle,
1257
1267
  DummyCircleSmall,
1258
1268
  DummySquare,
@@ -1285,6 +1295,7 @@ var import_WindowTerminal = require("./WindowTerminal");
1285
1295
  FirstAid,
1286
1296
  Flag,
1287
1297
  Flashcard,
1298
+ FlashcardAi,
1288
1299
  Focus,
1289
1300
  Folder,
1290
1301
  FolderAdd,
@@ -1534,6 +1545,7 @@ var import_WindowTerminal = require("./WindowTerminal");
1534
1545
  TriangleCheck,
1535
1546
  TriangleWarning,
1536
1547
  TurboReview,
1548
+ TwoCards,
1537
1549
  Underline,
1538
1550
  Undo,
1539
1551
  UnfoldLess,
@@ -149,6 +149,7 @@ export { CircleCheck } from './CircleCheck.cjs';
149
149
  export { CircleHelp } from './CircleHelp.cjs';
150
150
  export { CircleWarning } from './CircleWarning.cjs';
151
151
  export { Clock } from './Clock.cjs';
152
+ export { ClockProgress } from './ClockProgress.cjs';
152
153
  export { CloseCircle } from './CloseCircle.cjs';
153
154
  export { CloseLg } from './CloseLg.cjs';
154
155
  export { CloseMd } from './CloseMd.cjs';
@@ -193,6 +194,7 @@ export { Download } from './Download.cjs';
193
194
  export { DownloadPackage } from './DownloadPackage.cjs';
194
195
  export { DragHorizontal } from './DragHorizontal.cjs';
195
196
  export { DragVertical } from './DragVertical.cjs';
197
+ export { DrawingPencil } from './DrawingPencil.cjs';
196
198
  export { DummyCircle } from './DummyCircle.cjs';
197
199
  export { DummyCircleSmall } from './DummyCircleSmall.cjs';
198
200
  export { DummySquare } from './DummySquare.cjs';
@@ -225,6 +227,7 @@ export { Fire } from './Fire.cjs';
225
227
  export { FirstAid } from './FirstAid.cjs';
226
228
  export { Flag } from './Flag.cjs';
227
229
  export { Flashcard } from './Flashcard.cjs';
230
+ export { FlashcardAi } from './FlashcardAi.cjs';
228
231
  export { Focus } from './Focus.cjs';
229
232
  export { Folder } from './Folder.cjs';
230
233
  export { FolderAdd } from './FolderAdd.cjs';
@@ -474,6 +477,7 @@ export { Triangle } from './Triangle.cjs';
474
477
  export { TriangleCheck } from './TriangleCheck.cjs';
475
478
  export { TriangleWarning } from './TriangleWarning.cjs';
476
479
  export { TurboReview } from './TurboReview.cjs';
480
+ export { TwoCards } from './TwoCards.cjs';
477
481
  export { Underline } from './Underline.cjs';
478
482
  export { Undo } from './Undo.cjs';
479
483
  export { UnfoldLess } from './UnfoldLess.cjs';
@@ -149,6 +149,7 @@ export { CircleCheck } from './CircleCheck.js';
149
149
  export { CircleHelp } from './CircleHelp.js';
150
150
  export { CircleWarning } from './CircleWarning.js';
151
151
  export { Clock } from './Clock.js';
152
+ export { ClockProgress } from './ClockProgress.js';
152
153
  export { CloseCircle } from './CloseCircle.js';
153
154
  export { CloseLg } from './CloseLg.js';
154
155
  export { CloseMd } from './CloseMd.js';
@@ -193,6 +194,7 @@ export { Download } from './Download.js';
193
194
  export { DownloadPackage } from './DownloadPackage.js';
194
195
  export { DragHorizontal } from './DragHorizontal.js';
195
196
  export { DragVertical } from './DragVertical.js';
197
+ export { DrawingPencil } from './DrawingPencil.js';
196
198
  export { DummyCircle } from './DummyCircle.js';
197
199
  export { DummyCircleSmall } from './DummyCircleSmall.js';
198
200
  export { DummySquare } from './DummySquare.js';
@@ -225,6 +227,7 @@ export { Fire } from './Fire.js';
225
227
  export { FirstAid } from './FirstAid.js';
226
228
  export { Flag } from './Flag.js';
227
229
  export { Flashcard } from './Flashcard.js';
230
+ export { FlashcardAi } from './FlashcardAi.js';
228
231
  export { Focus } from './Focus.js';
229
232
  export { Folder } from './Folder.js';
230
233
  export { FolderAdd } from './FolderAdd.js';
@@ -474,6 +477,7 @@ export { Triangle } from './Triangle.js';
474
477
  export { TriangleCheck } from './TriangleCheck.js';
475
478
  export { TriangleWarning } from './TriangleWarning.js';
476
479
  export { TurboReview } from './TurboReview.js';
480
+ export { TwoCards } from './TwoCards.js';
477
481
  export { Underline } from './Underline.js';
478
482
  export { Undo } from './Undo.js';
479
483
  export { UnfoldLess } from './UnfoldLess.js';
@@ -149,6 +149,7 @@ import { CircleCheck } from "./CircleCheck";
149
149
  import { CircleHelp } from "./CircleHelp";
150
150
  import { CircleWarning } from "./CircleWarning";
151
151
  import { Clock } from "./Clock";
152
+ import { ClockProgress } from "./ClockProgress";
152
153
  import { CloseCircle } from "./CloseCircle";
153
154
  import { CloseLg } from "./CloseLg";
154
155
  import { CloseMd } from "./CloseMd";
@@ -193,6 +194,7 @@ import { Download } from "./Download";
193
194
  import { DownloadPackage } from "./DownloadPackage";
194
195
  import { DragHorizontal } from "./DragHorizontal";
195
196
  import { DragVertical } from "./DragVertical";
197
+ import { DrawingPencil } from "./DrawingPencil";
196
198
  import { DummyCircle } from "./DummyCircle";
197
199
  import { DummyCircleSmall } from "./DummyCircleSmall";
198
200
  import { DummySquare } from "./DummySquare";
@@ -225,6 +227,7 @@ import { Fire } from "./Fire";
225
227
  import { FirstAid } from "./FirstAid";
226
228
  import { Flag } from "./Flag";
227
229
  import { Flashcard } from "./Flashcard";
230
+ import { FlashcardAi } from "./FlashcardAi";
228
231
  import { Focus } from "./Focus";
229
232
  import { Folder } from "./Folder";
230
233
  import { FolderAdd } from "./FolderAdd";
@@ -474,6 +477,7 @@ import { Triangle } from "./Triangle";
474
477
  import { TriangleCheck } from "./TriangleCheck";
475
478
  import { TriangleWarning } from "./TriangleWarning";
476
479
  import { TurboReview } from "./TurboReview";
480
+ import { TwoCards } from "./TwoCards";
477
481
  import { Underline } from "./Underline";
478
482
  import { Undo } from "./Undo";
479
483
  import { UnfoldLess } from "./UnfoldLess";
@@ -668,6 +672,7 @@ export {
668
672
  CircleHelp,
669
673
  CircleWarning,
670
674
  Clock,
675
+ ClockProgress,
671
676
  CloseCircle,
672
677
  CloseLg,
673
678
  CloseMd,
@@ -712,6 +717,7 @@ export {
712
717
  DownloadPackage,
713
718
  DragHorizontal,
714
719
  DragVertical,
720
+ DrawingPencil,
715
721
  DummyCircle,
716
722
  DummyCircleSmall,
717
723
  DummySquare,
@@ -744,6 +750,7 @@ export {
744
750
  FirstAid,
745
751
  Flag,
746
752
  Flashcard,
753
+ FlashcardAi,
747
754
  Focus,
748
755
  Folder,
749
756
  FolderAdd,
@@ -993,6 +1000,7 @@ export {
993
1000
  TriangleCheck,
994
1001
  TriangleWarning,
995
1002
  TurboReview,
1003
+ TwoCards,
996
1004
  Underline,
997
1005
  Undo,
998
1006
  UnfoldLess,
package/dist/index.d.cts CHANGED
@@ -150,6 +150,7 @@ export { CircleCheck } from './components/icons/CircleCheck.cjs';
150
150
  export { CircleHelp } from './components/icons/CircleHelp.cjs';
151
151
  export { CircleWarning } from './components/icons/CircleWarning.cjs';
152
152
  export { Clock } from './components/icons/Clock.cjs';
153
+ export { ClockProgress } from './components/icons/ClockProgress.cjs';
153
154
  export { CloseCircle } from './components/icons/CloseCircle.cjs';
154
155
  export { CloseLg } from './components/icons/CloseLg.cjs';
155
156
  export { CloseMd } from './components/icons/CloseMd.cjs';
@@ -194,6 +195,7 @@ export { Download } from './components/icons/Download.cjs';
194
195
  export { DownloadPackage } from './components/icons/DownloadPackage.cjs';
195
196
  export { DragHorizontal } from './components/icons/DragHorizontal.cjs';
196
197
  export { DragVertical } from './components/icons/DragVertical.cjs';
198
+ export { DrawingPencil } from './components/icons/DrawingPencil.cjs';
197
199
  export { DummyCircle } from './components/icons/DummyCircle.cjs';
198
200
  export { DummyCircleSmall } from './components/icons/DummyCircleSmall.cjs';
199
201
  export { DummySquare } from './components/icons/DummySquare.cjs';
@@ -226,6 +228,7 @@ export { Fire } from './components/icons/Fire.cjs';
226
228
  export { FirstAid } from './components/icons/FirstAid.cjs';
227
229
  export { Flag } from './components/icons/Flag.cjs';
228
230
  export { Flashcard } from './components/icons/Flashcard.cjs';
231
+ export { FlashcardAi } from './components/icons/FlashcardAi.cjs';
229
232
  export { Focus } from './components/icons/Focus.cjs';
230
233
  export { Folder } from './components/icons/Folder.cjs';
231
234
  export { FolderAdd } from './components/icons/FolderAdd.cjs';
@@ -475,6 +478,7 @@ export { Triangle } from './components/icons/Triangle.cjs';
475
478
  export { TriangleCheck } from './components/icons/TriangleCheck.cjs';
476
479
  export { TriangleWarning } from './components/icons/TriangleWarning.cjs';
477
480
  export { TurboReview } from './components/icons/TurboReview.cjs';
481
+ export { TwoCards } from './components/icons/TwoCards.cjs';
478
482
  export { Underline } from './components/icons/Underline.cjs';
479
483
  export { Undo } from './components/icons/Undo.cjs';
480
484
  export { UnfoldLess } from './components/icons/UnfoldLess.cjs';
package/dist/index.d.ts CHANGED
@@ -150,6 +150,7 @@ export { CircleCheck } from './components/icons/CircleCheck.js';
150
150
  export { CircleHelp } from './components/icons/CircleHelp.js';
151
151
  export { CircleWarning } from './components/icons/CircleWarning.js';
152
152
  export { Clock } from './components/icons/Clock.js';
153
+ export { ClockProgress } from './components/icons/ClockProgress.js';
153
154
  export { CloseCircle } from './components/icons/CloseCircle.js';
154
155
  export { CloseLg } from './components/icons/CloseLg.js';
155
156
  export { CloseMd } from './components/icons/CloseMd.js';
@@ -194,6 +195,7 @@ export { Download } from './components/icons/Download.js';
194
195
  export { DownloadPackage } from './components/icons/DownloadPackage.js';
195
196
  export { DragHorizontal } from './components/icons/DragHorizontal.js';
196
197
  export { DragVertical } from './components/icons/DragVertical.js';
198
+ export { DrawingPencil } from './components/icons/DrawingPencil.js';
197
199
  export { DummyCircle } from './components/icons/DummyCircle.js';
198
200
  export { DummyCircleSmall } from './components/icons/DummyCircleSmall.js';
199
201
  export { DummySquare } from './components/icons/DummySquare.js';
@@ -226,6 +228,7 @@ export { Fire } from './components/icons/Fire.js';
226
228
  export { FirstAid } from './components/icons/FirstAid.js';
227
229
  export { Flag } from './components/icons/Flag.js';
228
230
  export { Flashcard } from './components/icons/Flashcard.js';
231
+ export { FlashcardAi } from './components/icons/FlashcardAi.js';
229
232
  export { Focus } from './components/icons/Focus.js';
230
233
  export { Folder } from './components/icons/Folder.js';
231
234
  export { FolderAdd } from './components/icons/FolderAdd.js';
@@ -475,6 +478,7 @@ export { Triangle } from './components/icons/Triangle.js';
475
478
  export { TriangleCheck } from './components/icons/TriangleCheck.js';
476
479
  export { TriangleWarning } from './components/icons/TriangleWarning.js';
477
480
  export { TurboReview } from './components/icons/TurboReview.js';
481
+ export { TwoCards } from './components/icons/TwoCards.js';
478
482
  export { Underline } from './components/icons/Underline.js';
479
483
  export { Undo } from './components/icons/Undo.js';
480
484
  export { UnfoldLess } from './components/icons/UnfoldLess.js';
@@ -0,0 +1,45 @@
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 ClockProgress_exports = {};
30
+ __export(ClockProgress_exports, {
31
+ ClockProgress: () => ClockProgress
32
+ });
33
+ module.exports = __toCommonJS(ClockProgress_exports);
34
+ var import_react = __toESM(require("react"), 1);
35
+ var import_react_native_svg = require("react-native-svg");
36
+ const ClockProgress = ({ 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="M12 4V12L17 17" stroke="${color}" stroke-width="${strokeWidth}" stroke-linecap="round" stroke-linejoin="round"/>
39
+ </svg>
40
+ `, height, width, color, strokeWidth });
41
+ };
42
+ // Annotate the CommonJS export names for ESM import in node:
43
+ 0 && (module.exports = {
44
+ ClockProgress
45
+ });
@@ -0,0 +1,9 @@
1
+ import { SvgProps } from 'react-native-svg';
2
+
3
+ type ClockProgressProps = {
4
+ color: string;
5
+ strokeWidth?: number;
6
+ } & SvgProps;
7
+ declare const ClockProgress: ({ height, width, color, strokeWidth }: ClockProgressProps) => JSX.Element;
8
+
9
+ export { ClockProgress };
@@ -0,0 +1,9 @@
1
+ import { SvgProps } from 'react-native-svg';
2
+
3
+ type ClockProgressProps = {
4
+ color: string;
5
+ strokeWidth?: number;
6
+ } & SvgProps;
7
+ declare const ClockProgress: ({ height, width, color, strokeWidth }: ClockProgressProps) => JSX.Element;
8
+
9
+ export { ClockProgress };