@jedd-icons/react 0.0.6 → 0.0.8

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 (55) hide show
  1. package/dist/icons/arrow-corner-down-left.cjs +3 -0
  2. package/dist/icons/arrow-corner-down-left.d.cts +5 -0
  3. package/dist/icons/arrow-corner-down-left.d.mts +5 -0
  4. package/dist/icons/arrow-corner-down-left.mjs +4 -0
  5. package/dist/icons/arrow-corner-down-right.cjs +3 -0
  6. package/dist/icons/arrow-corner-down-right.d.cts +5 -0
  7. package/dist/icons/arrow-corner-down-right.d.mts +5 -0
  8. package/dist/icons/arrow-corner-down-right.mjs +4 -0
  9. package/dist/icons/arrow-corner-left-down.cjs +3 -0
  10. package/dist/icons/arrow-corner-left-down.d.cts +5 -0
  11. package/dist/icons/arrow-corner-left-down.d.mts +5 -0
  12. package/dist/icons/arrow-corner-left-down.mjs +4 -0
  13. package/dist/icons/arrow-corner-left-up.cjs +3 -0
  14. package/dist/icons/arrow-corner-left-up.d.cts +5 -0
  15. package/dist/icons/arrow-corner-left-up.d.mts +5 -0
  16. package/dist/icons/arrow-corner-left-up.mjs +4 -0
  17. package/dist/icons/arrow-corner-right-down.cjs +3 -0
  18. package/dist/icons/arrow-corner-right-down.d.cts +5 -0
  19. package/dist/icons/arrow-corner-right-down.d.mts +5 -0
  20. package/dist/icons/arrow-corner-right-down.mjs +4 -0
  21. package/dist/icons/arrow-corner-right-up.cjs +3 -0
  22. package/dist/icons/arrow-corner-right-up.d.cts +5 -0
  23. package/dist/icons/arrow-corner-right-up.d.mts +5 -0
  24. package/dist/icons/arrow-corner-right-up.mjs +4 -0
  25. package/dist/icons/arrow-corner-up-left.cjs +3 -0
  26. package/dist/icons/arrow-corner-up-left.d.cts +5 -0
  27. package/dist/icons/arrow-corner-up-left.d.mts +5 -0
  28. package/dist/icons/arrow-corner-up-left.mjs +4 -0
  29. package/dist/icons/arrow-corner-up-right.cjs +3 -0
  30. package/dist/icons/arrow-corner-up-right.d.cts +5 -0
  31. package/dist/icons/arrow-corner-up-right.d.mts +5 -0
  32. package/dist/icons/arrow-corner-up-right.mjs +4 -0
  33. package/dist/icons/arrow-down.cjs +3 -0
  34. package/dist/icons/arrow-down.d.cts +5 -0
  35. package/dist/icons/arrow-down.d.mts +5 -0
  36. package/dist/icons/arrow-down.mjs +4 -0
  37. package/dist/icons/arrow-left.cjs +3 -0
  38. package/dist/icons/arrow-left.d.cts +5 -0
  39. package/dist/icons/arrow-left.d.mts +5 -0
  40. package/dist/icons/arrow-left.mjs +4 -0
  41. package/dist/icons/arrow-right.cjs +3 -0
  42. package/dist/icons/arrow-right.d.cts +5 -0
  43. package/dist/icons/arrow-right.d.mts +5 -0
  44. package/dist/icons/arrow-right.mjs +4 -0
  45. package/dist/icons/arrow-up.cjs +3 -0
  46. package/dist/icons/arrow-up.d.cts +5 -0
  47. package/dist/icons/arrow-up.d.mts +5 -0
  48. package/dist/icons/arrow-up.mjs +4 -0
  49. package/dist/icons/index.d.cts +13 -1
  50. package/dist/icons/index.d.mts +13 -1
  51. package/dist/index.cjs +24 -0
  52. package/dist/index.d.cts +13 -1
  53. package/dist/index.d.mts +13 -1
  54. package/dist/index.mjs +13 -1
  55. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ const ArrowCornerDownLeft = require("../createJeddIcon.cjs").default("arrow-corner-down-left", [["path", { "d": "M20 4V14H4M9 9L4 14L9 19" }]]);
