@imtf/icons 1.0.0-beta.3 → 1.0.0-beta.4
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/ActionInvestigateIcon.d.ts +4 -0
- package/lib/icons/ActionInvestigateIcon.js +26 -0
- package/lib/icons/ActionInvestigateIcon.mjs +27 -0
- package/lib/icons/DateCreationIcon.d.ts +4 -0
- package/lib/icons/DateCreationIcon.js +26 -0
- package/lib/icons/DateCreationIcon.mjs +27 -0
- package/lib/icons/{ImportantIcon.d.ts → EntityCaseIcon.d.ts} +1 -1
- package/lib/icons/EntityCaseIcon.js +23 -0
- package/lib/icons/EntityCaseIcon.mjs +24 -0
- package/lib/icons/PriorityImportantIcon.d.ts +4 -0
- package/lib/icons/{ImportantIcon.js → PriorityImportantIcon.js} +3 -3
- package/lib/icons/{ImportantIcon.mjs → PriorityImportantIcon.mjs} +3 -3
- package/lib/icons/ProrityInformationalIcon.d.ts +4 -0
- package/lib/icons/ProrityInformationalIcon.js +26 -0
- package/lib/icons/ProrityInformationalIcon.mjs +27 -0
- package/lib/icons/index.d.ts +5 -1
- package/lib/index.js +10 -2
- package/lib/index.mjs +10 -2
- package/package.json +1 -1
- package/svg/ActionInvestigate.svg +1 -0
- package/svg/DateCreation.svg +1 -0
- package/svg/EntityCase.svg +3 -0
- package/svg/ProrityInformational.svg +4 -0
- /package/svg/{Important.json → PriorityImportant.json} +0 -0
- /package/svg/{Important.svg → PriorityImportant.svg} +0 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as ActionInvestigateIcon };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const react = require("react");
|
|
5
|
+
const get = require("../utils/get.js");
|
|
6
|
+
const Context = require("../providers/IconProvider/Context.js");
|
|
7
|
+
const ActionInvestigateIcon = ({
|
|
8
|
+
color: defaultColor,
|
|
9
|
+
size,
|
|
10
|
+
...props
|
|
11
|
+
}, ref) => {
|
|
12
|
+
const defaultContextValues = react.useContext(Context.IconContext);
|
|
13
|
+
const defaultValues = {
|
|
14
|
+
...defaultContextValues,
|
|
15
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
16
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
17
|
+
...props
|
|
18
|
+
};
|
|
19
|
+
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
21
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
22
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99zM21 9l-3.99-4v3H10v2h7.01v3z" })
|
|
23
|
+
] });
|
|
24
|
+
};
|
|
25
|
+
const ForwardRef = react.forwardRef(ActionInvestigateIcon);
|
|
26
|
+
exports.ActionInvestigateIcon = ForwardRef;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef, useContext, useMemo } from "react";
|
|
4
|
+
import get from "../utils/get.mjs";
|
|
5
|
+
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
6
|
+
const ActionInvestigateIcon = ({
|
|
7
|
+
color: defaultColor,
|
|
8
|
+
size,
|
|
9
|
+
...props
|
|
10
|
+
}, ref) => {
|
|
11
|
+
const defaultContextValues = useContext(IconContext);
|
|
12
|
+
const defaultValues = {
|
|
13
|
+
...defaultContextValues,
|
|
14
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
15
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
16
|
+
...props
|
|
17
|
+
};
|
|
18
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
20
|
+
/* @__PURE__ */ jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99zM21 9l-3.99-4v3H10v2h7.01v3z" })
|
|
22
|
+
] });
|
|
23
|
+
};
|
|
24
|
+
const ForwardRef = forwardRef(ActionInvestigateIcon);
|
|
25
|
+
export {
|
|
26
|
+
ForwardRef as ActionInvestigateIcon
|
|
27
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as DateCreationIcon };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const react = require("react");
|
|
5
|
+
const get = require("../utils/get.js");
|
|
6
|
+
const Context = require("../providers/IconProvider/Context.js");
|
|
7
|
+
const DateCreationIcon = ({
|
|
8
|
+
color: defaultColor,
|
|
9
|
+
size,
|
|
10
|
+
...props
|
|
11
|
+
}, ref) => {
|
|
12
|
+
const defaultContextValues = react.useContext(Context.IconContext);
|
|
13
|
+
const defaultValues = {
|
|
14
|
+
...defaultContextValues,
|
|
15
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
16
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
17
|
+
...props
|
|
18
|
+
};
|
|
19
|
+
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
21
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
22
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 18H4V10h16zm0-13H4V5h16z" })
|
|
23
|
+
] });
|
|
24
|
+
};
|
|
25
|
+
const ForwardRef = react.forwardRef(DateCreationIcon);
|
|
26
|
+
exports.DateCreationIcon = ForwardRef;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef, useContext, useMemo } from "react";
|
|
4
|
+
import get from "../utils/get.mjs";
|
|
5
|
+
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
6
|
+
const DateCreationIcon = ({
|
|
7
|
+
color: defaultColor,
|
|
8
|
+
size,
|
|
9
|
+
...props
|
|
10
|
+
}, ref) => {
|
|
11
|
+
const defaultContextValues = useContext(IconContext);
|
|
12
|
+
const defaultValues = {
|
|
13
|
+
...defaultContextValues,
|
|
14
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
15
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
16
|
+
...props
|
|
17
|
+
};
|
|
18
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
20
|
+
/* @__PURE__ */ jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 18H4V10h16zm0-13H4V5h16z" })
|
|
22
|
+
] });
|
|
23
|
+
};
|
|
24
|
+
const ForwardRef = forwardRef(DateCreationIcon);
|
|
25
|
+
export {
|
|
26
|
+
ForwardRef as DateCreationIcon
|
|
27
|
+
};
|
|
@@ -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 EntityCaseIcon };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const react = require("react");
|
|
5
|
+
const get = require("../utils/get.js");
|
|
6
|
+
const Context = require("../providers/IconProvider/Context.js");
|
|
7
|
+
const EntityCaseIcon = ({
|
|
8
|
+
color: defaultColor,
|
|
9
|
+
size,
|
|
10
|
+
...props
|
|
11
|
+
}, ref) => {
|
|
12
|
+
const defaultContextValues = react.useContext(Context.IconContext);
|
|
13
|
+
const defaultValues = {
|
|
14
|
+
...defaultContextValues,
|
|
15
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
16
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
17
|
+
...props
|
|
18
|
+
};
|
|
19
|
+
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 6h-9L9 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(EntityCaseIcon);
|
|
23
|
+
exports.EntityCaseIcon = ForwardRef;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef, useContext, useMemo } from "react";
|
|
4
|
+
import get from "../utils/get.mjs";
|
|
5
|
+
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
6
|
+
const EntityCaseIcon = ({
|
|
7
|
+
color: defaultColor,
|
|
8
|
+
size,
|
|
9
|
+
...props
|
|
10
|
+
}, ref) => {
|
|
11
|
+
const defaultContextValues = useContext(IconContext);
|
|
12
|
+
const defaultValues = {
|
|
13
|
+
...defaultContextValues,
|
|
14
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
15
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
16
|
+
...props
|
|
17
|
+
};
|
|
18
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M20 6h-9L9 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(EntityCaseIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as EntityCaseIcon
|
|
24
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as PriorityImportantIcon };
|
|
@@ -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 PriorityImportantIcon = ({
|
|
8
8
|
color: defaultColor,
|
|
9
9
|
size,
|
|
10
10
|
...props
|
|
@@ -19,5 +19,5 @@ const ImportantIcon = ({
|
|
|
19
19
|
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
20
|
return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M480-280q17 0 28.5-11.5T520-320t-11.5-28.5T480-360t-28.5 11.5T440-320t11.5 28.5T480-280m-40-160h80v-240h-80zm40 360q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80" }) });
|
|
21
21
|
};
|
|
22
|
-
const ForwardRef = react.forwardRef(
|
|
23
|
-
exports.
|
|
22
|
+
const ForwardRef = react.forwardRef(PriorityImportantIcon);
|
|
23
|
+
exports.PriorityImportantIcon = ForwardRef;
|
|
@@ -3,7 +3,7 @@ import { 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 PriorityImportantIcon = ({
|
|
7
7
|
color: defaultColor,
|
|
8
8
|
size,
|
|
9
9
|
...props
|
|
@@ -18,7 +18,7 @@ const ImportantIcon = ({
|
|
|
18
18
|
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
19
|
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-280q17 0 28.5-11.5T520-320t-11.5-28.5T480-360t-28.5 11.5T440-320t11.5 28.5T480-280m-40-160h80v-240h-80zm40 360q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80" }) });
|
|
20
20
|
};
|
|
21
|
-
const ForwardRef = forwardRef(
|
|
21
|
+
const ForwardRef = forwardRef(PriorityImportantIcon);
|
|
22
22
|
export {
|
|
23
|
-
ForwardRef as
|
|
23
|
+
ForwardRef as PriorityImportantIcon
|
|
24
24
|
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as ProrityInformationalIcon };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const react = require("react");
|
|
5
|
+
const get = require("../utils/get.js");
|
|
6
|
+
const Context = require("../providers/IconProvider/Context.js");
|
|
7
|
+
const ProrityInformationalIcon = ({
|
|
8
|
+
color: defaultColor,
|
|
9
|
+
size,
|
|
10
|
+
...props
|
|
11
|
+
}, ref) => {
|
|
12
|
+
const defaultContextValues = react.useContext(Context.IconContext);
|
|
13
|
+
const defaultValues = {
|
|
14
|
+
...defaultContextValues,
|
|
15
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
16
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
17
|
+
...props
|
|
18
|
+
};
|
|
19
|
+
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
21
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
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
|
+
] });
|
|
24
|
+
};
|
|
25
|
+
const ForwardRef = react.forwardRef(ProrityInformationalIcon);
|
|
26
|
+
exports.ProrityInformationalIcon = ForwardRef;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef, useContext, useMemo } from "react";
|
|
4
|
+
import get from "../utils/get.mjs";
|
|
5
|
+
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
6
|
+
const ProrityInformationalIcon = ({
|
|
7
|
+
color: defaultColor,
|
|
8
|
+
size,
|
|
9
|
+
...props
|
|
10
|
+
}, ref) => {
|
|
11
|
+
const defaultContextValues = useContext(IconContext);
|
|
12
|
+
const defaultValues = {
|
|
13
|
+
...defaultContextValues,
|
|
14
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
15
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
16
|
+
...props
|
|
17
|
+
};
|
|
18
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
20
|
+
/* @__PURE__ */ jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
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
|
+
] });
|
|
23
|
+
};
|
|
24
|
+
const ForwardRef = forwardRef(ProrityInformationalIcon);
|
|
25
|
+
export {
|
|
26
|
+
ForwardRef as ProrityInformationalIcon
|
|
27
|
+
};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export { ActionEraseIcon } from "./ActionEraseIcon";
|
|
|
9
9
|
export { ActionEscalateIcon } from "./ActionEscalateIcon";
|
|
10
10
|
export { ActionExtandIcon } from "./ActionExtandIcon";
|
|
11
11
|
export { ActionFavoriteIcon } from "./ActionFavoriteIcon";
|
|
12
|
+
export { ActionInvestigateIcon } from "./ActionInvestigateIcon";
|
|
12
13
|
export { ActionLinkIcon } from "./ActionLinkIcon";
|
|
13
14
|
export { ActionMarkAsDoneIcon } from "./ActionMarkAsDoneIcon";
|
|
14
15
|
export { ActionOpenLinkIcon } from "./ActionOpenLinkIcon";
|
|
@@ -41,6 +42,7 @@ export { ChevronLeftIcon } from "./ChevronLeftIcon";
|
|
|
41
42
|
export { ChevronRightIcon } from "./ChevronRightIcon";
|
|
42
43
|
export { ChevronUpIcon } from "./ChevronUpIcon";
|
|
43
44
|
export { CommentIcon } from "./CommentIcon";
|
|
45
|
+
export { DateCreationIcon } from "./DateCreationIcon";
|
|
44
46
|
export { DateDueIcon } from "./DateDueIcon";
|
|
45
47
|
export { DateExpireIcon } from "./DateExpireIcon";
|
|
46
48
|
export { DateLastEditIcon } from "./DateLastEditIcon";
|
|
@@ -72,6 +74,7 @@ export { EmptyPlaceholderIcon } from "./EmptyPlaceholderIcon";
|
|
|
72
74
|
export { EntityAccountIcon } from "./EntityAccountIcon";
|
|
73
75
|
export { EntityAlertIcon } from "./EntityAlertIcon";
|
|
74
76
|
export { EntityBankMessageIcon } from "./EntityBankMessageIcon";
|
|
77
|
+
export { EntityCaseIcon } from "./EntityCaseIcon";
|
|
75
78
|
export { EntityGroupIcon } from "./EntityGroupIcon";
|
|
76
79
|
export { EntityHouseholdIcon } from "./EntityHouseholdIcon";
|
|
77
80
|
export { EntityLegalPersonIcon } from "./EntityLegalPersonIcon";
|
|
@@ -97,7 +100,6 @@ export { FileIcon } from "./FileIcon";
|
|
|
97
100
|
export { FolderInboxIcon } from "./FolderInboxIcon";
|
|
98
101
|
export { FolderIcon } from "./FolderIcon";
|
|
99
102
|
export { HistoryIcon } from "./HistoryIcon";
|
|
100
|
-
export { ImportantIcon } from "./ImportantIcon";
|
|
101
103
|
export { InfoIcon } from "./InfoIcon";
|
|
102
104
|
export { InheritableIcon } from "./InheritableIcon";
|
|
103
105
|
export { MenuBurgerIcon } from "./MenuBurgerIcon";
|
|
@@ -122,7 +124,9 @@ export { NavToFirstIcon } from "./NavToFirstIcon";
|
|
|
122
124
|
export { NavToLastIcon } from "./NavToLastIcon";
|
|
123
125
|
export { NoteIcon } from "./NoteIcon";
|
|
124
126
|
export { OwnerIcon } from "./OwnerIcon";
|
|
127
|
+
export { PriorityImportantIcon } from "./PriorityImportantIcon";
|
|
125
128
|
export { PriorityTrivialIcon } from "./PriorityTrivialIcon";
|
|
129
|
+
export { ProrityInformationalIcon } from "./ProrityInformationalIcon";
|
|
126
130
|
export { ScoreIcon } from "./ScoreIcon";
|
|
127
131
|
export { SironOneIcon } from "./SironOneIcon";
|
|
128
132
|
export { SkipNextIcon } from "./SkipNextIcon";
|
package/lib/index.js
CHANGED
|
@@ -13,6 +13,7 @@ const ActionEraseIcon = require("./icons/ActionEraseIcon.js");
|
|
|
13
13
|
const ActionEscalateIcon = require("./icons/ActionEscalateIcon.js");
|
|
14
14
|
const ActionExtandIcon = require("./icons/ActionExtandIcon.js");
|
|
15
15
|
const ActionFavoriteIcon = require("./icons/ActionFavoriteIcon.js");
|
|
16
|
+
const ActionInvestigateIcon = require("./icons/ActionInvestigateIcon.js");
|
|
16
17
|
const ActionLinkIcon = require("./icons/ActionLinkIcon.js");
|
|
17
18
|
const ActionMarkAsDoneIcon = require("./icons/ActionMarkAsDoneIcon.js");
|
|
18
19
|
const ActionOpenLinkIcon = require("./icons/ActionOpenLinkIcon.js");
|
|
@@ -45,6 +46,7 @@ const ChevronLeftIcon = require("./icons/ChevronLeftIcon.js");
|
|
|
45
46
|
const ChevronRightIcon = require("./icons/ChevronRightIcon.js");
|
|
46
47
|
const ChevronUpIcon = require("./icons/ChevronUpIcon.js");
|
|
47
48
|
const CommentIcon = require("./icons/CommentIcon.js");
|
|
49
|
+
const DateCreationIcon = require("./icons/DateCreationIcon.js");
|
|
48
50
|
const DateDueIcon = require("./icons/DateDueIcon.js");
|
|
49
51
|
const DateExpireIcon = require("./icons/DateExpireIcon.js");
|
|
50
52
|
const DateLastEditIcon = require("./icons/DateLastEditIcon.js");
|
|
@@ -76,6 +78,7 @@ const EmptyPlaceholderIcon = require("./icons/EmptyPlaceholderIcon.js");
|
|
|
76
78
|
const EntityAccountIcon = require("./icons/EntityAccountIcon.js");
|
|
77
79
|
const EntityAlertIcon = require("./icons/EntityAlertIcon.js");
|
|
78
80
|
const EntityBankMessageIcon = require("./icons/EntityBankMessageIcon.js");
|
|
81
|
+
const EntityCaseIcon = require("./icons/EntityCaseIcon.js");
|
|
79
82
|
const EntityGroupIcon = require("./icons/EntityGroupIcon.js");
|
|
80
83
|
const EntityHouseholdIcon = require("./icons/EntityHouseholdIcon.js");
|
|
81
84
|
const EntityLegalPersonIcon = require("./icons/EntityLegalPersonIcon.js");
|
|
@@ -101,7 +104,6 @@ const FileIcon = require("./icons/FileIcon.js");
|
|
|
101
104
|
const FolderInboxIcon = require("./icons/FolderInboxIcon.js");
|
|
102
105
|
const FolderIcon = require("./icons/FolderIcon.js");
|
|
103
106
|
const HistoryIcon = require("./icons/HistoryIcon.js");
|
|
104
|
-
const ImportantIcon = require("./icons/ImportantIcon.js");
|
|
105
107
|
const InfoIcon = require("./icons/InfoIcon.js");
|
|
106
108
|
const InheritableIcon = require("./icons/InheritableIcon.js");
|
|
107
109
|
const MenuBurgerIcon = require("./icons/MenuBurgerIcon.js");
|
|
@@ -126,7 +128,9 @@ const NavToFirstIcon = require("./icons/NavToFirstIcon.js");
|
|
|
126
128
|
const NavToLastIcon = require("./icons/NavToLastIcon.js");
|
|
127
129
|
const NoteIcon = require("./icons/NoteIcon.js");
|
|
128
130
|
const OwnerIcon = require("./icons/OwnerIcon.js");
|
|
131
|
+
const PriorityImportantIcon = require("./icons/PriorityImportantIcon.js");
|
|
129
132
|
const PriorityTrivialIcon = require("./icons/PriorityTrivialIcon.js");
|
|
133
|
+
const ProrityInformationalIcon = require("./icons/ProrityInformationalIcon.js");
|
|
130
134
|
const ScoreIcon = require("./icons/ScoreIcon.js");
|
|
131
135
|
const SironOneIcon = require("./icons/SironOneIcon.js");
|
|
132
136
|
const SkipNextIcon = require("./icons/SkipNextIcon.js");
|
|
@@ -188,6 +192,7 @@ exports.ActionEraseIcon = ActionEraseIcon.ActionEraseIcon;
|
|
|
188
192
|
exports.ActionEscalateIcon = ActionEscalateIcon.ActionEscalateIcon;
|
|
189
193
|
exports.ActionExtandIcon = ActionExtandIcon.ActionExtandIcon;
|
|
190
194
|
exports.ActionFavoriteIcon = ActionFavoriteIcon.ActionFavoriteIcon;
|
|
195
|
+
exports.ActionInvestigateIcon = ActionInvestigateIcon.ActionInvestigateIcon;
|
|
191
196
|
exports.ActionLinkIcon = ActionLinkIcon.ActionLinkIcon;
|
|
192
197
|
exports.ActionMarkAsDoneIcon = ActionMarkAsDoneIcon.ActionMarkAsDoneIcon;
|
|
193
198
|
exports.ActionOpenLinkIcon = ActionOpenLinkIcon.ActionOpenLinkIcon;
|
|
@@ -220,6 +225,7 @@ exports.ChevronLeftIcon = ChevronLeftIcon.ChevronLeftIcon;
|
|
|
220
225
|
exports.ChevronRightIcon = ChevronRightIcon.ChevronRightIcon;
|
|
221
226
|
exports.ChevronUpIcon = ChevronUpIcon.ChevronUpIcon;
|
|
222
227
|
exports.CommentIcon = CommentIcon.CommentIcon;
|
|
228
|
+
exports.DateCreationIcon = DateCreationIcon.DateCreationIcon;
|
|
223
229
|
exports.DateDueIcon = DateDueIcon.DateDueIcon;
|
|
224
230
|
exports.DateExpireIcon = DateExpireIcon.DateExpireIcon;
|
|
225
231
|
exports.DateLastEditIcon = DateLastEditIcon.DateLastEditIcon;
|
|
@@ -251,6 +257,7 @@ exports.EmptyPlaceholderIcon = EmptyPlaceholderIcon.EmptyPlaceholderIcon;
|
|
|
251
257
|
exports.EntityAccountIcon = EntityAccountIcon.EntityAccountIcon;
|
|
252
258
|
exports.EntityAlertIcon = EntityAlertIcon.EntityAlertIcon;
|
|
253
259
|
exports.EntityBankMessageIcon = EntityBankMessageIcon.EntityBankMessageIcon;
|
|
260
|
+
exports.EntityCaseIcon = EntityCaseIcon.EntityCaseIcon;
|
|
254
261
|
exports.EntityGroupIcon = EntityGroupIcon.EntityGroupIcon;
|
|
255
262
|
exports.EntityHouseholdIcon = EntityHouseholdIcon.EntityHouseholdIcon;
|
|
256
263
|
exports.EntityLegalPersonIcon = EntityLegalPersonIcon.EntityLegalPersonIcon;
|
|
@@ -276,7 +283,6 @@ exports.FileIcon = FileIcon.FileIcon;
|
|
|
276
283
|
exports.FolderInboxIcon = FolderInboxIcon.FolderInboxIcon;
|
|
277
284
|
exports.FolderIcon = FolderIcon.FolderIcon;
|
|
278
285
|
exports.HistoryIcon = HistoryIcon.HistoryIcon;
|
|
279
|
-
exports.ImportantIcon = ImportantIcon.ImportantIcon;
|
|
280
286
|
exports.InfoIcon = InfoIcon.InfoIcon;
|
|
281
287
|
exports.InheritableIcon = InheritableIcon.InheritableIcon;
|
|
282
288
|
exports.MenuBurgerIcon = MenuBurgerIcon.MenuBurgerIcon;
|
|
@@ -301,7 +307,9 @@ exports.NavToFirstIcon = NavToFirstIcon.NavToFirstIcon;
|
|
|
301
307
|
exports.NavToLastIcon = NavToLastIcon.NavToLastIcon;
|
|
302
308
|
exports.NoteIcon = NoteIcon.NoteIcon;
|
|
303
309
|
exports.OwnerIcon = OwnerIcon.OwnerIcon;
|
|
310
|
+
exports.PriorityImportantIcon = PriorityImportantIcon.PriorityImportantIcon;
|
|
304
311
|
exports.PriorityTrivialIcon = PriorityTrivialIcon.PriorityTrivialIcon;
|
|
312
|
+
exports.ProrityInformationalIcon = ProrityInformationalIcon.ProrityInformationalIcon;
|
|
305
313
|
exports.ScoreIcon = ScoreIcon.ScoreIcon;
|
|
306
314
|
exports.SironOneIcon = SironOneIcon.SironOneIcon;
|
|
307
315
|
exports.SkipNextIcon = SkipNextIcon.SkipNextIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -12,6 +12,7 @@ import { ActionEraseIcon } from "./icons/ActionEraseIcon.mjs";
|
|
|
12
12
|
import { ActionEscalateIcon } from "./icons/ActionEscalateIcon.mjs";
|
|
13
13
|
import { ActionExtandIcon } from "./icons/ActionExtandIcon.mjs";
|
|
14
14
|
import { ActionFavoriteIcon } from "./icons/ActionFavoriteIcon.mjs";
|
|
15
|
+
import { ActionInvestigateIcon } from "./icons/ActionInvestigateIcon.mjs";
|
|
15
16
|
import { ActionLinkIcon } from "./icons/ActionLinkIcon.mjs";
|
|
16
17
|
import { ActionMarkAsDoneIcon } from "./icons/ActionMarkAsDoneIcon.mjs";
|
|
17
18
|
import { ActionOpenLinkIcon } from "./icons/ActionOpenLinkIcon.mjs";
|
|
@@ -44,6 +45,7 @@ import { ChevronLeftIcon } from "./icons/ChevronLeftIcon.mjs";
|
|
|
44
45
|
import { ChevronRightIcon } from "./icons/ChevronRightIcon.mjs";
|
|
45
46
|
import { ChevronUpIcon } from "./icons/ChevronUpIcon.mjs";
|
|
46
47
|
import { CommentIcon } from "./icons/CommentIcon.mjs";
|
|
48
|
+
import { DateCreationIcon } from "./icons/DateCreationIcon.mjs";
|
|
47
49
|
import { DateDueIcon } from "./icons/DateDueIcon.mjs";
|
|
48
50
|
import { DateExpireIcon } from "./icons/DateExpireIcon.mjs";
|
|
49
51
|
import { DateLastEditIcon } from "./icons/DateLastEditIcon.mjs";
|
|
@@ -75,6 +77,7 @@ import { EmptyPlaceholderIcon } from "./icons/EmptyPlaceholderIcon.mjs";
|
|
|
75
77
|
import { EntityAccountIcon } from "./icons/EntityAccountIcon.mjs";
|
|
76
78
|
import { EntityAlertIcon } from "./icons/EntityAlertIcon.mjs";
|
|
77
79
|
import { EntityBankMessageIcon } from "./icons/EntityBankMessageIcon.mjs";
|
|
80
|
+
import { EntityCaseIcon } from "./icons/EntityCaseIcon.mjs";
|
|
78
81
|
import { EntityGroupIcon } from "./icons/EntityGroupIcon.mjs";
|
|
79
82
|
import { EntityHouseholdIcon } from "./icons/EntityHouseholdIcon.mjs";
|
|
80
83
|
import { EntityLegalPersonIcon } from "./icons/EntityLegalPersonIcon.mjs";
|
|
@@ -100,7 +103,6 @@ import { FileIcon } from "./icons/FileIcon.mjs";
|
|
|
100
103
|
import { FolderInboxIcon } from "./icons/FolderInboxIcon.mjs";
|
|
101
104
|
import { FolderIcon } from "./icons/FolderIcon.mjs";
|
|
102
105
|
import { HistoryIcon } from "./icons/HistoryIcon.mjs";
|
|
103
|
-
import { ImportantIcon } from "./icons/ImportantIcon.mjs";
|
|
104
106
|
import { InfoIcon } from "./icons/InfoIcon.mjs";
|
|
105
107
|
import { InheritableIcon } from "./icons/InheritableIcon.mjs";
|
|
106
108
|
import { MenuBurgerIcon } from "./icons/MenuBurgerIcon.mjs";
|
|
@@ -125,7 +127,9 @@ import { NavToFirstIcon } from "./icons/NavToFirstIcon.mjs";
|
|
|
125
127
|
import { NavToLastIcon } from "./icons/NavToLastIcon.mjs";
|
|
126
128
|
import { NoteIcon } from "./icons/NoteIcon.mjs";
|
|
127
129
|
import { OwnerIcon } from "./icons/OwnerIcon.mjs";
|
|
130
|
+
import { PriorityImportantIcon } from "./icons/PriorityImportantIcon.mjs";
|
|
128
131
|
import { PriorityTrivialIcon } from "./icons/PriorityTrivialIcon.mjs";
|
|
132
|
+
import { ProrityInformationalIcon } from "./icons/ProrityInformationalIcon.mjs";
|
|
129
133
|
import { ScoreIcon } from "./icons/ScoreIcon.mjs";
|
|
130
134
|
import { SironOneIcon } from "./icons/SironOneIcon.mjs";
|
|
131
135
|
import { SkipNextIcon } from "./icons/SkipNextIcon.mjs";
|
|
@@ -184,6 +188,7 @@ export {
|
|
|
184
188
|
ActionEscalateIcon,
|
|
185
189
|
ActionExtandIcon,
|
|
186
190
|
ActionFavoriteIcon,
|
|
191
|
+
ActionInvestigateIcon,
|
|
187
192
|
ActionLinkIcon,
|
|
188
193
|
ActionMarkAsDoneIcon,
|
|
189
194
|
ActionOpenLinkIcon,
|
|
@@ -216,6 +221,7 @@ export {
|
|
|
216
221
|
ChevronRightIcon,
|
|
217
222
|
ChevronUpIcon,
|
|
218
223
|
CommentIcon,
|
|
224
|
+
DateCreationIcon,
|
|
219
225
|
DateDueIcon,
|
|
220
226
|
DateExpireIcon,
|
|
221
227
|
DateLastEditIcon,
|
|
@@ -247,6 +253,7 @@ export {
|
|
|
247
253
|
EntityAccountIcon,
|
|
248
254
|
EntityAlertIcon,
|
|
249
255
|
EntityBankMessageIcon,
|
|
256
|
+
EntityCaseIcon,
|
|
250
257
|
EntityGroupIcon,
|
|
251
258
|
EntityHouseholdIcon,
|
|
252
259
|
EntityIcon,
|
|
@@ -275,7 +282,6 @@ export {
|
|
|
275
282
|
IconContext,
|
|
276
283
|
IconProvider,
|
|
277
284
|
IconSVG,
|
|
278
|
-
ImportantIcon,
|
|
279
285
|
InfoIcon,
|
|
280
286
|
InheritableIcon,
|
|
281
287
|
MenuBurgerIcon,
|
|
@@ -300,7 +306,9 @@ export {
|
|
|
300
306
|
NavToLastIcon,
|
|
301
307
|
NoteIcon,
|
|
302
308
|
OwnerIcon,
|
|
309
|
+
PriorityImportantIcon,
|
|
303
310
|
PriorityTrivialIcon,
|
|
311
|
+
ProrityInformationalIcon,
|
|
304
312
|
ScoreIcon,
|
|
305
313
|
SironOneIcon,
|
|
306
314
|
SkipNextIcon,
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z"/></svg>
|
|
File without changes
|
|
File without changes
|