@imtf/icons 0.12.0 → 0.13.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/NewsIcon.d.ts +4 -0
- package/lib/icons/NewsIcon.js +23 -0
- package/lib/icons/NewsIcon.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 +5 -0
- package/lib/index.js +10 -0
- package/lib/index.mjs +10 -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/News.svg +1 -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 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 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,7 @@ export { MenuIcon } from "./MenuIcon";
|
|
|
76
79
|
export { MoreIcon } from "./MoreIcon";
|
|
77
80
|
export { NameScreeningIcon } from "./NameScreeningIcon";
|
|
78
81
|
export { NaturalPersonIcon } from "./NaturalPersonIcon";
|
|
82
|
+
export { NewsIcon } from "./NewsIcon";
|
|
79
83
|
export { NotFoundIcon } from "./NotFoundIcon";
|
|
80
84
|
export { NotificationIcon } from "./NotificationIcon";
|
|
81
85
|
export { NotificationsOutlineIcon } from "./NotificationsOutlineIcon";
|
|
@@ -109,6 +113,7 @@ export { TableIcon } from "./TableIcon";
|
|
|
109
113
|
export { TaskIcon } from "./TaskIcon";
|
|
110
114
|
export { TaskApprovalTriggeredIcon } from "./TaskApprovalTriggeredIcon";
|
|
111
115
|
export { TaskApprovedIcon } from "./TaskApprovedIcon";
|
|
116
|
+
export { TaskFilledIcon } from "./TaskFilledIcon";
|
|
112
117
|
export { TaskRejectedIcon } from "./TaskRejectedIcon";
|
|
113
118
|
export { TransactionsSanctionsScreeningIcon } from "./TransactionsSanctionsScreeningIcon";
|
|
114
119
|
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,7 @@ 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 NewsIcon = require("./icons/NewsIcon.js");
|
|
83
87
|
const NotFoundIcon = require("./icons/NotFoundIcon.js");
|
|
84
88
|
const NotificationIcon = require("./icons/NotificationIcon.js");
|
|
85
89
|
const NotificationsOutlineIcon = require("./icons/NotificationsOutlineIcon.js");
|
|
@@ -113,6 +117,7 @@ const TableIcon = require("./icons/TableIcon.js");
|
|
|
113
117
|
const TaskIcon = require("./icons/TaskIcon.js");
|
|
114
118
|
const TaskApprovalTriggeredIcon = require("./icons/TaskApprovalTriggeredIcon.js");
|
|
115
119
|
const TaskApprovedIcon = require("./icons/TaskApprovedIcon.js");
|
|
120
|
+
const TaskFilledIcon = require("./icons/TaskFilledIcon.js");
|
|
116
121
|
const TaskRejectedIcon = require("./icons/TaskRejectedIcon.js");
|
|
117
122
|
const TransactionsSanctionsScreeningIcon = require("./icons/TransactionsSanctionsScreeningIcon.js");
|
|
118
123
|
const TypesIcon = require("./icons/TypesIcon.js");
|
|
@@ -140,6 +145,7 @@ exports.AlertIcon = AlertIcon.AlertIcon;
|
|
|
140
145
|
exports.AlertCircleIcon = AlertCircleIcon.AlertCircleIcon;
|
|
141
146
|
exports.AntiMoneyLaundringIcon = AntiMoneyLaundringIcon.AntiMoneyLaundringIcon;
|
|
142
147
|
exports.ArchivedIcon = ArchivedIcon.ArchivedIcon;
|
|
148
|
+
exports.AttachmentsIcon = AttachmentsIcon.AttachmentsIcon;
|
|
143
149
|
exports.BackgroundSearchIcon = BackgroundSearchIcon.BackgroundSearchIcon;
|
|
144
150
|
exports.BaseDefaultIcon = BaseDefaultIcon.BaseDefaultIcon;
|
|
145
151
|
exports.BindersIcon = BindersIcon.BindersIcon;
|
|
@@ -161,11 +167,13 @@ exports.ComposeFilled1Icon = ComposeFilled1Icon.ComposeFilled1Icon;
|
|
|
161
167
|
exports.ComposeFilled2Icon = ComposeFilled2Icon.ComposeFilled2Icon;
|
|
162
168
|
exports.CustomerIcon = CustomerIcon.CustomerIcon;
|
|
163
169
|
exports.DashboardIcon = DashboardIcon.DashboardIcon;
|
|
170
|
+
exports.DecisionIcon = DecisionIcon.DecisionIcon;
|
|
164
171
|
exports.DefaultIcon = DefaultIcon.DefaultIcon;
|
|
165
172
|
exports.DeleteIcon = DeleteIcon.DeleteIcon;
|
|
166
173
|
exports.DetectIcon = DetectIcon.DetectIcon;
|
|
167
174
|
exports.DocIcon = DocIcon.DocIcon;
|
|
168
175
|
exports.DocLinkIcon = DocLinkIcon.DocLinkIcon;
|
|
176
|
+
exports.DockToRightIcon = DockToRightIcon.DockToRightIcon;
|
|
169
177
|
exports.DocumentIcon = DocumentIcon.DocumentIcon;
|
|
170
178
|
exports.DossierIcon = DossierIcon.DossierIcon;
|
|
171
179
|
exports.DownloadIcon = DownloadIcon.DownloadIcon;
|
|
@@ -208,6 +216,7 @@ exports.MenuIcon = MenuIcon.MenuIcon;
|
|
|
208
216
|
exports.MoreIcon = MoreIcon.MoreIcon;
|
|
209
217
|
exports.NameScreeningIcon = NameScreeningIcon.NameScreeningIcon;
|
|
210
218
|
exports.NaturalPersonIcon = NaturalPersonIcon.NaturalPersonIcon;
|
|
219
|
+
exports.NewsIcon = NewsIcon.NewsIcon;
|
|
211
220
|
exports.NotFoundIcon = NotFoundIcon.NotFoundIcon;
|
|
212
221
|
exports.NotificationIcon = NotificationIcon.NotificationIcon;
|
|
213
222
|
exports.NotificationsOutlineIcon = NotificationsOutlineIcon.NotificationsOutlineIcon;
|
|
@@ -241,6 +250,7 @@ exports.TableIcon = TableIcon.TableIcon;
|
|
|
241
250
|
exports.TaskIcon = TaskIcon.TaskIcon;
|
|
242
251
|
exports.TaskApprovalTriggeredIcon = TaskApprovalTriggeredIcon.TaskApprovalTriggeredIcon;
|
|
243
252
|
exports.TaskApprovedIcon = TaskApprovedIcon.TaskApprovedIcon;
|
|
253
|
+
exports.TaskFilledIcon = TaskFilledIcon.TaskFilledIcon;
|
|
244
254
|
exports.TaskRejectedIcon = TaskRejectedIcon.TaskRejectedIcon;
|
|
245
255
|
exports.TransactionsSanctionsScreeningIcon = TransactionsSanctionsScreeningIcon.TransactionsSanctionsScreeningIcon;
|
|
246
256
|
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,7 @@ 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 { NewsIcon } from "./icons/NewsIcon.mjs";
|
|
82
86
|
import { NotFoundIcon } from "./icons/NotFoundIcon.mjs";
|
|
83
87
|
import { NotificationIcon } from "./icons/NotificationIcon.mjs";
|
|
84
88
|
import { NotificationsOutlineIcon } from "./icons/NotificationsOutlineIcon.mjs";
|
|
@@ -112,6 +116,7 @@ import { TableIcon } from "./icons/TableIcon.mjs";
|
|
|
112
116
|
import { TaskIcon } from "./icons/TaskIcon.mjs";
|
|
113
117
|
import { TaskApprovalTriggeredIcon } from "./icons/TaskApprovalTriggeredIcon.mjs";
|
|
114
118
|
import { TaskApprovedIcon } from "./icons/TaskApprovedIcon.mjs";
|
|
119
|
+
import { TaskFilledIcon } from "./icons/TaskFilledIcon.mjs";
|
|
115
120
|
import { TaskRejectedIcon } from "./icons/TaskRejectedIcon.mjs";
|
|
116
121
|
import { TransactionsSanctionsScreeningIcon } from "./icons/TransactionsSanctionsScreeningIcon.mjs";
|
|
117
122
|
import { TypesIcon } from "./icons/TypesIcon.mjs";
|
|
@@ -136,6 +141,7 @@ export {
|
|
|
136
141
|
AlertIcon,
|
|
137
142
|
AntiMoneyLaundringIcon,
|
|
138
143
|
ArchivedIcon,
|
|
144
|
+
AttachmentsIcon,
|
|
139
145
|
BackgroundSearchIcon,
|
|
140
146
|
BaseDefaultIcon,
|
|
141
147
|
BindersIcon,
|
|
@@ -157,11 +163,13 @@ export {
|
|
|
157
163
|
ComposeFilled2Icon,
|
|
158
164
|
CustomerIcon,
|
|
159
165
|
DashboardIcon,
|
|
166
|
+
DecisionIcon,
|
|
160
167
|
DefaultIcon,
|
|
161
168
|
DeleteIcon,
|
|
162
169
|
DetectIcon,
|
|
163
170
|
DocIcon,
|
|
164
171
|
DocLinkIcon,
|
|
172
|
+
DockToRightIcon,
|
|
165
173
|
DocumentIcon,
|
|
166
174
|
DossierIcon,
|
|
167
175
|
DownloadIcon,
|
|
@@ -207,6 +215,7 @@ export {
|
|
|
207
215
|
MoreIcon,
|
|
208
216
|
NameScreeningIcon,
|
|
209
217
|
NaturalPersonIcon,
|
|
218
|
+
NewsIcon,
|
|
210
219
|
NotFoundIcon,
|
|
211
220
|
NotificationIcon,
|
|
212
221
|
NotificationsOutlineIcon,
|
|
@@ -239,6 +248,7 @@ export {
|
|
|
239
248
|
TableIcon,
|
|
240
249
|
TaskApprovalTriggeredIcon,
|
|
241
250
|
TaskApprovedIcon,
|
|
251
|
+
TaskFilledIcon,
|
|
242
252
|
TaskIcon,
|
|
243
253
|
TaskRejectedIcon,
|
|
244
254
|
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/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>
|
|
@@ -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>
|