2
+ //#endregion
3
+ exports.default = ArrowCornerDownLeft;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-corner-down-left.d.ts
3
+ declare const ArrowCornerDownLeft: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerDownLeft };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-corner-down-left.d.ts
3
+ declare const ArrowCornerDownLeft: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerDownLeft };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowCornerDownLeft = createJeddIcon("arrow-corner-down-left", [["path", { "d": "M20 4V14H4M9 9L4 14L9 19" }]]);
3
+ //#endregion
4
+ export { ArrowCornerDownLeft as default };
@@ -0,0 +1,3 @@
1
+ const ArrowCornerDownRight = require("../createJeddIcon.cjs").default("arrow-corner-down-right", [["path", { "d": "M4 4V14H20M15 9L20 14L15 19" }]]);
2
+ //#endregion
3
+ exports.default = ArrowCornerDownRight;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-corner-down-right.d.ts
3
+ declare const ArrowCornerDownRight: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerDownRight };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-corner-down-right.d.ts
3
+ declare const ArrowCornerDownRight: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerDownRight };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowCornerDownRight = createJeddIcon("arrow-corner-down-right", [["path", { "d": "M4 4V14H20M15 9L20 14L15 19" }]]);
3
+ //#endregion
4
+ export { ArrowCornerDownRight as default };
@@ -0,0 +1,3 @@
1
+ const ArrowCornerLeftDown = require("../createJeddIcon.cjs").default("arrow-corner-left-down", [["path", { "d": "M20 4H10V20M15 15L10 20L5 15" }]]);
2
+ //#endregion
3
+ exports.default = ArrowCornerLeftDown;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-corner-left-down.d.ts
3
+ declare const ArrowCornerLeftDown: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerLeftDown };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-corner-left-down.d.ts
3
+ declare const ArrowCornerLeftDown: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerLeftDown };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowCornerLeftDown = createJeddIcon("arrow-corner-left-down", [["path", { "d": "M20 4H10V20M15 15L10 20L5 15" }]]);
3
+ //#endregion
4
+ export { ArrowCornerLeftDown as default };
@@ -0,0 +1,3 @@
1
+ const ArrowCornerLeftUp = require("../createJeddIcon.cjs").default("arrow-corner-left-up", [["path", { "d": "M20 20H10V4M15 9L10 4L5 9" }]]);
2
+ //#endregion
3
+ exports.default = ArrowCornerLeftUp;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-corner-left-up.d.ts
3
+ declare const ArrowCornerLeftUp: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerLeftUp };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-corner-left-up.d.ts
3
+ declare const ArrowCornerLeftUp: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerLeftUp };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowCornerLeftUp = createJeddIcon("arrow-corner-left-up", [["path", { "d": "M20 20H10V4M15 9L10 4L5 9" }]]);
3
+ //#endregion
4
+ export { ArrowCornerLeftUp as default };
@@ -0,0 +1,3 @@
1
+ const ArrowCornerRightDown = require("../createJeddIcon.cjs").default("arrow-corner-right-down", [["path", { "d": "M5 4H15V20M10 15L15 20L20 15" }]]);
2
+ //#endregion
3
+ exports.default = ArrowCornerRightDown;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-corner-right-down.d.ts
3
+ declare const ArrowCornerRightDown: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerRightDown };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-corner-right-down.d.ts
3
+ declare const ArrowCornerRightDown: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerRightDown };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowCornerRightDown = createJeddIcon("arrow-corner-right-down", [["path", { "d": "M5 4H15V20M10 15L15 20L20 15" }]]);
3
+ //#endregion
4
+ export { ArrowCornerRightDown as default };
@@ -0,0 +1,3 @@
1
+ const ArrowCornerRightUp = require("../createJeddIcon.cjs").default("arrow-corner-right-up", [["path", { "d": "M5 20H15V4M10 9L15 4L20 9" }]]);
2
+ //#endregion
3
+ exports.default = ArrowCornerRightUp;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-corner-right-up.d.ts
3
+ declare const ArrowCornerRightUp: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerRightUp };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-corner-right-up.d.ts
3
+ declare const ArrowCornerRightUp: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerRightUp };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowCornerRightUp = createJeddIcon("arrow-corner-right-up", [["path", { "d": "M5 20H15V4M10 9L15 4L20 9" }]]);
3
+ //#endregion
4
+ export { ArrowCornerRightUp as default };
@@ -0,0 +1,3 @@
1
+ const ArrowCornerUpLeft = require("../createJeddIcon.cjs").default("arrow-corner-up-left", [["path", { "d": "M20 19V9H4M9 14L4 9L9 4" }]]);
2
+ //#endregion
3
+ exports.default = ArrowCornerUpLeft;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-corner-up-left.d.ts
3
+ declare const ArrowCornerUpLeft: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerUpLeft };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-corner-up-left.d.ts
3
+ declare const ArrowCornerUpLeft: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerUpLeft };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowCornerUpLeft = createJeddIcon("arrow-corner-up-left", [["path", { "d": "M20 19V9H4M9 14L4 9L9 4" }]]);
3
+ //#endregion
4
+ export { ArrowCornerUpLeft as default };
@@ -0,0 +1,3 @@
1
+ const ArrowCornerUpRight = require("../createJeddIcon.cjs").default("arrow-corner-up-right", [["path", { "d": "M4 19V9H20M15 14L20 9L15 4" }]]);
2
+ //#endregion
3
+ exports.default = ArrowCornerUpRight;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-corner-up-right.d.ts
3
+ declare const ArrowCornerUpRight: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerUpRight };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-corner-up-right.d.ts
3
+ declare const ArrowCornerUpRight: JeddIcon;
4
+ //#endregion
5
+ export { ArrowCornerUpRight };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowCornerUpRight = createJeddIcon("arrow-corner-up-right", [["path", { "d": "M4 19V9H20M15 14L20 9L15 4" }]]);
3
+ //#endregion
4
+ export { ArrowCornerUpRight as default };
@@ -0,0 +1,3 @@
1
+ const ArrowDown = require("../createJeddIcon.cjs").default("arrow-down", [["path", { "d": "M12 4.92893L12 19.0711M4.92893 12L12 19.0711L19.0711 12" }]]);
2
+ //#endregion
3
+ exports.default = ArrowDown;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-down.d.ts
3
+ declare const ArrowDown: JeddIcon;
4
+ //#endregion
5
+ export { ArrowDown };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-down.d.ts
3
+ declare const ArrowDown: JeddIcon;
4
+ //#endregion
5
+ export { ArrowDown };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowDown = createJeddIcon("arrow-down", [["path", { "d": "M12 4.92893L12 19.0711M4.92893 12L12 19.0711L19.0711 12" }]]);
3
+ //#endregion
4
+ export { ArrowDown as default };
@@ -0,0 +1,3 @@
1
+ const ArrowLeft = require("../createJeddIcon.cjs").default("arrow-left", [["path", { "d": "M19.071 12L4.92891 12M12 4.92893L4.92891 12L12 19.0711" }]]);
2
+ //#endregion
3
+ exports.default = ArrowLeft;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-left.d.ts
3
+ declare const ArrowLeft: JeddIcon;
4
+ //#endregion
5
+ export { ArrowLeft };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-left.d.ts
3
+ declare const ArrowLeft: JeddIcon;
4
+ //#endregion
5
+ export { ArrowLeft };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowLeft = createJeddIcon("arrow-left", [["path", { "d": "M19.071 12L4.92891 12M12 4.92893L4.92891 12L12 19.0711" }]]);
3
+ //#endregion
4
+ export { ArrowLeft as default };
@@ -0,0 +1,3 @@
1
+ const ArrowRight = require("../createJeddIcon.cjs").default("arrow-right", [["path", { "d": "M4.92896 12L19.0711 12M12 19.0711L19.0711 12L12 4.92893" }]]);
2
+ //#endregion
3
+ exports.default = ArrowRight;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-right.d.ts
3
+ declare const ArrowRight: JeddIcon;
4
+ //#endregion
5
+ export { ArrowRight };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-right.d.ts
3
+ declare const ArrowRight: JeddIcon;
4
+ //#endregion
5
+ export { ArrowRight };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowRight = createJeddIcon("arrow-right", [["path", { "d": "M4.92896 12L19.0711 12M12 19.0711L19.0711 12L12 4.92893" }]]);
3
+ //#endregion
4
+ export { ArrowRight as default };
@@ -0,0 +1,3 @@
1
+ const ArrowUp = require("../createJeddIcon.cjs").default("arrow-up", [["path", { "d": "M12 19.0711L12 4.92893M19.0711 12L12 4.92893L4.92893 12" }]]);
2
+ //#endregion
3
+ exports.default = ArrowUp;
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.cjs";
2
+ //#region src/icons/arrow-up.d.ts
3
+ declare const ArrowUp: JeddIcon;
4
+ //#endregion
5
+ export { ArrowUp };
@@ -0,0 +1,5 @@
1
+ import { JeddIcon } from "../types.mjs";
2
+ //#region src/icons/arrow-up.d.ts
3
+ declare const ArrowUp: JeddIcon;
4
+ //#endregion
5
+ export { ArrowUp };
@@ -0,0 +1,4 @@
1
+ import createJeddIcon from "../createJeddIcon.mjs";
2
+ const ArrowUp = createJeddIcon("arrow-up", [["path", { "d": "M12 19.0711L12 4.92893M19.0711 12L12 4.92893L4.92893 12" }]]);
3
+ //#endregion
4
+ export { ArrowUp as default };
@@ -1,4 +1,16 @@
1
+ import { ArrowCornerDownLeft } from "./arrow-corner-down-left.cjs";
2
+ import { ArrowCornerDownRight } from "./arrow-corner-down-right.cjs";
3
+ import { ArrowCornerLeftDown } from "./arrow-corner-left-down.cjs";
4
+ import { ArrowCornerLeftUp } from "./arrow-corner-left-up.cjs";
5
+ import { ArrowCornerRightDown } from "./arrow-corner-right-down.cjs";
6
+ import { ArrowCornerRightUp } from "./arrow-corner-right-up.cjs";
7
+ import { ArrowCornerUpLeft } from "./arrow-corner-up-left.cjs";
8
+ import { ArrowCornerUpRight } from "./arrow-corner-up-right.cjs";
1
9
  import { ArrowDownLeft } from "./arrow-down-left.cjs";
