@imtf/icons 0.8.0 → 0.10.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/AdminIcon.js +1 -1
- package/lib/icons/AdminIcon.mjs +1 -1
- package/lib/icons/DashboardIcon.js +1 -1
- package/lib/icons/DashboardIcon.mjs +1 -1
- package/lib/icons/LogoIcon.js +2 -7
- package/lib/icons/LogoIcon.mjs +2 -7
- package/lib/icons/OpenLinkIcon.d.ts +4 -0
- package/lib/icons/OpenLinkIcon.js +23 -0
- package/lib/icons/OpenLinkIcon.mjs +24 -0
- package/lib/icons/UnfoldLessIcon.d.ts +4 -0
- package/lib/icons/UnfoldLessIcon.js +23 -0
- package/lib/icons/UnfoldLessIcon.mjs +24 -0
- package/lib/icons/UnfoldMoreIcon.d.ts +4 -0
- package/lib/icons/UnfoldMoreIcon.js +23 -0
- package/lib/icons/UnfoldMoreIcon.mjs +24 -0
- package/lib/icons/UploadAndContinueIcon.d.ts +4 -0
- package/lib/icons/UploadAndContinueIcon.js +23 -0
- package/lib/icons/UploadAndContinueIcon.mjs +24 -0
- package/lib/icons/UploadIcon.d.ts +4 -0
- package/lib/icons/UploadIcon.js +23 -0
- package/lib/icons/UploadIcon.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/Admin.svg +3 -2
- package/svg/Dashboard.svg +2 -2
- package/svg/Logo.svg +4 -4
- package/svg/OpenLink.svg +1 -0
- package/svg/UnfoldLess.svg +4 -0
- package/svg/UnfoldMore.svg +4 -0
- package/svg/Upload.svg +1 -0
- package/svg/UploadAndContinue.svg +1 -0
- package/svg/admin.json +1 -1
- package/svg/openLink.json +4 -0
- package/svg/unfoldLess.json +8 -0
- package/svg/unfoldMore.json +8 -0
- package/svg/upload.json +4 -0
- package/svg/uploadAndContinue.json +4 -0
package/lib/icons/AdminIcon.js
CHANGED
|
@@ -17,7 +17,7 @@ const AdminIcon = ({
|
|
|
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.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0
|
|
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: "m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80zm112-260q58 0 99-41t41-99-41-99-99-41q-59 0-99.5 41T342-480t40.5 99 99.5 41" }) });
|
|
21
21
|
};
|
|
22
22
|
const ForwardRef = react.forwardRef(AdminIcon);
|
|
23
23
|
exports.AdminIcon = ForwardRef;
|
package/lib/icons/AdminIcon.mjs
CHANGED
|
@@ -16,7 +16,7 @@ const AdminIcon = ({
|
|
|
16
16
|
...props
|
|
17
17
|
};
|
|
18
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
|
|
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: "m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80zm112-260q58 0 99-41t41-99-41-99-99-41q-59 0-99.5 41T342-480t40.5 99 99.5 41" }) });
|
|
20
20
|
};
|
|
21
21
|
const ForwardRef = forwardRef(AdminIcon);
|
|
22
22
|
export {
|
|
@@ -17,7 +17,7 @@ const DashboardIcon = ({
|
|
|
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.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0
|
|
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: "M520-600v-240h320v240zM120-440v-400h320v400zm400 320v-400h320v400zm-400 0v-240h320v240z" }) });
|
|
21
21
|
};
|
|
22
22
|
const ForwardRef = react.forwardRef(DashboardIcon);
|
|
23
23
|
exports.DashboardIcon = ForwardRef;
|
|
@@ -16,7 +16,7 @@ const DashboardIcon = ({
|
|
|
16
16
|
...props
|
|
17
17
|
};
|
|
18
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
|
|
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: "M520-600v-240h320v240zM120-440v-400h320v400zm400 320v-400h320v400zm-400 0v-240h320v240z" }) });
|
|
20
20
|
};
|
|
21
21
|
const ForwardRef = forwardRef(DashboardIcon);
|
|
22
22
|
export {
|
package/lib/icons/LogoIcon.js
CHANGED
|
@@ -18,13 +18,8 @@ const LogoIcon = ({
|
|
|
18
18
|
};
|
|
19
19
|
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
20
|
return /* @__PURE__ */ jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 99.2 39", width: "1em", height: "1em", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
21
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "
|
|
22
|
-
|
|
23
|
-
} }),
|
|
24
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.2 11.5h3.2v16h-3.2zm16.8 0h3.3l3.4 7 3.5-7h3.3v16H41V17.4l-3 5.9h-.6l-3-5.9v10.1H31zm24.7 2.7v-2.7h10.6v2.6h-3.5v13.4h-3.5V14.2zm21.9 13.3v-16h8.3v2.6h-4.8v4h4.5v2.6h-4.5v6.8z" }),
|
|
25
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0v39h8.9v-2.6H3.2V2.6h5.7V0zm99.2 39V0h-8.8v2.6H96v33.8h-5.6V39z", style: {
|
|
26
|
-
fill: "#d73d54"
|
|
27
|
-
} })
|
|
21
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#1a2a53", d: "M14.2 11.5h3.2v16h-3.2zm16.8 0h3.3l3.4 7 3.5-7h3.3v16H41V17.4l-3 5.9h-.6l-3-5.9v10.1H31zm24.7 2.7v-2.7h10.6v2.6h-3.5v13.4h-3.5V14.2zm21.9 13.3v-16h8.3v2.6h-4.8v4h4.5v2.6h-4.5v6.8z" }),
|
|
22
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#d73d54", d: "M0 0v39h8.9v-2.6H3.2V2.6h5.7V0zm99.2 39V0h-8.8v2.6H96v33.8h-5.6V39z" })
|
|
28
23
|
] });
|
|
29
24
|
};
|
|
30
25
|
const ForwardRef = react.forwardRef(LogoIcon);
|
package/lib/icons/LogoIcon.mjs
CHANGED
|
@@ -17,13 +17,8 @@ const LogoIcon = ({
|
|
|
17
17
|
};
|
|
18
18
|
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
19
|
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 99.2 39", width: "1em", height: "1em", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
20
|
-
/* @__PURE__ */ jsx("path", { d: "
|
|
21
|
-
|
|
22
|
-
} }),
|
|
23
|
-
/* @__PURE__ */ jsx("path", { d: "M14.2 11.5h3.2v16h-3.2zm16.8 0h3.3l3.4 7 3.5-7h3.3v16H41V17.4l-3 5.9h-.6l-3-5.9v10.1H31zm24.7 2.7v-2.7h10.6v2.6h-3.5v13.4h-3.5V14.2zm21.9 13.3v-16h8.3v2.6h-4.8v4h4.5v2.6h-4.5v6.8z" }),
|
|
24
|
-
/* @__PURE__ */ jsx("path", { d: "M0 0v39h8.9v-2.6H3.2V2.6h5.7V0zm99.2 39V0h-8.8v2.6H96v33.8h-5.6V39z", style: {
|
|
25
|
-
fill: "#d73d54"
|
|
26
|
-
} })
|
|
20
|
+
/* @__PURE__ */ jsx("path", { fill: "#1a2a53", d: "M14.2 11.5h3.2v16h-3.2zm16.8 0h3.3l3.4 7 3.5-7h3.3v16H41V17.4l-3 5.9h-.6l-3-5.9v10.1H31zm24.7 2.7v-2.7h10.6v2.6h-3.5v13.4h-3.5V14.2zm21.9 13.3v-16h8.3v2.6h-4.8v4h4.5v2.6h-4.5v6.8z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { fill: "#d73d54", d: "M0 0v39h8.9v-2.6H3.2V2.6h5.7V0zm99.2 39V0h-8.8v2.6H96v33.8h-5.6V39z" })
|
|
27
22
|
] });
|
|
28
23
|
};
|
|
29
24
|
const ForwardRef = forwardRef(LogoIcon);
|
|
@@ -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 OpenLinkIcon };
|
|
@@ -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 OpenLinkIcon = ({
|
|
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: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120zm188-212-56-56 372-372H560v-80h280v280h-80v-144z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(OpenLinkIcon);
|
|
23
|
+
exports.OpenLinkIcon = 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 OpenLinkIcon = ({
|
|
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: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120zm188-212-56-56 372-372H560v-80h280v280h-80v-144z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(OpenLinkIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as OpenLinkIcon
|
|
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 UnfoldLessIcon };
|
|
@@ -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 UnfoldLessIcon = ({
|
|
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: "m356-160-56-56 180-180 180 180-56 56-124-124zm124-404L300-744l56-56 124 124 124-124 56 56z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(UnfoldLessIcon);
|
|
23
|
+
exports.UnfoldLessIcon = 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 UnfoldLessIcon = ({
|
|
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: "m356-160-56-56 180-180 180 180-56 56-124-124zm124-404L300-744l56-56 124 124 124-124 56 56z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(UnfoldLessIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as UnfoldLessIcon
|
|
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 UnfoldMoreIcon };
|
|
@@ -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 UnfoldMoreIcon = ({
|
|
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: "M480-120 300-300l58-58 122 122 122-122 58 58zM358-598l-58-58 180-180 180 180-58 58-122-122z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(UnfoldMoreIcon);
|
|
23
|
+
exports.UnfoldMoreIcon = 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 UnfoldMoreIcon = ({
|
|
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: "M480-120 300-300l58-58 122 122 122-122 58 58zM358-598l-58-58 180-180 180 180-58 58-122-122z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(UnfoldMoreIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as UnfoldMoreIcon
|
|
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 UploadAndContinueIcon };
|
|
@@ -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 UploadAndContinueIcon = ({
|
|
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: "M320-200v-560l440 280z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(UploadAndContinueIcon);
|
|
23
|
+
exports.UploadAndContinueIcon = 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 UploadAndContinueIcon = ({
|
|
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: "M320-200v-560l440 280z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(UploadAndContinueIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as UploadAndContinueIcon
|
|
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 UploadIcon };
|
|
@@ -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 UploadIcon = ({
|
|
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: "M440-200h80v-167l64 64 56-57-160-160-160 160 57 56 63-63zM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80zm280-520v-200H240v640h480v-440zM240-800v200zv640z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(UploadIcon);
|
|
23
|
+
exports.UploadIcon = 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 UploadIcon = ({
|
|
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: "M440-200h80v-167l64 64 56-57-160-160-160 160 57 56 63-63zM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80zm280-520v-200H240v640h480v-440zM240-800v200zv640z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(UploadIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as UploadIcon
|
|
24
|
+
};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ export { NaturalPersonIcon } from "./NaturalPersonIcon";
|
|
|
77
77
|
export { NotFoundIcon } from "./NotFoundIcon";
|
|
78
78
|
export { NotificationIcon } from "./NotificationIcon";
|
|
79
79
|
export { NotificationsOutlineIcon } from "./NotificationsOutlineIcon";
|
|
80
|
+
export { OpenLinkIcon } from "./OpenLinkIcon";
|
|
80
81
|
export { OutgoingIcon } from "./OutgoingIcon";
|
|
81
82
|
export { PassivatedIcon } from "./PassivatedIcon";
|
|
82
83
|
export { PassiveOriginArchiveIcon } from "./PassiveOriginArchiveIcon";
|
|
@@ -109,7 +110,11 @@ export { TaskApprovedIcon } from "./TaskApprovedIcon";
|
|
|
109
110
|
export { TaskRejectedIcon } from "./TaskRejectedIcon";
|
|
110
111
|
export { TransactionsSanctionsScreeningIcon } from "./TransactionsSanctionsScreeningIcon";
|
|
111
112
|
export { TypesIcon } from "./TypesIcon";
|
|
113
|
+
export { UnfoldLessIcon } from "./UnfoldLessIcon";
|
|
114
|
+
export { UnfoldMoreIcon } from "./UnfoldMoreIcon";
|
|
112
115
|
export { UpdateIcon } from "./UpdateIcon";
|
|
116
|
+
export { UploadIcon } from "./UploadIcon";
|
|
117
|
+
export { UploadAndContinueIcon } from "./UploadAndContinueIcon";
|
|
113
118
|
export { ViewTreeIcon } from "./ViewTreeIcon";
|
|
114
119
|
export { WarningIcon } from "./WarningIcon";
|
|
115
120
|
export { WorkbenchIcon } from "./WorkbenchIcon";
|
package/lib/index.js
CHANGED
|
@@ -81,6 +81,7 @@ const NaturalPersonIcon = require("./icons/NaturalPersonIcon.js");
|
|
|
81
81
|
const NotFoundIcon = require("./icons/NotFoundIcon.js");
|
|
82
82
|
const NotificationIcon = require("./icons/NotificationIcon.js");
|
|
83
83
|
const NotificationsOutlineIcon = require("./icons/NotificationsOutlineIcon.js");
|
|
84
|
+
const OpenLinkIcon = require("./icons/OpenLinkIcon.js");
|
|
84
85
|
const OutgoingIcon = require("./icons/OutgoingIcon.js");
|
|
85
86
|
const PassivatedIcon = require("./icons/PassivatedIcon.js");
|
|
86
87
|
const PassiveOriginArchiveIcon = require("./icons/PassiveOriginArchiveIcon.js");
|
|
@@ -113,7 +114,11 @@ const TaskApprovedIcon = require("./icons/TaskApprovedIcon.js");
|
|
|
113
114
|
const TaskRejectedIcon = require("./icons/TaskRejectedIcon.js");
|
|
114
115
|
const TransactionsSanctionsScreeningIcon = require("./icons/TransactionsSanctionsScreeningIcon.js");
|
|
115
116
|
const TypesIcon = require("./icons/TypesIcon.js");
|
|
117
|
+
const UnfoldLessIcon = require("./icons/UnfoldLessIcon.js");
|
|
118
|
+
const UnfoldMoreIcon = require("./icons/UnfoldMoreIcon.js");
|
|
116
119
|
const UpdateIcon = require("./icons/UpdateIcon.js");
|
|
120
|
+
const UploadIcon = require("./icons/UploadIcon.js");
|
|
121
|
+
const UploadAndContinueIcon = require("./icons/UploadAndContinueIcon.js");
|
|
117
122
|
const ViewTreeIcon = require("./icons/ViewTreeIcon.js");
|
|
118
123
|
const WarningIcon = require("./icons/WarningIcon.js");
|
|
119
124
|
const WorkbenchIcon = require("./icons/WorkbenchIcon.js");
|
|
@@ -202,6 +207,7 @@ exports.NaturalPersonIcon = NaturalPersonIcon.NaturalPersonIcon;
|
|
|
202
207
|
exports.NotFoundIcon = NotFoundIcon.NotFoundIcon;
|
|
203
208
|
exports.NotificationIcon = NotificationIcon.NotificationIcon;
|
|
204
209
|
exports.NotificationsOutlineIcon = NotificationsOutlineIcon.NotificationsOutlineIcon;
|
|
210
|
+
exports.OpenLinkIcon = OpenLinkIcon.OpenLinkIcon;
|
|
205
211
|
exports.OutgoingIcon = OutgoingIcon.OutgoingIcon;
|
|
206
212
|
exports.PassivatedIcon = PassivatedIcon.PassivatedIcon;
|
|
207
213
|
exports.PassiveOriginArchiveIcon = PassiveOriginArchiveIcon.PassiveOriginArchiveIcon;
|
|
@@ -234,7 +240,11 @@ exports.TaskApprovedIcon = TaskApprovedIcon.TaskApprovedIcon;
|
|
|
234
240
|
exports.TaskRejectedIcon = TaskRejectedIcon.TaskRejectedIcon;
|
|
235
241
|
exports.TransactionsSanctionsScreeningIcon = TransactionsSanctionsScreeningIcon.TransactionsSanctionsScreeningIcon;
|
|
236
242
|
exports.TypesIcon = TypesIcon.TypesIcon;
|
|
243
|
+
exports.UnfoldLessIcon = UnfoldLessIcon.UnfoldLessIcon;
|
|
244
|
+
exports.UnfoldMoreIcon = UnfoldMoreIcon.UnfoldMoreIcon;
|
|
237
245
|
exports.UpdateIcon = UpdateIcon.UpdateIcon;
|
|
246
|
+
exports.UploadIcon = UploadIcon.UploadIcon;
|
|
247
|
+
exports.UploadAndContinueIcon = UploadAndContinueIcon.UploadAndContinueIcon;
|
|
238
248
|
exports.ViewTreeIcon = ViewTreeIcon.ViewTreeIcon;
|
|
239
249
|
exports.WarningIcon = WarningIcon.WarningIcon;
|
|
240
250
|
exports.WorkbenchIcon = WorkbenchIcon.WorkbenchIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -80,6 +80,7 @@ import { NaturalPersonIcon } from "./icons/NaturalPersonIcon.mjs";
|
|
|
80
80
|
import { NotFoundIcon } from "./icons/NotFoundIcon.mjs";
|
|
81
81
|
import { NotificationIcon } from "./icons/NotificationIcon.mjs";
|
|
82
82
|
import { NotificationsOutlineIcon } from "./icons/NotificationsOutlineIcon.mjs";
|
|
83
|
+
import { OpenLinkIcon } from "./icons/OpenLinkIcon.mjs";
|
|
83
84
|
import { OutgoingIcon } from "./icons/OutgoingIcon.mjs";
|
|
84
85
|
import { PassivatedIcon } from "./icons/PassivatedIcon.mjs";
|
|
85
86
|
import { PassiveOriginArchiveIcon } from "./icons/PassiveOriginArchiveIcon.mjs";
|
|
@@ -112,7 +113,11 @@ import { TaskApprovedIcon } from "./icons/TaskApprovedIcon.mjs";
|
|
|
112
113
|
import { TaskRejectedIcon } from "./icons/TaskRejectedIcon.mjs";
|
|
113
114
|
import { TransactionsSanctionsScreeningIcon } from "./icons/TransactionsSanctionsScreeningIcon.mjs";
|
|
114
115
|
import { TypesIcon } from "./icons/TypesIcon.mjs";
|
|
116
|
+
import { UnfoldLessIcon } from "./icons/UnfoldLessIcon.mjs";
|
|
117
|
+
import { UnfoldMoreIcon } from "./icons/UnfoldMoreIcon.mjs";
|
|
115
118
|
import { UpdateIcon } from "./icons/UpdateIcon.mjs";
|
|
119
|
+
import { UploadIcon } from "./icons/UploadIcon.mjs";
|
|
120
|
+
import { UploadAndContinueIcon } from "./icons/UploadAndContinueIcon.mjs";
|
|
116
121
|
import { ViewTreeIcon } from "./icons/ViewTreeIcon.mjs";
|
|
117
122
|
import { WarningIcon } from "./icons/WarningIcon.mjs";
|
|
118
123
|
import { WorkbenchIcon } from "./icons/WorkbenchIcon.mjs";
|
|
@@ -201,6 +206,7 @@ export {
|
|
|
201
206
|
NotFoundIcon,
|
|
202
207
|
NotificationIcon,
|
|
203
208
|
NotificationsOutlineIcon,
|
|
209
|
+
OpenLinkIcon,
|
|
204
210
|
OutgoingIcon,
|
|
205
211
|
PassivatedIcon,
|
|
206
212
|
PassiveOriginArchiveIcon,
|
|
@@ -233,7 +239,11 @@ export {
|
|
|
233
239
|
TaskRejectedIcon,
|
|
234
240
|
TransactionsSanctionsScreeningIcon,
|
|
235
241
|
TypesIcon,
|
|
242
|
+
UnfoldLessIcon,
|
|
243
|
+
UnfoldMoreIcon,
|
|
236
244
|
UpdateIcon,
|
|
245
|
+
UploadAndContinueIcon,
|
|
246
|
+
UploadIcon,
|
|
237
247
|
ViewTreeIcon,
|
|
238
248
|
WarningIcon,
|
|
239
249
|
WorkbenchIcon,
|
package/package.json
CHANGED
package/svg/Admin.svg
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
-
<path
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
|
|
2
|
+
<path
|
|
3
|
+
d="m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80H370Zm112-260q58 0 99-41t41-99q0-58-41-99t-99-41q-59 0-99.5 41T342-480q0 58 40.5 99t99.5 41Z" />
|
|
3
4
|
</svg>
|
package/svg/Dashboard.svg
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
-
<path d="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
|
|
2
|
+
<path d="M520-600v-240h320v240H520ZM120-440v-400h320v400H120Zm400 320v-400h320v400H520Zm-400 0v-240h320v240H120Z" />
|
|
3
3
|
</svg>
|
package/svg/Logo.svg
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
-
<path
|
|
3
|
-
|
|
4
|
-
<path d="M0 0v39h8.9v-2.6H3.2V2.6h5.
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 99.2 39">
|
|
2
|
+
<path fill="#1a2a53"
|
|
3
|
+
d="M14.2 11.5h3.2v16h-3.2zM31 11.5h3.3l3.4 7 3.5-7h3.3v16H41V17.4l-3 5.9h-.6l-3-5.9v10.1H31zM55.7 14.2v-2.7h10.6v2.6h-3.5v13.4h-3.5V14.2h-3.6zM77.6 27.5v-16h8.3v2.6h-4.8v4h4.5v2.6h-4.5v6.8h-3.5z" />
|
|
4
|
+
<path fill="#d73d54" d="M0 0v39h8.9v-2.6H3.2V2.6h5.7V0zM99.2 39V0h-8.8v2.6H96v33.8h-5.6V39z" />
|
|
5
5
|
</svg>
|
package/svg/OpenLink.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120H200Zm188-212-56-56 372-372H560v-80h280v280h-80v-144L388-332Z"/></svg>
|
package/svg/Upload.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M440-200h80v-167l64 64 56-57-160-160-160 160 57 56 63-63v167ZM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80H240Zm280-520v-200H240v640h480v-440H520ZM240-800v200-200 640-640Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M320-200v-560l440 280-440 280Z"/></svg>
|
package/svg/admin.json
CHANGED
package/svg/upload.json
ADDED