@jedd-icons/react 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/arrow-down-right.cjs +3 -0
- package/dist/icons/arrow-down-right.d.cts +5 -0
- package/dist/icons/arrow-down-right.d.mts +5 -0
- package/dist/icons/arrow-down-right.mjs +4 -0
- package/dist/icons/index.d.cts +2 -1
- package/dist/icons/index.d.mts +2 -1
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +2 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/icons/index.d.cts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
import { ArrowDownLeft } from "./arrow-down-left.cjs";
|
|
1
|
+
import { ArrowDownLeft } from "./arrow-down-left.cjs";
|
|
2
|
+
import { ArrowDownRight } from "./arrow-down-right.cjs";
|
package/dist/icons/index.d.mts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
import { ArrowDownLeft } from "./arrow-down-left.mjs";
|
|
1
|
+
import { ArrowDownLeft } from "./arrow-down-left.mjs";
|
|
2
|
+
import { ArrowDownRight } from "./arrow-down-right.mjs";
|
package/dist/index.cjs
CHANGED
|
@@ -4,7 +4,9 @@ const require_Icon = require("./Icon.cjs");
|
|
|
4
4
|
const require_createJeddIcon = require("./createJeddIcon.cjs");
|
|
5
5
|
const require_defaultAttributes = require("./defaultAttributes.cjs");
|
|
6
6
|
const require_arrow_down_left = require("./icons/arrow-down-left.cjs");
|
|
7
|
+
const require_arrow_down_right = require("./icons/arrow-down-right.cjs");
|
|
7
8
|
exports.ArrowDownLeft = require_arrow_down_left.default;
|
|
9
|
+
exports.ArrowDownRight = require_arrow_down_right.default;
|
|
8
10
|
exports.Icon = require_Icon.default;
|
|
9
11
|
exports.createJeddIcon = require_createJeddIcon.default;
|
|
10
12
|
exports.defaultAttributes = require_defaultAttributes.default;
|
package/dist/index.d.cts
CHANGED
|
@@ -4,4 +4,5 @@ import { IconProps, JeddIcon } from "./types.cjs";
|
|
|
4
4
|
import { createJeddIcon } from "./createJeddIcon.cjs";
|
|
5
5
|
import { Icon } from "./Icon.cjs";
|
|
6
6
|
import { ArrowDownLeft } from "./icons/arrow-down-left.cjs";
|
|
7
|
-
|
|
7
|
+
import { ArrowDownRight } from "./icons/arrow-down-right.cjs";
|
|
8
|
+
export { ArrowDownLeft, ArrowDownRight, Icon, type IconNode, type IconProps, type JeddIcon, type Variant, createJeddIcon, defaultAttributesCamel as defaultAttributes };
|
package/dist/index.d.mts
CHANGED
|
@@ -4,4 +4,5 @@ import { IconProps, JeddIcon } from "./types.mjs";
|
|
|
4
4
|
import { createJeddIcon } from "./createJeddIcon.mjs";
|
|
5
5
|
import { Icon } from "./Icon.mjs";
|
|
6
6
|
import { ArrowDownLeft } from "./icons/arrow-down-left.mjs";
|
|
7
|
-
|
|
7
|
+
import { ArrowDownRight } from "./icons/arrow-down-right.mjs";
|
|
8
|
+
export { ArrowDownLeft, ArrowDownRight, Icon, type IconNode, type IconProps, type JeddIcon, type Variant, createJeddIcon, defaultAttributesCamel as defaultAttributes };
|
package/dist/index.mjs
CHANGED
|
@@ -3,4 +3,5 @@ import Icon from "./Icon.mjs";
|
|
|
3
3
|
import createJeddIcon from "./createJeddIcon.mjs";
|
|
4
4
|
import defaultAttributes_default from "./defaultAttributes.mjs";
|
|
5
5
|
import ArrowDownLeft from "./icons/arrow-down-left.mjs";
|
|
6
|
-
|
|
6
|
+
import ArrowDownRight from "./icons/arrow-down-right.mjs";
|
|
7
|
+
export { ArrowDownLeft, ArrowDownRight, Icon, createJeddIcon, defaultAttributes_default as defaultAttributes };
|