2
10
  import { ArrowDownRight } from "./arrow-down-right.cjs";
11
+ import { ArrowDown } from "./arrow-down.cjs";
12
+ import { ArrowLeft } from "./arrow-left.cjs";
13
+ import { ArrowRight } from "./arrow-right.cjs";
3
14
  import { ArrowUpLeft } from "./arrow-up-left.cjs";
4
- import { ArrowUpRight } from "./arrow-up-right.cjs";
15
+ import { ArrowUpRight } from "./arrow-up-right.cjs";
16
+ import { ArrowUp } from "./arrow-up.cjs";
@@ -1,4 +1,16 @@
1
+ import { ArrowCornerDownLeft } from "./arrow-corner-down-left.mjs";
2
+ import { ArrowCornerDownRight } from "./arrow-corner-down-right.mjs";
3
+ import { ArrowCornerLeftDown } from "./arrow-corner-left-down.mjs";
4
+ import { ArrowCornerLeftUp } from "./arrow-corner-left-up.mjs";
5
+ import { ArrowCornerRightDown } from "./arrow-corner-right-down.mjs";
6
+ import { ArrowCornerRightUp } from "./arrow-corner-right-up.mjs";
7
+ import { ArrowCornerUpLeft } from "./arrow-corner-up-left.mjs";
8
+ import { ArrowCornerUpRight } from "./arrow-corner-up-right.mjs";
1
9
  import { ArrowDownLeft } from "./arrow-down-left.mjs";
