@imtf/icons 1.0.0-beta.4 → 1.0.0-beta.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/lib/icons/{ProrityInformationalIcon.d.ts → PriorityInformationalIcon.d.ts} +1 -1
- package/lib/icons/{ProrityInformationalIcon.js → PriorityInformationalIcon.js} +3 -3
- package/lib/icons/{ProrityInformationalIcon.mjs → PriorityInformationalIcon.mjs} +3 -3
- package/lib/icons/index.d.ts +1 -1
- package/lib/index.js +2 -2
- package/lib/index.mjs +2 -2
- package/package.json +1 -1
- /package/svg/{ProrityInformational.svg → PriorityInformational.svg} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { SVGProps } from "react";
|
|
2
2
|
import type { IconProps } from "../types";
|
|
3
3
|
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
-
export { ForwardRef as
|
|
4
|
+
export { ForwardRef as PriorityInformationalIcon };
|
|
@@ -4,7 +4,7 @@ const jsxRuntime = require("react/jsx-runtime");
|
|
|
4
4
|
const react = require("react");
|
|
5
5
|
const get = require("../utils/get.js");
|
|
6
6
|
const Context = require("../providers/IconProvider/Context.js");
|
|
7
|
-
const
|
|
7
|
+
const PriorityInformationalIcon = ({
|
|
8
8
|
color: defaultColor,
|
|
9
9
|
size,
|
|
10
10
|
...props
|
|
@@ -22,5 +22,5 @@ const ProrityInformationalIcon = ({
|
|
|
22
22
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m1 15h-2v-6h2zm0-8h-2V7h2z" })
|
|
23
23
|
] });
|
|
24
24
|
};
|
|
25
|
-
const ForwardRef = react.forwardRef(
|
|
26
|
-
exports.
|
|
25
|
+
const ForwardRef = react.forwardRef(PriorityInformationalIcon);
|
|
26
|
+
exports.PriorityInformationalIcon = ForwardRef;
|
|
@@ -3,7 +3,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
3
3
|
import { forwardRef, useContext, useMemo } from "react";
|
|
4
4
|
import get from "../utils/get.mjs";
|
|
5
5
|
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
6
|
-
const
|
|
6
|
+
const PriorityInformationalIcon = ({
|
|
7
7
|
color: defaultColor,
|
|
8
8
|
size,
|
|
9
9
|
...props
|
|
@@ -21,7 +21,7 @@ const ProrityInformationalIcon = ({
|
|
|
21
21
|
/* @__PURE__ */ jsx("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m1 15h-2v-6h2zm0-8h-2V7h2z" })
|
|
22
22
|
] });
|
|
23
23
|
};
|
|
24
|
-
const ForwardRef = forwardRef(
|
|
24
|
+
const ForwardRef = forwardRef(PriorityInformationalIcon);
|
|
25
25
|
export {
|
|
26
|
-
ForwardRef as
|
|
26
|
+
ForwardRef as PriorityInformationalIcon
|
|
27
27
|
};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -125,8 +125,8 @@ export { NavToLastIcon } from "./NavToLastIcon";
|
|
|
125
125
|
export { NoteIcon } from "./NoteIcon";
|
|
126
126
|
export { OwnerIcon } from "./OwnerIcon";
|
|
127
127
|
export { PriorityImportantIcon } from "./PriorityImportantIcon";
|
|
128
|
+
export { PriorityInformationalIcon } from "./PriorityInformationalIcon";
|
|
128
129
|
export { PriorityTrivialIcon } from "./PriorityTrivialIcon";
|
|
129
|
-
export { ProrityInformationalIcon } from "./ProrityInformationalIcon";
|
|
130
130
|
export { ScoreIcon } from "./ScoreIcon";
|
|
131
131
|
export { SironOneIcon } from "./SironOneIcon";
|
|
132
132
|
export { SkipNextIcon } from "./SkipNextIcon";
|
package/lib/index.js
CHANGED
|
@@ -129,8 +129,8 @@ const NavToLastIcon = require("./icons/NavToLastIcon.js");
|
|
|
129
129
|
const NoteIcon = require("./icons/NoteIcon.js");
|
|
130
130
|
const OwnerIcon = require("./icons/OwnerIcon.js");
|
|
131
131
|
const PriorityImportantIcon = require("./icons/PriorityImportantIcon.js");
|
|
132
|
+
const PriorityInformationalIcon = require("./icons/PriorityInformationalIcon.js");
|
|
132
133
|
const PriorityTrivialIcon = require("./icons/PriorityTrivialIcon.js");
|
|
133
|
-
const ProrityInformationalIcon = require("./icons/ProrityInformationalIcon.js");
|
|
134
134
|
const ScoreIcon = require("./icons/ScoreIcon.js");
|
|
135
135
|
const SironOneIcon = require("./icons/SironOneIcon.js");
|
|
136
136
|
const SkipNextIcon = require("./icons/SkipNextIcon.js");
|
|
@@ -308,8 +308,8 @@ exports.NavToLastIcon = NavToLastIcon.NavToLastIcon;
|
|
|
308
308
|
exports.NoteIcon = NoteIcon.NoteIcon;
|
|
309
309
|
exports.OwnerIcon = OwnerIcon.OwnerIcon;
|
|
310
310
|
exports.PriorityImportantIcon = PriorityImportantIcon.PriorityImportantIcon;
|
|
311
|
+
exports.PriorityInformationalIcon = PriorityInformationalIcon.PriorityInformationalIcon;
|
|
311
312
|
exports.PriorityTrivialIcon = PriorityTrivialIcon.PriorityTrivialIcon;
|
|
312
|
-
exports.ProrityInformationalIcon = ProrityInformationalIcon.ProrityInformationalIcon;
|
|
313
313
|
exports.ScoreIcon = ScoreIcon.ScoreIcon;
|
|
314
314
|
exports.SironOneIcon = SironOneIcon.SironOneIcon;
|
|
315
315
|
exports.SkipNextIcon = SkipNextIcon.SkipNextIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -128,8 +128,8 @@ import { NavToLastIcon } from "./icons/NavToLastIcon.mjs";
|
|
|
128
128
|
import { NoteIcon } from "./icons/NoteIcon.mjs";
|
|
129
129
|
import { OwnerIcon } from "./icons/OwnerIcon.mjs";
|
|
130
130
|
import { PriorityImportantIcon } from "./icons/PriorityImportantIcon.mjs";
|
|
131
|
+
import { PriorityInformationalIcon } from "./icons/PriorityInformationalIcon.mjs";
|
|
131
132
|
import { PriorityTrivialIcon } from "./icons/PriorityTrivialIcon.mjs";
|
|
132
|
-
import { ProrityInformationalIcon } from "./icons/ProrityInformationalIcon.mjs";
|
|
133
133
|
import { ScoreIcon } from "./icons/ScoreIcon.mjs";
|
|
134
134
|
import { SironOneIcon } from "./icons/SironOneIcon.mjs";
|
|
135
135
|
import { SkipNextIcon } from "./icons/SkipNextIcon.mjs";
|
|
@@ -307,8 +307,8 @@ export {
|
|
|
307
307
|
NoteIcon,
|
|
308
308
|
OwnerIcon,
|
|
309
309
|
PriorityImportantIcon,
|
|
310
|
+
PriorityInformationalIcon,
|
|
310
311
|
PriorityTrivialIcon,
|
|
311
|
-
ProrityInformationalIcon,
|
|
312
312
|
ScoreIcon,
|
|
313
313
|
SironOneIcon,
|
|
314
314
|
SkipNextIcon,
|
package/package.json
CHANGED
|
File without changes
|