@imtf/icons 0.12.0 → 0.14.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.
- package/lib/icons/AttachmentsIcon.d.ts +4 -0
- package/lib/icons/AttachmentsIcon.js +23 -0
- package/lib/icons/AttachmentsIcon.mjs +24 -0
- package/lib/icons/CommentIcon.js +1 -4
- package/lib/icons/CommentIcon.mjs +2 -5
- package/lib/icons/DecisionIcon.d.ts +4 -0
- package/lib/icons/DecisionIcon.js +23 -0
- package/lib/icons/DecisionIcon.mjs +24 -0
- package/lib/icons/DockToRightIcon.d.ts +4 -0
- package/lib/icons/DockToRightIcon.js +23 -0
- package/lib/icons/DockToRightIcon.mjs +24 -0
- package/lib/icons/NewTagIcon.d.ts +4 -0
- package/lib/icons/NewTagIcon.js +23 -0
- package/lib/icons/NewTagIcon.mjs +24 -0
- package/lib/icons/NewsIcon.d.ts +4 -0
- package/lib/icons/NewsIcon.js +23 -0
- package/lib/icons/NewsIcon.mjs +24 -0
- package/lib/icons/TagIcon.d.ts +4 -0
- package/lib/icons/TagIcon.js +23 -0
- package/lib/icons/TagIcon.mjs +24 -0
- package/lib/icons/TaskFilledIcon.d.ts +4 -0
- package/lib/icons/TaskFilledIcon.js +23 -0
- package/lib/icons/TaskFilledIcon.mjs +24 -0
- package/lib/icons/index.d.ts +7 -0
- package/lib/index.js +14 -0
- package/lib/index.mjs +14 -0
- package/package.json +1 -1
- package/svg/Attachments.svg +1 -0
- package/svg/Comment.svg +1 -4
- package/svg/Decision.svg +1 -0
- package/svg/DockToRight.svg +1 -0
- package/svg/NewTag.svg +4 -0
- package/svg/News.svg +1 -0
- package/svg/Tag.svg +4 -0
- package/svg/TaskFilled.svg +1 -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 AttachmentsIcon };
|
|
@@ -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 AttachmentsIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M200-160q-33 0-56.5-23.5T120-240v-560q0-33 23.5-56.5T200-880h560q33 0 56.5 23.5T840-800v283q-10-2-19.5-2.5T800-520H560q-37 0-70.5 10.5T427-480H280v160h43q-2 10-2.5 19.5T320-280q0 32 8 62.5t24 57.5zm80-400h160v-160H280zm280 440q-66 0-113-47t-47-113 47-113 113-47h80v80h-80q-33 0-56.5 23.5T480-280t23.5 56.5T560-200h80v80zm-40-440h160v-160H520zm40 320v-80h240v80zm160 120v-80h80q33 0 56.5-23.5T880-280t-23.5-56.5T800-360h-80v-80h80q66 0 113 46.5T960-280q0 66-47 113t-113 47z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(AttachmentsIcon);
|
|
23
|
+
exports.AttachmentsIcon = 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 AttachmentsIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M200-160q-33 0-56.5-23.5T120-240v-560q0-33 23.5-56.5T200-880h560q33 0 56.5 23.5T840-800v283q-10-2-19.5-2.5T800-520H560q-37 0-70.5 10.5T427-480H280v160h43q-2 10-2.5 19.5T320-280q0 32 8 62.5t24 57.5zm80-400h160v-160H280zm280 440q-66 0-113-47t-47-113 47-113 113-47h80v80h-80q-33 0-56.5 23.5T480-280t23.5 56.5T560-200h80v80zm-40-440h160v-160H520zm40 320v-80h240v80zm160 120v-80h80q33 0 56.5-23.5T880-280t-23.5-56.5T800-360h-80v-80h80q66 0 113 46.5T960-280q0 66-47 113t-113 47z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(AttachmentsIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as AttachmentsIcon
|
|
24
|
+
};
|
package/lib/icons/CommentIcon.js
CHANGED
|
@@ -17,10 +17,7 @@ const CommentIcon = ({
|
|
|
17
17
|
...props
|
|
18
18
|
};
|
|
19
19
|
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
21
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.563 0H3.437A3.44 3.44 0 0 0 0 3.437v11.092a3.44 3.44 0 0 0 3.425 3.437V23l7.234-5.034h10.904A3.44 3.44 0 0 0 25 14.53V3.437A3.44 3.44 0 0 0 21.563 0m1.972 14.53a1.974 1.974 0 0 1-1.972 1.972H10.199l-5.31 3.694v-3.694H3.438a1.974 1.974 0 0 1-1.972-1.973V3.437c0-1.088.885-1.972 1.972-1.972h18.126c1.087 0 1.972.884 1.972 1.972v11.092z" }),
|
|
22
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.691 5.176H18.31V6.64H6.69zm0 3.124H18.31v1.466H6.69zm0 3.126H18.31v1.465H6.69z" })
|
|
23
|
-
] });
|
|
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: "M240-400h480v-80H240zm0-120h480v-80H240zm0-120h480v-80H240zm-80 400q-33 0-56.5-23.5T80-320v-480q0-33 23.5-56.5T160-880h640q33 0 56.5 23.5T880-800v720L720-240z" }) });
|
|
24
21
|
};
|
|
25
22
|
const ForwardRef = react.forwardRef(CommentIcon);
|
|
26
23
|
exports.CommentIcon = ForwardRef;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
2
|
+
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";
|
|
@@ -16,10 +16,7 @@ const CommentIcon = ({
|
|
|
16
16
|
...props
|
|
17
17
|
};
|
|
18
18
|
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
|
-
return /* @__PURE__ */
|
|
20
|
-
/* @__PURE__ */ jsx("path", { d: "M21.563 0H3.437A3.44 3.44 0 0 0 0 3.437v11.092a3.44 3.44 0 0 0 3.425 3.437V23l7.234-5.034h10.904A3.44 3.44 0 0 0 25 14.53V3.437A3.44 3.44 0 0 0 21.563 0m1.972 14.53a1.974 1.974 0 0 1-1.972 1.972H10.199l-5.31 3.694v-3.694H3.438a1.974 1.974 0 0 1-1.972-1.973V3.437c0-1.088.885-1.972 1.972-1.972h18.126c1.087 0 1.972.884 1.972 1.972v11.092z" }),
|
|
21
|
-
/* @__PURE__ */ jsx("path", { d: "M6.691 5.176H18.31V6.64H6.69zm0 3.124H18.31v1.466H6.69zm0 3.126H18.31v1.465H6.69z" })
|
|
22
|
-
] });
|
|
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: "M240-400h480v-80H240zm0-120h480v-80H240zm0-120h480v-80H240zm-80 400q-33 0-56.5-23.5T80-320v-480q0-33 23.5-56.5T160-880h640q33 0 56.5 23.5T880-800v720L720-240z" }) });
|
|
23
20
|
};
|
|
24
21
|
const ForwardRef = forwardRef(CommentIcon);
|
|
25
22
|
export {
|
|
@@ -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 DecisionIcon };
|
|
@@ -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 DecisionIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M80-120v-80h360v-447q-26-9-45-28t-28-45H240l120 280q0 50-41 85t-99 35-99-35-41-85l120-280h-80v-80h247q12-35 43-57.5t70-22.5 70 22.5 43 57.5h247v80h-80l120 280q0 50-41 85t-99 35-99-35-41-85l120-280H593q-9 26-28 45t-45 28v447h360v80zm585-320h150l-75-174zm-520 0h150l-75-174zm335-280q17 0 28.5-11.5T520-760t-11.5-28.5T480-800t-28.5 11.5T440-760t11.5 28.5T480-720" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(DecisionIcon);
|
|
23
|
+
exports.DecisionIcon = 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 DecisionIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M80-120v-80h360v-447q-26-9-45-28t-28-45H240l120 280q0 50-41 85t-99 35-99-35-41-85l120-280h-80v-80h247q12-35 43-57.5t70-22.5 70 22.5 43 57.5h247v80h-80l120 280q0 50-41 85t-99 35-99-35-41-85l120-280H593q-9 26-28 45t-45 28v447h360v80zm585-320h150l-75-174zm-520 0h150l-75-174zm335-280q17 0 28.5-11.5T520-760t-11.5-28.5T480-800t-28.5 11.5T440-760t11.5 28.5T480-720" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(DecisionIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as DecisionIcon
|
|
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 DockToRightIcon };
|
|
@@ -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 DockToRightIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120zm440-80h120v-560H640zm-80 0v-560H200v560zm80 0h120z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(DockToRightIcon);
|
|
23
|
+
exports.DockToRightIcon = 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 DockToRightIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120zm440-80h120v-560H640zm-80 0v-560H200v560zm80 0h120z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(DockToRightIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as DockToRightIcon
|
|
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 NewTagIcon };
|
|
@@ -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 NewTagIcon = ({
|
|
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 -960 960 960", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M448-160q16-27 24-57.5t8-62.5q0-100-70-170t-170-70q-45 0-86 16t-74 45v-261q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5zm-248 40v-120H80v-80h120v-120h80v120h120v80H280v120z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(NewTagIcon);
|
|
23
|
+
exports.NewTagIcon = 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 NewTagIcon = ({
|
|
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 -960 960 960", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M448-160q16-27 24-57.5t8-62.5q0-100-70-170t-170-70q-45 0-86 16t-74 45v-261q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5zm-248 40v-120H80v-80h120v-120h80v120h120v80H280v120z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(NewTagIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as NewTagIcon
|
|
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 NewsIcon };
|
|
@@ -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 NewsIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h440l200 200v440q0 33-23.5 56.5T760-120zm80-160h400v-80H280zm0-160h400v-80H280zm320-160h160L600-760zm-320 0h200v-80H280z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(NewsIcon);
|
|
23
|
+
exports.NewsIcon = 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 NewsIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h440l200 200v440q0 33-23.5 56.5T760-120zm80-160h400v-80H280zm0-160h400v-80H280zm320-160h160L600-760zm-320 0h200v-80H280z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(NewsIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as NewsIcon
|
|
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 TagIcon };
|
|
@@ -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 TagIcon = ({
|
|
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 -960 960 960", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(TagIcon);
|
|
23
|
+
exports.TagIcon = 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 TagIcon = ({
|
|
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 -960 960 960", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(TagIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as TagIcon
|
|
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 TaskFilledIcon };
|
|
@@ -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 TaskFilledIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m438-240 226-226-58-58-169 169-84-84-57 57zM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80zm280-520h200L520-800z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(TaskFilledIcon);
|
|
23
|
+
exports.TaskFilledIcon = 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 TaskFilledIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "m438-240 226-226-58-58-169 169-84-84-57 57zM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80zm280-520h200L520-800z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(TaskFilledIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as TaskFilledIcon
|
|
24
|
+
};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { AlertIcon } from "./AlertIcon";
|
|
|
8
8
|
export { AlertCircleIcon } from "./AlertCircleIcon";
|
|
9
9
|
export { AntiMoneyLaundringIcon } from "./AntiMoneyLaundringIcon";
|
|
10
10
|
export { ArchivedIcon } from "./ArchivedIcon";
|
|
11
|
+
export { AttachmentsIcon } from "./AttachmentsIcon";
|
|
11
12
|
export { BackgroundSearchIcon } from "./BackgroundSearchIcon";
|
|
12
13
|
export { BaseDefaultIcon } from "./BaseDefaultIcon";
|
|
13
14
|
export { BindersIcon } from "./BindersIcon";
|
|
@@ -29,11 +30,13 @@ export { ComposeFilled1Icon } from "./ComposeFilled1Icon";
|
|
|
29
30
|
export { ComposeFilled2Icon } from "./ComposeFilled2Icon";
|
|
30
31
|
export { CustomerIcon } from "./CustomerIcon";
|
|
31
32
|
export { DashboardIcon } from "./DashboardIcon";
|
|
33
|
+
export { DecisionIcon } from "./DecisionIcon";
|
|
32
34
|
export { DefaultIcon } from "./DefaultIcon";
|
|
33
35
|
export { DeleteIcon } from "./DeleteIcon";
|
|
34
36
|
export { DetectIcon } from "./DetectIcon";
|
|
35
37
|
export { DocIcon } from "./DocIcon";
|
|
36
38
|
export { DocLinkIcon } from "./DocLinkIcon";
|
|
39
|
+
export { DockToRightIcon } from "./DockToRightIcon";
|
|
37
40
|
export { DocumentIcon } from "./DocumentIcon";
|
|
38
41
|
export { DossierIcon } from "./DossierIcon";
|
|
39
42
|
export { DownloadIcon } from "./DownloadIcon";
|
|
@@ -76,6 +79,8 @@ export { MenuIcon } from "./MenuIcon";
|
|
|
76
79
|
export { MoreIcon } from "./MoreIcon";
|
|
77
80
|
export { NameScreeningIcon } from "./NameScreeningIcon";
|
|
78
81
|
export { NaturalPersonIcon } from "./NaturalPersonIcon";
|
|
82
|
+
export { NewTagIcon } from "./NewTagIcon";
|
|
83
|
+
export { NewsIcon } from "./NewsIcon";
|
|
79
84
|
export { NotFoundIcon } from "./NotFoundIcon";
|
|
80
85
|
export { NotificationIcon } from "./NotificationIcon";
|
|
81
86
|
export { NotificationsOutlineIcon } from "./NotificationsOutlineIcon";
|
|
@@ -106,9 +111,11 @@ export { StarIcon } from "./StarIcon";
|
|
|
106
111
|
export { StarBorderIcon } from "./StarBorderIcon";
|
|
107
112
|
export { SystemBotIcon } from "./SystemBotIcon";
|
|
108
113
|
export { TableIcon } from "./TableIcon";
|
|
114
|
+
export { TagIcon } from "./TagIcon";
|
|
109
115
|
export { TaskIcon } from "./TaskIcon";
|
|
110
116
|
export { TaskApprovalTriggeredIcon } from "./TaskApprovalTriggeredIcon";
|
|
111
117
|
export { TaskApprovedIcon } from "./TaskApprovedIcon";
|
|
118
|
+
export { TaskFilledIcon } from "./TaskFilledIcon";
|
|
112
119
|
export { TaskRejectedIcon } from "./TaskRejectedIcon";
|
|
113
120
|
export { TransactionsSanctionsScreeningIcon } from "./TransactionsSanctionsScreeningIcon";
|
|
114
121
|
export { TypesIcon } from "./TypesIcon";
|
package/lib/index.js
CHANGED
|
@@ -12,6 +12,7 @@ const AlertIcon = require("./icons/AlertIcon.js");
|
|
|
12
12
|
const AlertCircleIcon = require("./icons/AlertCircleIcon.js");
|
|
13
13
|
const AntiMoneyLaundringIcon = require("./icons/AntiMoneyLaundringIcon.js");
|
|
14
14
|
const ArchivedIcon = require("./icons/ArchivedIcon.js");
|
|
15
|
+
const AttachmentsIcon = require("./icons/AttachmentsIcon.js");
|
|
15
16
|
const BackgroundSearchIcon = require("./icons/BackgroundSearchIcon.js");
|
|
16
17
|
const BaseDefaultIcon = require("./icons/BaseDefaultIcon.js");
|
|
17
18
|
const BindersIcon = require("./icons/BindersIcon.js");
|
|
@@ -33,11 +34,13 @@ const ComposeFilled1Icon = require("./icons/ComposeFilled1Icon.js");
|
|
|
33
34
|
const ComposeFilled2Icon = require("./icons/ComposeFilled2Icon.js");
|
|
34
35
|
const CustomerIcon = require("./icons/CustomerIcon.js");
|
|
35
36
|
const DashboardIcon = require("./icons/DashboardIcon.js");
|
|
37
|
+
const DecisionIcon = require("./icons/DecisionIcon.js");
|
|
36
38
|
const DefaultIcon = require("./icons/DefaultIcon.js");
|
|
37
39
|
const DeleteIcon = require("./icons/DeleteIcon.js");
|
|
38
40
|
const DetectIcon = require("./icons/DetectIcon.js");
|
|
39
41
|
const DocIcon = require("./icons/DocIcon.js");
|
|
40
42
|
const DocLinkIcon = require("./icons/DocLinkIcon.js");
|
|
43
|
+
const DockToRightIcon = require("./icons/DockToRightIcon.js");
|
|
41
44
|
const DocumentIcon = require("./icons/DocumentIcon.js");
|
|
42
45
|
const DossierIcon = require("./icons/DossierIcon.js");
|
|
43
46
|
const DownloadIcon = require("./icons/DownloadIcon.js");
|
|
@@ -80,6 +83,8 @@ const MenuIcon = require("./icons/MenuIcon.js");
|
|
|
80
83
|
const MoreIcon = require("./icons/MoreIcon.js");
|
|
81
84
|
const NameScreeningIcon = require("./icons/NameScreeningIcon.js");
|
|
82
85
|
const NaturalPersonIcon = require("./icons/NaturalPersonIcon.js");
|
|
86
|
+
const NewTagIcon = require("./icons/NewTagIcon.js");
|
|
87
|
+
const NewsIcon = require("./icons/NewsIcon.js");
|
|
83
88
|
const NotFoundIcon = require("./icons/NotFoundIcon.js");
|
|
84
89
|
const NotificationIcon = require("./icons/NotificationIcon.js");
|
|
85
90
|
const NotificationsOutlineIcon = require("./icons/NotificationsOutlineIcon.js");
|
|
@@ -110,9 +115,11 @@ const StarIcon = require("./icons/StarIcon.js");
|
|
|
110
115
|
const StarBorderIcon = require("./icons/StarBorderIcon.js");
|
|
111
116
|
const SystemBotIcon = require("./icons/SystemBotIcon.js");
|
|
112
117
|
const TableIcon = require("./icons/TableIcon.js");
|
|
118
|
+
const TagIcon = require("./icons/TagIcon.js");
|
|
113
119
|
const TaskIcon = require("./icons/TaskIcon.js");
|
|
114
120
|
const TaskApprovalTriggeredIcon = require("./icons/TaskApprovalTriggeredIcon.js");
|
|
115
121
|
const TaskApprovedIcon = require("./icons/TaskApprovedIcon.js");
|
|
122
|
+
const TaskFilledIcon = require("./icons/TaskFilledIcon.js");
|
|
116
123
|
const TaskRejectedIcon = require("./icons/TaskRejectedIcon.js");
|
|
117
124
|
const TransactionsSanctionsScreeningIcon = require("./icons/TransactionsSanctionsScreeningIcon.js");
|
|
118
125
|
const TypesIcon = require("./icons/TypesIcon.js");
|
|
@@ -140,6 +147,7 @@ exports.AlertIcon = AlertIcon.AlertIcon;
|
|
|
140
147
|
exports.AlertCircleIcon = AlertCircleIcon.AlertCircleIcon;
|
|
141
148
|
exports.AntiMoneyLaundringIcon = AntiMoneyLaundringIcon.AntiMoneyLaundringIcon;
|
|
142
149
|
exports.ArchivedIcon = ArchivedIcon.ArchivedIcon;
|
|
150
|
+
exports.AttachmentsIcon = AttachmentsIcon.AttachmentsIcon;
|
|
143
151
|
exports.BackgroundSearchIcon = BackgroundSearchIcon.BackgroundSearchIcon;
|
|
144
152
|
exports.BaseDefaultIcon = BaseDefaultIcon.BaseDefaultIcon;
|
|
145
153
|
exports.BindersIcon = BindersIcon.BindersIcon;
|
|
@@ -161,11 +169,13 @@ exports.ComposeFilled1Icon = ComposeFilled1Icon.ComposeFilled1Icon;
|
|
|
161
169
|
exports.ComposeFilled2Icon = ComposeFilled2Icon.ComposeFilled2Icon;
|
|
162
170
|
exports.CustomerIcon = CustomerIcon.CustomerIcon;
|
|
163
171
|
exports.DashboardIcon = DashboardIcon.DashboardIcon;
|
|
172
|
+
exports.DecisionIcon = DecisionIcon.DecisionIcon;
|
|
164
173
|
exports.DefaultIcon = DefaultIcon.DefaultIcon;
|
|
165
174
|
exports.DeleteIcon = DeleteIcon.DeleteIcon;
|
|
166
175
|
exports.DetectIcon = DetectIcon.DetectIcon;
|
|
167
176
|
exports.DocIcon = DocIcon.DocIcon;
|
|
168
177
|
exports.DocLinkIcon = DocLinkIcon.DocLinkIcon;
|
|
178
|
+
exports.DockToRightIcon = DockToRightIcon.DockToRightIcon;
|
|
169
179
|
exports.DocumentIcon = DocumentIcon.DocumentIcon;
|
|
170
180
|
exports.DossierIcon = DossierIcon.DossierIcon;
|
|
171
181
|
exports.DownloadIcon = DownloadIcon.DownloadIcon;
|
|
@@ -208,6 +218,8 @@ exports.MenuIcon = MenuIcon.MenuIcon;
|
|
|
208
218
|
exports.MoreIcon = MoreIcon.MoreIcon;
|
|
209
219
|
exports.NameScreeningIcon = NameScreeningIcon.NameScreeningIcon;
|
|
210
220
|
exports.NaturalPersonIcon = NaturalPersonIcon.NaturalPersonIcon;
|
|
221
|
+
exports.NewTagIcon = NewTagIcon.NewTagIcon;
|
|
222
|
+
exports.NewsIcon = NewsIcon.NewsIcon;
|
|
211
223
|
exports.NotFoundIcon = NotFoundIcon.NotFoundIcon;
|
|
212
224
|
exports.NotificationIcon = NotificationIcon.NotificationIcon;
|
|
213
225
|
exports.NotificationsOutlineIcon = NotificationsOutlineIcon.NotificationsOutlineIcon;
|
|
@@ -238,9 +250,11 @@ exports.StarIcon = StarIcon.StarIcon;
|
|
|
238
250
|
exports.StarBorderIcon = StarBorderIcon.StarBorderIcon;
|
|
239
251
|
exports.SystemBotIcon = SystemBotIcon.SystemBotIcon;
|
|
240
252
|
exports.TableIcon = TableIcon.TableIcon;
|
|
253
|
+
exports.TagIcon = TagIcon.TagIcon;
|
|
241
254
|
exports.TaskIcon = TaskIcon.TaskIcon;
|
|
242
255
|
exports.TaskApprovalTriggeredIcon = TaskApprovalTriggeredIcon.TaskApprovalTriggeredIcon;
|
|
243
256
|
exports.TaskApprovedIcon = TaskApprovedIcon.TaskApprovedIcon;
|
|
257
|
+
exports.TaskFilledIcon = TaskFilledIcon.TaskFilledIcon;
|
|
244
258
|
exports.TaskRejectedIcon = TaskRejectedIcon.TaskRejectedIcon;
|
|
245
259
|
exports.TransactionsSanctionsScreeningIcon = TransactionsSanctionsScreeningIcon.TransactionsSanctionsScreeningIcon;
|
|
246
260
|
exports.TypesIcon = TypesIcon.TypesIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -11,6 +11,7 @@ import { AlertIcon } from "./icons/AlertIcon.mjs";
|
|
|
11
11
|
import { AlertCircleIcon } from "./icons/AlertCircleIcon.mjs";
|
|
12
12
|
import { AntiMoneyLaundringIcon } from "./icons/AntiMoneyLaundringIcon.mjs";
|
|
13
13
|
import { ArchivedIcon } from "./icons/ArchivedIcon.mjs";
|
|
14
|
+
import { AttachmentsIcon } from "./icons/AttachmentsIcon.mjs";
|
|
14
15
|
import { BackgroundSearchIcon } from "./icons/BackgroundSearchIcon.mjs";
|
|
15
16
|
import { BaseDefaultIcon } from "./icons/BaseDefaultIcon.mjs";
|
|
16
17
|
import { BindersIcon } from "./icons/BindersIcon.mjs";
|
|
@@ -32,11 +33,13 @@ import { ComposeFilled1Icon } from "./icons/ComposeFilled1Icon.mjs";
|
|
|
32
33
|
import { ComposeFilled2Icon } from "./icons/ComposeFilled2Icon.mjs";
|
|
33
34
|
import { CustomerIcon } from "./icons/CustomerIcon.mjs";
|
|
34
35
|
import { DashboardIcon } from "./icons/DashboardIcon.mjs";
|
|
36
|
+
import { DecisionIcon } from "./icons/DecisionIcon.mjs";
|
|
35
37
|
import { DefaultIcon } from "./icons/DefaultIcon.mjs";
|
|
36
38
|
import { DeleteIcon } from "./icons/DeleteIcon.mjs";
|
|
37
39
|
import { DetectIcon } from "./icons/DetectIcon.mjs";
|
|
38
40
|
import { DocIcon } from "./icons/DocIcon.mjs";
|
|
39
41
|
import { DocLinkIcon } from "./icons/DocLinkIcon.mjs";
|
|
42
|
+
import { DockToRightIcon } from "./icons/DockToRightIcon.mjs";
|
|
40
43
|
import { DocumentIcon } from "./icons/DocumentIcon.mjs";
|
|
41
44
|
import { DossierIcon } from "./icons/DossierIcon.mjs";
|
|
42
45
|
import { DownloadIcon } from "./icons/DownloadIcon.mjs";
|
|
@@ -79,6 +82,8 @@ import { MenuIcon } from "./icons/MenuIcon.mjs";
|
|
|
79
82
|
import { MoreIcon } from "./icons/MoreIcon.mjs";
|
|
80
83
|
import { NameScreeningIcon } from "./icons/NameScreeningIcon.mjs";
|
|
81
84
|
import { NaturalPersonIcon } from "./icons/NaturalPersonIcon.mjs";
|
|
85
|
+
import { NewTagIcon } from "./icons/NewTagIcon.mjs";
|
|
86
|
+
import { NewsIcon } from "./icons/NewsIcon.mjs";
|
|
82
87
|
import { NotFoundIcon } from "./icons/NotFoundIcon.mjs";
|
|
83
88
|
import { NotificationIcon } from "./icons/NotificationIcon.mjs";
|
|
84
89
|
import { NotificationsOutlineIcon } from "./icons/NotificationsOutlineIcon.mjs";
|
|
@@ -109,9 +114,11 @@ import { StarIcon } from "./icons/StarIcon.mjs";
|
|
|
109
114
|
import { StarBorderIcon } from "./icons/StarBorderIcon.mjs";
|
|
110
115
|
import { SystemBotIcon } from "./icons/SystemBotIcon.mjs";
|
|
111
116
|
import { TableIcon } from "./icons/TableIcon.mjs";
|
|
117
|
+
import { TagIcon } from "./icons/TagIcon.mjs";
|
|
112
118
|
import { TaskIcon } from "./icons/TaskIcon.mjs";
|
|
113
119
|
import { TaskApprovalTriggeredIcon } from "./icons/TaskApprovalTriggeredIcon.mjs";
|
|
114
120
|
import { TaskApprovedIcon } from "./icons/TaskApprovedIcon.mjs";
|
|
121
|
+
import { TaskFilledIcon } from "./icons/TaskFilledIcon.mjs";
|
|
115
122
|
import { TaskRejectedIcon } from "./icons/TaskRejectedIcon.mjs";
|
|
116
123
|
import { TransactionsSanctionsScreeningIcon } from "./icons/TransactionsSanctionsScreeningIcon.mjs";
|
|
117
124
|
import { TypesIcon } from "./icons/TypesIcon.mjs";
|
|
@@ -136,6 +143,7 @@ export {
|
|
|
136
143
|
AlertIcon,
|
|
137
144
|
AntiMoneyLaundringIcon,
|
|
138
145
|
ArchivedIcon,
|
|
146
|
+
AttachmentsIcon,
|
|
139
147
|
BackgroundSearchIcon,
|
|
140
148
|
BaseDefaultIcon,
|
|
141
149
|
BindersIcon,
|
|
@@ -157,11 +165,13 @@ export {
|
|
|
157
165
|
ComposeFilled2Icon,
|
|
158
166
|
CustomerIcon,
|
|
159
167
|
DashboardIcon,
|
|
168
|
+
DecisionIcon,
|
|
160
169
|
DefaultIcon,
|
|
161
170
|
DeleteIcon,
|
|
162
171
|
DetectIcon,
|
|
163
172
|
DocIcon,
|
|
164
173
|
DocLinkIcon,
|
|
174
|
+
DockToRightIcon,
|
|
165
175
|
DocumentIcon,
|
|
166
176
|
DossierIcon,
|
|
167
177
|
DownloadIcon,
|
|
@@ -207,6 +217,8 @@ export {
|
|
|
207
217
|
MoreIcon,
|
|
208
218
|
NameScreeningIcon,
|
|
209
219
|
NaturalPersonIcon,
|
|
220
|
+
NewTagIcon,
|
|
221
|
+
NewsIcon,
|
|
210
222
|
NotFoundIcon,
|
|
211
223
|
NotificationIcon,
|
|
212
224
|
NotificationsOutlineIcon,
|
|
@@ -237,8 +249,10 @@ export {
|
|
|
237
249
|
StarIcon,
|
|
238
250
|
SystemBotIcon,
|
|
239
251
|
TableIcon,
|
|
252
|
+
TagIcon,
|
|
240
253
|
TaskApprovalTriggeredIcon,
|
|
241
254
|
TaskApprovedIcon,
|
|
255
|
+
TaskFilledIcon,
|
|
242
256
|
TaskIcon,
|
|
243
257
|
TaskRejectedIcon,
|
|
244
258
|
TransactionsSanctionsScreeningIcon,
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#1f1f1f"><path d="M200-160q-33 0-56.5-23.5T120-240v-560q0-33 23.5-56.5T200-880h560q33 0 56.5 23.5T840-800v283q-10-2-19.5-2.5T800-520H560q-37 0-70.5 10.5T427-480H280v160h43q-2 10-2.5 19.5T320-280q0 32 8 62.5t24 57.5H200Zm80-400h160v-160H280v160Zm280 440q-66 0-113-47t-47-113q0-66 47-113t113-47h80v80h-80q-33 0-56.5 23.5T480-280q0 33 23.5 56.5T560-200h80v80h-80Zm-40-440h160v-160H520v160Zm40 320v-80h240v80H560Zm160 120v-80h80q33 0 56.5-23.5T880-280q0-33-23.5-56.5T800-360h-80v-80h80q66 0 113 46.5T960-280q0 66-47 113t-113 47h-80Z"/></svg>
|
package/svg/Comment.svg
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
<path d="M21.563 0H3.437A3.44 3.44 0 000 3.437v11.092a3.44 3.44 0 003.425 3.437V23l7.234-5.034h10.904A3.441 3.441 0 0025 14.53V3.437A3.44 3.44 0 0021.563 0zm1.972 14.53a1.974 1.974 0 01-1.972 1.972H10.199l-5.31 3.694v-3.694H3.438a1.974 1.974 0 01-1.972-1.973V3.437c0-1.088.885-1.972 1.972-1.972h18.126c1.087 0 1.972.884 1.972 1.972v11.092z"/>
|
|
3
|
-
<path d="M6.691 5.176H18.31V6.64H6.69zM6.691 8.3H18.31v1.466H6.69zM6.691 11.426H18.31v1.465H6.69z"/>
|
|
4
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#1f1f1f"><path d="M240-400h480v-80H240v80Zm0-120h480v-80H240v80Zm0-120h480v-80H240v80Zm-80 400q-33 0-56.5-23.5T80-320v-480q0-33 23.5-56.5T160-880h640q33 0 56.5 23.5T880-800v720L720-240H160Z"/></svg>
|
package/svg/Decision.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#1f1f1f"><path d="M80-120v-80h360v-447q-26-9-45-28t-28-45H240l120 280q0 50-41 85t-99 35q-58 0-99-35t-41-85l120-280h-80v-80h247q12-35 43-57.5t70-22.5q39 0 70 22.5t43 57.5h247v80h-80l120 280q0 50-41 85t-99 35q-58 0-99-35t-41-85l120-280H593q-9 26-28 45t-45 28v447h360v80H80Zm585-320h150l-75-174-75 174Zm-520 0h150l-75-174-75 174Zm335-280q17 0 28.5-11.5T520-760q0-17-11.5-28.5T480-800q-17 0-28.5 11.5T440-760q0 17 11.5 28.5T480-720Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#1f1f1f"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm440-80h120v-560H640v560Zm-80 0v-560H200v560h360Zm80 0h120-120Z"/></svg>
|
package/svg/NewTag.svg
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
|
|
2
|
+
<path
|
|
3
|
+
d="M448-160q16-27 24-57.5t8-62.5q0-100-70-170t-170-70q-45 0-86 16t-74 45v-261q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H448Zm-248 40v-120H80v-80h120v-120h80v120h120v80H280v120h-80Z" />
|
|
4
|
+
</svg>
|
package/svg/News.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#1f1f1f"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h440l200 200v440q0 33-23.5 56.5T760-120H200Zm80-160h400v-80H280v80Zm0-160h400v-80H280v80Zm320-160h160L600-760v160Zm-320 0h200v-80H280v80Z"/></svg>
|
package/svg/Tag.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#1f1f1f"><path d="m438-240 226-226-58-58-169 169-84-84-57 57 142 142ZM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80H240Zm280-520h200L520-800v200Z"/></svg>
|