2
10
  import { ArrowDownRight } from "./arrow-down-right.mjs";
11
+ import { ArrowDown } from "./arrow-down.mjs";
12
+ import { ArrowLeft } from "./arrow-left.mjs";
13
+ import { ArrowRight } from "./arrow-right.mjs";
3
14
  import { ArrowUpLeft } from "./arrow-up-left.mjs";
4
- import { ArrowUpRight } from "./arrow-up-right.mjs";
15
+ import { ArrowUpRight } from "./arrow-up-right.mjs";
16
+ import { ArrowUp } from "./arrow-up.mjs";
package/dist/index.cjs CHANGED
@@ -3,12 +3,36 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const require_Icon = require("./Icon.cjs");
4
4
  const require_createJeddIcon = require("./createJeddIcon.cjs");
5
5
  const require_defaultAttributes = require("./defaultAttributes.cjs");
6
+ const require_arrow_corner_down_left = require("./icons/arrow-corner-down-left.cjs");
7
+ const require_arrow_corner_down_right = require("./icons/arrow-corner-down-right.cjs");
8
+ const require_arrow_corner_left_down = require("./icons/arrow-corner-left-down.cjs");
9
+ const require_arrow_corner_left_up = require("./icons/arrow-corner-left-up.cjs");
10
+ const require_arrow_corner_right_down = require("./icons/arrow-corner-right-down.cjs");
11
+ const require_arrow_corner_right_up = require("./icons/arrow-corner-right-up.cjs");
12
+ const require_arrow_corner_up_left = require("./icons/arrow-corner-up-left.cjs");
13
+ const require_arrow_corner_up_right = require("./icons/arrow-corner-up-right.cjs");
6
14
  const require_arrow_down_left = require("./icons/arrow-down-left.cjs");
7
15
  const require_arrow_down_right = require("./icons/arrow-down-right.cjs");
16
+ const require_arrow_down = require("./icons/arrow-down.cjs");
17
+ const require_arrow_left = require("./icons/arrow-left.cjs");
18
+ const require_arrow_right = require("./icons/arrow-right.cjs");
8
19
  const require_arrow_up_left = require("./icons/arrow-up-left.cjs");
9
20
  const require_arrow_up_right = require("./icons/arrow-up-right.cjs");
21
+ const require_arrow_up = require("./icons/arrow-up.cjs");
22
+ exports.ArrowCornerDownLeft = require_arrow_corner_down_left.default;
23
+ exports.ArrowCornerDownRight = require_arrow_corner_down_right.default;
24
+ exports.ArrowCornerLeftDown = require_arrow_corner_left_down.default;
25
+ exports.ArrowCornerLeftUp = require_arrow_corner_left_up.default;
26
+ exports.ArrowCornerRightDown = require_arrow_corner_right_down.default;
27
+ exports.ArrowCornerRightUp = require_arrow_corner_right_up.default;
28
+ exports.ArrowCornerUpLeft = require_arrow_corner_up_left.default;
29
+ exports.ArrowCornerUpRight = require_arrow_corner_up_right.default;
30
+ exports.ArrowDown = require_arrow_down.default;
10
31
  exports.ArrowDownLeft = require_arrow_down_left.default;
11
32
  exports.ArrowDownRight = require_arrow_down_right.default;
33
+ exports.ArrowLeft = require_arrow_left.default;
34
+ exports.ArrowRight = require_arrow_right.default;
35
+ exports.ArrowUp = require_arrow_up.default;
12
36
  exports.ArrowUpLeft = require_arrow_up_left.default;
13
37
  exports.ArrowUpRight = require_arrow_up_right.default;
14
38
  exports.Icon = require_Icon.default;
package/dist/index.d.cts CHANGED
@@ -3,8 +3,20 @@ import { IconNode } from "./shared/dist/types.cjs";
3
3
  import { IconProps, JeddIcon } from "./types.cjs";
4
4
  import { createJeddIcon } from "./createJeddIcon.cjs";
5
5
  import { Icon } from "./Icon.cjs";
6
+ import { ArrowCornerDownLeft } from "./icons/arrow-corner-down-left.cjs";
7
+ import { ArrowCornerDownRight } from "./icons/arrow-corner-down-right.cjs";
8
+ import { ArrowCornerLeftDown } from "./icons/arrow-corner-left-down.cjs";
9
+ import { ArrowCornerLeftUp } from "./icons/arrow-corner-left-up.cjs";
10
+ import { ArrowCornerRightDown } from "./icons/arrow-corner-right-down.cjs";
11
+ import { ArrowCornerRightUp } from "./icons/arrow-corner-right-up.cjs";
12
+ import { ArrowCornerUpLeft } from "./icons/arrow-corner-up-left.cjs";
13
+ import { ArrowCornerUpRight } from "./icons/arrow-corner-up-right.cjs";
6
14
  import { ArrowDownLeft } from "./icons/arrow-down-left.cjs";
7
15
  import { ArrowDownRight } from "./icons/arrow-down-right.cjs";
16
+ import { ArrowDown } from "./icons/arrow-down.cjs";
17
+ import { ArrowLeft } from "./icons/arrow-left.cjs";
18
+ import { ArrowRight } from "./icons/arrow-right.cjs";
8
19
  import { ArrowUpLeft } from "./icons/arrow-up-left.cjs";
9
20
  import { ArrowUpRight } from "./icons/arrow-up-right.cjs";
10
- export { ArrowDownLeft, ArrowDownRight, ArrowUpLeft, ArrowUpRight, Icon, type IconNode, type IconProps, type JeddIcon, type Variant, createJeddIcon, defaultAttributesCamel as defaultAttributes };
21
+ import { ArrowUp } from "./icons/arrow-up.cjs";
22
+ export { ArrowCornerDownLeft, ArrowCornerDownRight, ArrowCornerLeftDown, ArrowCornerLeftUp, ArrowCornerRightDown, ArrowCornerRightUp, ArrowCornerUpLeft, ArrowCornerUpRight, ArrowDown, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowRight, ArrowUp, ArrowUpLeft, ArrowUpRight, Icon, type IconNode, type IconProps, type JeddIcon, type Variant, createJeddIcon, defaultAttributesCamel as defaultAttributes };
package/dist/index.d.mts CHANGED
@@ -3,8 +3,20 @@ import { IconNode } from "./shared/dist/types.mjs";
3
3
  import { IconProps, JeddIcon } from "./types.mjs";
4
4
  import { createJeddIcon } from "./createJeddIcon.mjs";
5
5
  import { Icon } from "./Icon.mjs";
6
+ import { ArrowCornerDownLeft } from "./icons/arrow-corner-down-left.mjs";
7
+ import { ArrowCornerDownRight } from "./icons/arrow-corner-down-right.mjs";
8
+ import { ArrowCornerLeftDown } from "./icons/arrow-corner-left-down.mjs";
9
+ import { ArrowCornerLeftUp } from "./icons/arrow-corner-left-up.mjs";
10
+ import { ArrowCornerRightDown } from "./icons/arrow-corner-right-down.mjs";
11
+ import { ArrowCornerRightUp } from "./icons/arrow-corner-right-up.mjs";
12
+ import { ArrowCornerUpLeft } from "./icons/arrow-corner-up-left.mjs";
13
+ import { ArrowCornerUpRight } from "./icons/arrow-corner-up-right.mjs";
6
14
  import { ArrowDownLeft } from "./icons/arrow-down-left.mjs";
7
15
  import { ArrowDownRight } from "./icons/arrow-down-right.mjs";
16
+ import { ArrowDown } from "./icons/arrow-down.mjs";
17
+ import { ArrowLeft } from "./icons/arrow-left.mjs";
18
+ import { ArrowRight } from "./icons/arrow-right.mjs";
8
19
  import { ArrowUpLeft } from "./icons/arrow-up-left.mjs";
9
20
  import { ArrowUpRight } from "./icons/arrow-up-right.mjs";
10
- export { ArrowDownLeft, ArrowDownRight, ArrowUpLeft, ArrowUpRight, Icon, type IconNode, type IconProps, type JeddIcon, type Variant, createJeddIcon, defaultAttributesCamel as defaultAttributes };
21
+ import { ArrowUp } from "./icons/arrow-up.mjs";
22
+ export { ArrowCornerDownLeft, ArrowCornerDownRight, ArrowCornerLeftDown, ArrowCornerLeftUp, ArrowCornerRightDown, ArrowCornerRightUp, ArrowCornerUpLeft, ArrowCornerUpRight, ArrowDown, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowRight, ArrowUp, ArrowUpLeft, ArrowUpRight, Icon, type IconNode, type IconProps, type JeddIcon, type Variant, createJeddIcon, defaultAttributesCamel as defaultAttributes };
package/dist/index.mjs CHANGED
@@ -2,8 +2,20 @@
2
2
  import Icon from "./Icon.mjs";
3
3
  import createJeddIcon from "./createJeddIcon.mjs";
4
4
  import defaultAttributes_default from "./defaultAttributes.mjs";
5
+ import ArrowCornerDownLeft from "./icons/arrow-corner-down-left.mjs";
6
+ import ArrowCornerDownRight from "./icons/arrow-corner-down-right.mjs";
7
+ import ArrowCornerLeftDown from "./icons/arrow-corner-left-down.mjs";
8
+ import ArrowCornerLeftUp from "./icons/arrow-corner-left-up.mjs";
9
+ import ArrowCornerRightDown from "./icons/arrow-corner-right-down.mjs";
10
+ import ArrowCornerRightUp from "./icons/arrow-corner-right-up.mjs";
11
+ import ArrowCornerUpLeft from "./icons/arrow-corner-up-left.mjs";
12
+ import ArrowCornerUpRight from "./icons/arrow-corner-up-right.mjs";
5
13
  import ArrowDownLeft from "./icons/arrow-down-left.mjs";
6
14
  import ArrowDownRight from "./icons/arrow-down-right.mjs";
15
+ import ArrowDown from "./icons/arrow-down.mjs";
16
+ import ArrowLeft from "./icons/arrow-left.mjs";
17
+ import ArrowRight from "./icons/arrow-right.mjs";
7
18
  import ArrowUpLeft from "./icons/arrow-up-left.mjs";
8
19
  import ArrowUpRight from "./icons/arrow-up-right.mjs";
9
- export { ArrowDownLeft, ArrowDownRight, ArrowUpLeft, ArrowUpRight, Icon, createJeddIcon, defaultAttributes_default as defaultAttributes };
20
+ import ArrowUp from "./icons/arrow-up.mjs";
21
+ export { ArrowCornerDownLeft, ArrowCornerDownRight, ArrowCornerLeftDown, ArrowCornerLeftUp, ArrowCornerRightDown, ArrowCornerRightUp, ArrowCornerUpLeft, ArrowCornerUpRight, ArrowDown, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowRight, ArrowUp, ArrowUpLeft, ArrowUpRight, Icon, createJeddIcon, defaultAttributes_default as defaultAttributes };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jedd-icons/react",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "Jedd icons for React.",
5
5
  "license": "MIT",
6
6
  "author": "Marcello Novelli",