@imtf/icons 0.7.4 → 0.9.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/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # Icons
2
+
3
+ ## How to add an icon ?
4
+
5
+ 1. Add the `svg` file of your icon inside [/packages/icons/src/svg](/packages/icons/src/svg) using a camelCase naming.
6
+ 2. Create a `json` file with the same name as your `svg` file (without the .svg extension of course). And use this template:
7
+
8
+ ```json
9
+ {
10
+ "aliases": [], // Array of strings to add key search words in addition to the icon name
11
+ "description": "" // Add a good description that defines what your icon can be used for
12
+ }
13
+ ```
14
+
15
+ 3. Increase [/packages/icons/package.json](/packages/icons/package.json) minor version (e.g 1.0.0 to 1.1.0)
16
+ 4. Run `npm install` at root level
17
+ 5. Run `npm run prepublishOnly` inside [/packages/icons](/packages/icons) to be sure that the new icon can be packaged
@@ -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 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m17.53.58.141.12.135.13a2.7 2.7 0 0 1 .755 2.018l-.071 1.4a1.21 1.21 0 0 0 1.02 1.256l.123.012h.122l1.401-.07a2.71 2.71 0 0 1 1.95 4.717l-1.042.94a1.21 1.21 0 0 0-.17 1.609l.084.103.086.085 1.042.94a2.71 2.71 0 0 1-1.954 4.718l-1.401-.071a1.21 1.21 0 0 0-1.257 1.018l-.012.122v.13l.07 1.405a2.71 2.71 0 0 1-4.708 1.947l-.942-1.042a1.21 1.21 0 0 0-1.603-.173l-.101.082-.093.093-.946 1.042a2.71 2.71 0 0 1-4.712-1.952l.072-1.401a1.21 1.21 0 0 0-1.018-1.256l-.122-.013h-.13l-1.4.07a2.708 2.708 0 0 1-1.958-4.713l1.042-.94a1.21 1.21 0 0 0 .169-1.61l-.083-.102-.088-.087L.89 10.16A2.71 2.71 0 0 1 2.842 5.45l1.402.071a1.21 1.21 0 0 0 1.27-1.147l.002-.061-.069-1.47A2.71 2.71 0 0 1 10.16.892l.942 1.04c.416.463 1.11.529 1.603.173l.102-.083.092-.093.944-1.035A2.71 2.71 0 0 1 17.53.58M14.953 1.9l-.943 1.035a2.71 2.71 0 0 1-4.023.002L9.05 1.901a1.211 1.211 0 0 0-2.104.87l.067 1.395q.009.148 0 .29a2.71 2.71 0 0 1-2.846 2.562l-1.398-.07a1.21 1.21 0 0 0-.87 2.103l1.04.943q.104.094.195.196a2.71 2.71 0 0 1-.195 3.828l-1.041.94a1.208 1.208 0 0 0 .876 2.103l1.405-.07a2.709 2.709 0 0 1 2.84 2.845l-.073 1.395a1.21 1.21 0 0 0 2.103.871l.943-1.039a2.71 2.71 0 0 1 4.024-.002l.938 1.038a1.21 1.21 0 0 0 2.102-.866l-.072-1.405a2.709 2.709 0 0 1 2.844-2.84l1.401.072a1.21 1.21 0 0 0 .873-2.106l-1.041-.94a2.712 2.712 0 0 1 0-4.025l1.041-.94a1.21 1.21 0 0 0-.87-2.106l-1.404.072a2.709 2.709 0 0 1-2.836-2.842l.072-1.401a1.21 1.21 0 0 0-.398-.96l-.102-.083a1.21 1.21 0 0 0-1.609.172M12 6.514a5.487 5.487 0 1 1 0 10.975 5.487 5.487 0 0 1 0-10.975m0 1.5a3.987 3.987 0 1 0 0 7.975 3.987 3.987 0 0 0 0-7.975" }) });
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;
@@ -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 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "m17.53.58.141.12.135.13a2.7 2.7 0 0 1 .755 2.018l-.071 1.4a1.21 1.21 0 0 0 1.02 1.256l.123.012h.122l1.401-.07a2.71 2.71 0 0 1 1.95 4.717l-1.042.94a1.21 1.21 0 0 0-.17 1.609l.084.103.086.085 1.042.94a2.71 2.71 0 0 1-1.954 4.718l-1.401-.071a1.21 1.21 0 0 0-1.257 1.018l-.012.122v.13l.07 1.405a2.71 2.71 0 0 1-4.708 1.947l-.942-1.042a1.21 1.21 0 0 0-1.603-.173l-.101.082-.093.093-.946 1.042a2.71 2.71 0 0 1-4.712-1.952l.072-1.401a1.21 1.21 0 0 0-1.018-1.256l-.122-.013h-.13l-1.4.07a2.708 2.708 0 0 1-1.958-4.713l1.042-.94a1.21 1.21 0 0 0 .169-1.61l-.083-.102-.088-.087L.89 10.16A2.71 2.71 0 0 1 2.842 5.45l1.402.071a1.21 1.21 0 0 0 1.27-1.147l.002-.061-.069-1.47A2.71 2.71 0 0 1 10.16.892l.942 1.04c.416.463 1.11.529 1.603.173l.102-.083.092-.093.944-1.035A2.71 2.71 0 0 1 17.53.58M14.953 1.9l-.943 1.035a2.71 2.71 0 0 1-4.023.002L9.05 1.901a1.211 1.211 0 0 0-2.104.87l.067 1.395q.009.148 0 .29a2.71 2.71 0 0 1-2.846 2.562l-1.398-.07a1.21 1.21 0 0 0-.87 2.103l1.04.943q.104.094.195.196a2.71 2.71 0 0 1-.195 3.828l-1.041.94a1.208 1.208 0 0 0 .876 2.103l1.405-.07a2.709 2.709 0 0 1 2.84 2.845l-.073 1.395a1.21 1.21 0 0 0 2.103.871l.943-1.039a2.71 2.71 0 0 1 4.024-.002l.938 1.038a1.21 1.21 0 0 0 2.102-.866l-.072-1.405a2.709 2.709 0 0 1 2.844-2.84l1.401.072a1.21 1.21 0 0 0 .873-2.106l-1.041-.94a2.712 2.712 0 0 1 0-4.025l1.041-.94a1.21 1.21 0 0 0-.87-2.106l-1.404.072a2.709 2.709 0 0 1-2.836-2.842l.072-1.401a1.21 1.21 0 0 0-.398-.96l-.102-.083a1.21 1.21 0 0 0-1.609.172M12 6.514a5.487 5.487 0 1 1 0 10.975 5.487 5.487 0 0 1 0-10.975m0 1.5a3.987 3.987 0 1 0 0 7.975 3.987 3.987 0 0 0 0-7.975" }) });
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 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21.753.003a2.25 2.25 0 0 1 2.25 2.25v19.5a2.25 2.25 0 0 1-2.25 2.25h-19.5a2.25 2.25 0 0 1-2.25-2.25v-19.5a2.25 2.25 0 0 1 2.25-2.25zm0 1.5h-19.5a.75.75 0 0 0-.75.75v19.5c0 .414.336.75.75.75h19.5a.75.75 0 0 0 .75-.75v-19.5a.75.75 0 0 0-.75-.75m-12 12.75a1.5 1.5 0 0 1 1.5 1.5v2.25a1.5 1.5 0 0 1-1.5 1.5h-3.75a1.5 1.5 0 0 1-1.5-1.5v-2.25a1.5 1.5 0 0 1 1.5-1.5zm8.25-3a1.5 1.5 0 0 1 1.5 1.5v5.25a1.5 1.5 0 0 1-1.5 1.5h-3.75a1.5 1.5 0 0 1-1.5-1.5v-5.25a1.5 1.5 0 0 1 1.5-1.5zm-8.25 4.5h-3.75v2.25h3.75zm8.25-3h-3.75v5.25h3.75zm-8.25-8.25a1.5 1.5 0 0 1 1.5 1.5v5.25a1.5 1.5 0 0 1-1.5 1.5h-3.75a1.5 1.5 0 0 1-1.5-1.5v-5.25a1.5 1.5 0 0 1 1.5-1.5zm0 1.5h-3.75v5.25h3.75zm8.25-1.5a1.5 1.5 0 0 1 1.5 1.5v2.25a1.5 1.5 0 0 1-1.5 1.5h-3.75a1.5 1.5 0 0 1-1.5-1.5v-2.25a1.5 1.5 0 0 1 1.5-1.5zm0 1.5h-3.75v2.25h3.75z" }) });
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 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M21.753.003a2.25 2.25 0 0 1 2.25 2.25v19.5a2.25 2.25 0 0 1-2.25 2.25h-19.5a2.25 2.25 0 0 1-2.25-2.25v-19.5a2.25 2.25 0 0 1 2.25-2.25zm0 1.5h-19.5a.75.75 0 0 0-.75.75v19.5c0 .414.336.75.75.75h19.5a.75.75 0 0 0 .75-.75v-19.5a.75.75 0 0 0-.75-.75m-12 12.75a1.5 1.5 0 0 1 1.5 1.5v2.25a1.5 1.5 0 0 1-1.5 1.5h-3.75a1.5 1.5 0 0 1-1.5-1.5v-2.25a1.5 1.5 0 0 1 1.5-1.5zm8.25-3a1.5 1.5 0 0 1 1.5 1.5v5.25a1.5 1.5 0 0 1-1.5 1.5h-3.75a1.5 1.5 0 0 1-1.5-1.5v-5.25a1.5 1.5 0 0 1 1.5-1.5zm-8.25 4.5h-3.75v2.25h3.75zm8.25-3h-3.75v5.25h3.75zm-8.25-8.25a1.5 1.5 0 0 1 1.5 1.5v5.25a1.5 1.5 0 0 1-1.5 1.5h-3.75a1.5 1.5 0 0 1-1.5-1.5v-5.25a1.5 1.5 0 0 1 1.5-1.5zm0 1.5h-3.75v5.25h3.75zm8.25-1.5a1.5 1.5 0 0 1 1.5 1.5v2.25a1.5 1.5 0 0 1-1.5 1.5h-3.75a1.5 1.5 0 0 1-1.5-1.5v-2.25a1.5 1.5 0 0 1 1.5-1.5zm0 1.5h-3.75v2.25h3.75z" }) });
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 {
@@ -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 ResetSettingsIcon };
@@ -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 ResetSettingsIcon = ({
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: "M520-330v-60h160v60zm60 210v-50h-60v-60h60v-50h60v160zm100-50v-60h160v60zm40-110v-160h60v50h60v60h-60v50zm111-280h-83q-26-88-99-144t-169-56q-117 0-198.5 81.5T200-480q0 72 32.5 132t87.5 98v-110h80v240H160v-80h94q-62-50-98-122.5T120-480q0-75 28.5-140.5t77-114 114-77T480-840q129 0 226.5 79.5T831-560" }) });
21
+ };
22
+ const ForwardRef = react.forwardRef(ResetSettingsIcon);
23
+ exports.ResetSettingsIcon = 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 ResetSettingsIcon = ({
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: "M520-330v-60h160v60zm60 210v-50h-60v-60h60v-50h60v160zm100-50v-60h160v60zm40-110v-160h60v50h60v60h-60v50zm111-280h-83q-26-88-99-144t-169-56q-117 0-198.5 81.5T200-480q0 72 32.5 132t87.5 98v-110h80v240H160v-80h94q-62-50-98-122.5T120-480q0-75 28.5-140.5t77-114 114-77T480-840q129 0 226.5 79.5T831-560" }) });
20
+ };
21
+ const ForwardRef = forwardRef(ResetSettingsIcon);
22
+ export {
23
+ ForwardRef as ResetSettingsIcon
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
+ };
@@ -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";
@@ -89,6 +90,7 @@ export { PreviewIcon } from "./PreviewIcon";
89
90
  export { RefreshIcon } from "./RefreshIcon";
90
91
  export { RegulatoryReportingIcon } from "./RegulatoryReportingIcon";
91
92
  export { RemoveIcon } from "./RemoveIcon";
93
+ export { ResetSettingsIcon } from "./ResetSettingsIcon";
92
94
  export { RiskScoringIcon } from "./RiskScoringIcon";
93
95
  export { RotateRightIcon } from "./RotateRightIcon";
94
96
  export { ScissorsIcon } from "./ScissorsIcon";
@@ -109,6 +111,8 @@ export { TaskRejectedIcon } from "./TaskRejectedIcon";
109
111
  export { TransactionsSanctionsScreeningIcon } from "./TransactionsSanctionsScreeningIcon";
110
112
  export { TypesIcon } from "./TypesIcon";
111
113
  export { UpdateIcon } from "./UpdateIcon";
114
+ export { UploadIcon } from "./UploadIcon";
115
+ export { UploadAndContinueIcon } from "./UploadAndContinueIcon";
112
116
  export { ViewTreeIcon } from "./ViewTreeIcon";
113
117
  export { WarningIcon } from "./WarningIcon";
114
118
  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");
@@ -93,6 +94,7 @@ const PreviewIcon = require("./icons/PreviewIcon.js");
93
94
  const RefreshIcon = require("./icons/RefreshIcon.js");
94
95
  const RegulatoryReportingIcon = require("./icons/RegulatoryReportingIcon.js");
95
96
  const RemoveIcon = require("./icons/RemoveIcon.js");
97
+ const ResetSettingsIcon = require("./icons/ResetSettingsIcon.js");
96
98
  const RiskScoringIcon = require("./icons/RiskScoringIcon.js");
97
99
  const RotateRightIcon = require("./icons/RotateRightIcon.js");
98
100
  const ScissorsIcon = require("./icons/ScissorsIcon.js");
@@ -113,6 +115,8 @@ const TaskRejectedIcon = require("./icons/TaskRejectedIcon.js");
113
115
  const TransactionsSanctionsScreeningIcon = require("./icons/TransactionsSanctionsScreeningIcon.js");
114
116
  const TypesIcon = require("./icons/TypesIcon.js");
115
117
  const UpdateIcon = require("./icons/UpdateIcon.js");
118
+ const UploadIcon = require("./icons/UploadIcon.js");
119
+ const UploadAndContinueIcon = require("./icons/UploadAndContinueIcon.js");
116
120
  const ViewTreeIcon = require("./icons/ViewTreeIcon.js");
117
121
  const WarningIcon = require("./icons/WarningIcon.js");
118
122
  const WorkbenchIcon = require("./icons/WorkbenchIcon.js");
@@ -201,6 +205,7 @@ exports.NaturalPersonIcon = NaturalPersonIcon.NaturalPersonIcon;
201
205
  exports.NotFoundIcon = NotFoundIcon.NotFoundIcon;
202
206
  exports.NotificationIcon = NotificationIcon.NotificationIcon;
203
207
  exports.NotificationsOutlineIcon = NotificationsOutlineIcon.NotificationsOutlineIcon;
208
+ exports.OpenLinkIcon = OpenLinkIcon.OpenLinkIcon;
204
209
  exports.OutgoingIcon = OutgoingIcon.OutgoingIcon;
205
210
  exports.PassivatedIcon = PassivatedIcon.PassivatedIcon;
206
211
  exports.PassiveOriginArchiveIcon = PassiveOriginArchiveIcon.PassiveOriginArchiveIcon;
@@ -213,6 +218,7 @@ exports.PreviewIcon = PreviewIcon.PreviewIcon;
213
218
  exports.RefreshIcon = RefreshIcon.RefreshIcon;
214
219
  exports.RegulatoryReportingIcon = RegulatoryReportingIcon.RegulatoryReportingIcon;
215
220
  exports.RemoveIcon = RemoveIcon.RemoveIcon;
221
+ exports.ResetSettingsIcon = ResetSettingsIcon.ResetSettingsIcon;
216
222
  exports.RiskScoringIcon = RiskScoringIcon.RiskScoringIcon;
217
223
  exports.RotateRightIcon = RotateRightIcon.RotateRightIcon;
218
224
  exports.ScissorsIcon = ScissorsIcon.ScissorsIcon;
@@ -233,6 +239,8 @@ exports.TaskRejectedIcon = TaskRejectedIcon.TaskRejectedIcon;
233
239
  exports.TransactionsSanctionsScreeningIcon = TransactionsSanctionsScreeningIcon.TransactionsSanctionsScreeningIcon;
234
240
  exports.TypesIcon = TypesIcon.TypesIcon;
235
241
  exports.UpdateIcon = UpdateIcon.UpdateIcon;
242
+ exports.UploadIcon = UploadIcon.UploadIcon;
243
+ exports.UploadAndContinueIcon = UploadAndContinueIcon.UploadAndContinueIcon;
236
244
  exports.ViewTreeIcon = ViewTreeIcon.ViewTreeIcon;
237
245
  exports.WarningIcon = WarningIcon.WarningIcon;
238
246
  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";
@@ -92,6 +93,7 @@ import { PreviewIcon } from "./icons/PreviewIcon.mjs";
92
93
  import { RefreshIcon } from "./icons/RefreshIcon.mjs";
93
94
  import { RegulatoryReportingIcon } from "./icons/RegulatoryReportingIcon.mjs";
94
95
  import { RemoveIcon } from "./icons/RemoveIcon.mjs";
96
+ import { ResetSettingsIcon } from "./icons/ResetSettingsIcon.mjs";
95
97
  import { RiskScoringIcon } from "./icons/RiskScoringIcon.mjs";
96
98
  import { RotateRightIcon } from "./icons/RotateRightIcon.mjs";
97
99
  import { ScissorsIcon } from "./icons/ScissorsIcon.mjs";
@@ -112,6 +114,8 @@ import { TaskRejectedIcon } from "./icons/TaskRejectedIcon.mjs";
112
114
  import { TransactionsSanctionsScreeningIcon } from "./icons/TransactionsSanctionsScreeningIcon.mjs";
113
115
  import { TypesIcon } from "./icons/TypesIcon.mjs";
114
116
  import { UpdateIcon } from "./icons/UpdateIcon.mjs";
117
+ import { UploadIcon } from "./icons/UploadIcon.mjs";
118
+ import { UploadAndContinueIcon } from "./icons/UploadAndContinueIcon.mjs";
115
119
  import { ViewTreeIcon } from "./icons/ViewTreeIcon.mjs";
116
120
  import { WarningIcon } from "./icons/WarningIcon.mjs";
117
121
  import { WorkbenchIcon } from "./icons/WorkbenchIcon.mjs";
@@ -200,6 +204,7 @@ export {
200
204
  NotFoundIcon,
201
205
  NotificationIcon,
202
206
  NotificationsOutlineIcon,
207
+ OpenLinkIcon,
203
208
  OutgoingIcon,
204
209
  PassivatedIcon,
205
210
  PassiveOriginArchiveIcon,
@@ -212,6 +217,7 @@ export {
212
217
  RefreshIcon,
213
218
  RegulatoryReportingIcon,
214
219
  RemoveIcon,
220
+ ResetSettingsIcon,
215
221
  RiskScoringIcon,
216
222
  RotateRightIcon,
217
223
  ScissorsIcon,
@@ -232,6 +238,8 @@ export {
232
238
  TransactionsSanctionsScreeningIcon,
233
239
  TypesIcon,
234
240
  UpdateIcon,
241
+ UploadAndContinueIcon,
242
+ UploadIcon,
235
243
  ViewTreeIcon,
236
244
  WarningIcon,
237
245
  WorkbenchIcon,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imtf/icons",
3
3
  "private": false,
4
- "version": "0.7.4",
4
+ "version": "0.9.0",
5
5
  "description": "Library of icons (React components, font and svg)",
6
6
  "type": "module",
7
7
  "main": "./lib/index.js",
package/svg/Admin.svg CHANGED
@@ -1,3 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
- <path d="M17.5293671,0.579933029 L17.6712468,0.699770655 L17.8057444,0.83004335 C18.3236755,1.36754436 18.5989263,2.0972123 18.5606291,2.84783689 L18.4896232,4.24794922 C18.4583459,4.87349515 18.9074932,5.41169067 19.5104492,5.50386064 L19.6329944,5.51624136 L19.7545185,5.51640644 L21.156424,5.44531086 C22.6514173,5.37201332 23.9228605,6.52409832 23.9961851,8.01826166 C24.0363022,8.83028665 23.7097939,9.61739827 23.1061748,10.1628702 L22.0643066,11.1027507 C21.6011158,11.521526 21.5362832,12.2163568 21.8949453,12.7116864 L21.9782927,12.8146016 L22.063694,12.8998751 L23.1064059,13.8405173 C24.2174897,14.8436752 24.3043514,16.5578032 23.3002597,17.6683895 C22.7539507,18.2727871 21.9653548,18.5992947 21.1521631,18.5578053 L19.7506673,18.486729 C19.1260226,18.45434 18.5875658,18.9030659 18.4943951,19.5048411 L18.4818046,19.6271396 L18.4815926,19.756697 L18.5528497,21.1620602 C18.6192469,22.6573797 17.4612846,23.923139 15.96637,23.9895181 C15.1650814,24.0255 14.3890079,23.7043916 13.8436385,23.1089136 L12.9019069,22.0671041 C12.4840706,21.6043144 11.7895468,21.5395126 11.2993503,21.8935492 L11.1976109,21.9758326 L11.1045591,22.0686064 L10.15851,23.1107612 C9.15134887,24.2175317 7.43742563,24.2988211 6.33089649,23.2918796 C5.73476556,22.7496909 5.41103694,21.9698498 5.44722423,21.1588103 L5.51927378,19.7578481 C5.55166276,19.1332035 5.10293683,18.5947467 4.50116162,18.501576 L4.37886313,18.4889854 L4.24930575,18.4887735 L2.84950955,18.5597627 C1.35526222,18.6372422 0.0811999033,17.489816 0.00376379016,15.9963998 C-0.0391548873,15.1823294 0.28653899,14.3922615 0.891380732,13.8455511 L1.93251438,12.9054306 C2.39570524,12.4866553 2.46053775,11.7918245 2.10187569,11.2964949 L2.01852832,11.1935797 L1.9313936,11.1067376 L0.889963625,10.1613473 C-0.21784056,9.15588707 -0.30124586,7.44329825 0.703596006,6.33465067 C1.24735191,5.73555065 2.03148975,5.41052904 2.8416565,5.44937552 L4.24384394,5.52048804 C4.91017433,5.55565548 5.47910482,5.04344615 5.51452234,4.37318568 L5.51622099,4.31181597 L5.44706764,2.8421932 C5.37652607,1.34698848 6.53145064,0.0782824525 8.027398,0.00770612292 C8.83393235,-0.0296462394 9.61523144,0.294225609 10.1597294,0.892760602 L11.1016068,1.93283837 C11.518095,2.39541092 12.2114603,2.46100928 12.7047255,2.10464711 L12.8071886,2.0218161 L12.8992553,1.92948164 L13.8433411,0.893594127 C14.8046911,-0.171183834 16.4189847,-0.295332287 17.5293671,0.579933029 Z M14.9543445,1.90139328 L14.0110523,2.9364005 C13.9485289,3.00587089 13.8820925,3.07230727 13.8117368,3.13576539 C12.7007281,4.13747188 10.9876305,4.04800727 9.9883164,2.93811432 L9.04902534,1.9008943 C8.80632389,1.63410798 8.45725019,1.48940648 8.09743954,1.50606982 C7.42949138,1.53758264 6.91390737,2.10396121 6.94537818,2.77102231 L7.01204377,4.16570775 C7.01768021,4.26434545 7.01768021,4.36215423 7.01222096,4.45615592 C6.93332752,5.94959496 5.65859103,7.09724292 4.16632873,7.01848304 L2.76775195,6.94755235 C2.40726949,6.93026895 2.05689746,7.07549658 1.81466498,7.3423835 C1.36621267,7.83716353 1.40344604,8.60168875 1.89812562,9.0506676 L2.93722334,9.99395003 C3.00689925,10.0566583 3.07272695,10.1224861 3.13324194,10.1898819 C4.13610615,11.3006404 4.04886791,13.0141877 2.93813848,14.0184086 L1.89693765,14.9585898 C1.62771266,15.2019396 1.48252973,15.5541243 1.50171744,15.9180771 C1.53627421,16.5845291 2.10460702,17.0963721 2.77268593,17.0617315 L4.17777038,16.9904868 C4.26715574,16.9864845 4.35657471,16.9864845 4.45124832,16.9907423 C5.9455343,17.0682238 7.09472945,18.3414944 7.01727771,19.8352054 L6.94548963,21.2307453 C6.92939532,21.5916294 7.07410147,21.9402171 7.34030985,22.182337 C7.83412487,22.6317087 8.59936712,22.5954141 9.04848905,22.1018744 L9.99120556,21.0634062 C10.0497463,20.9982131 10.1125741,20.9357177 10.1877033,20.8667581 C11.2985369,19.8638261 13.012363,19.9511003 14.0149637,21.0615672 L14.9530983,22.0994212 C15.1952141,22.3637721 15.5415739,22.507082 15.8994554,22.4910114 C16.567085,22.4613664 17.0839769,21.896356 17.0545506,21.2333168 L16.983306,19.8282324 C16.9793036,19.738847 16.9793036,19.6494281 16.9835615,19.5547545 C17.061043,18.0604685 18.3343135,16.9112733 19.8274909,16.9886978 L21.2283656,17.0597422 C21.5914899,17.078269 21.9434194,16.9325572 22.1875343,16.6624858 C22.6358482,16.1666234 22.5970807,15.4015862 22.1014292,14.95408 L21.0595977,14.0142313 C20.9899217,13.951523 20.924094,13.8856953 20.8635791,13.8182995 C19.8607148,12.7075409 19.9479531,10.9939936 21.0589484,9.98953274 L22.1009513,9.04953048 C22.3701619,8.80625299 22.5159254,8.45486191 22.4980002,8.09203066 C22.4652741,7.42515863 21.897598,6.91077385 21.2311383,6.94344843 L19.8270839,7.01464627 C19.7390138,7.01871105 19.6519074,7.01871105 19.5609626,7.01450807 C18.066872,6.93980354 16.9167797,5.66734283 16.9915216,4.17250912 L17.062566,2.77163439 C17.0810927,2.40851011 16.935381,2.05658057 16.6653768,1.81252645 L16.5627212,1.72928923 C16.0688421,1.3713639 15.3744056,1.43615086 14.9543445,1.90139328 Z M12,6.51421053 C15.030003,6.51421053 17.4868421,8.9710496 17.4868421,12.0010526 C17.4868421,15.0310557 15.030003,17.4878947 12,17.4878947 C8.96999696,17.4878947 6.51315789,15.0310557 6.51315789,12.0010526 C6.51315789,8.9710496 8.96999696,6.51421053 12,6.51421053 Z M12,8.01421053 C9.79842409,8.01421053 8.01315789,9.79947672 8.01315789,12.0010526 C8.01315789,14.2026285 9.79842409,15.9878947 12,15.9878947 C14.2015759,15.9878947 15.9868421,14.2026285 15.9868421,12.0010526 C15.9868421,9.79947672 14.2015759,8.01421053 12,8.01421053 Z"/>
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" width="24" height="24" viewBox="0 0 24 24">
2
- <path d="M21.753,0.003 C22.9952136,0.003 24.003,1.01078644 24.003,2.253 L24.003,21.753 C24.003,22.9952136 22.9952136,24.003 21.753,24.003 L2.253,24.003 C1.01078644,24.003 0.003,22.9952136 0.003,21.753 L0.003,2.253 C0.003,1.01078644 1.01078644,0.003 2.253,0.003 L21.753,0.003 Z M21.753,1.503 L2.253,1.503 C1.83921356,1.503 1.503,1.83921356 1.503,2.253 L1.503,21.753 C1.503,22.1667864 1.83921356,22.503 2.253,22.503 L21.753,22.503 C22.1667864,22.503 22.503,22.1667864 22.503,21.753 L22.503,2.253 C22.503,1.83921356 22.1667864,1.503 21.753,1.503 Z M9.753,14.253 C10.5812136,14.253 11.253,14.9247864 11.253,15.753 L11.253,18.003 C11.253,18.8312136 10.5812136,19.503 9.753,19.503 L6.003,19.503 C5.17478644,19.503 4.503,18.8312136 4.503,18.003 L4.503,15.753 C4.503,14.9247864 5.17478644,14.253 6.003,14.253 L9.753,14.253 Z M18.003,11.253 C18.8312136,11.253 19.503,11.9247864 19.503,12.753 L19.503,18.003 C19.503,18.8312136 18.8312136,19.503 18.003,19.503 L14.253,19.503 C13.4247864,19.503 12.753,18.8312136 12.753,18.003 L12.753,12.753 C12.753,11.9247864 13.4247864,11.253 14.253,11.253 L18.003,11.253 Z M9.753,15.753 L6.003,15.753 L6.003,18.003 L9.753,18.003 L9.753,15.753 Z M18.003,12.753 L14.253,12.753 L14.253,18.003 L18.003,18.003 L18.003,12.753 Z M9.753,4.503 C10.5812136,4.503 11.253,5.17478644 11.253,6.003 L11.253,11.253 C11.253,12.0812136 10.5812136,12.753 9.753,12.753 L6.003,12.753 C5.17478644,12.753 4.503,12.0812136 4.503,11.253 L4.503,6.003 C4.503,5.17478644 5.17478644,4.503 6.003,4.503 L9.753,4.503 Z M9.753,6.003 L6.003,6.003 L6.003,11.253 L9.753,11.253 L9.753,6.003 Z M18.003,4.503 C18.8312136,4.503 19.503,5.17478644 19.503,6.003 L19.503,8.253 C19.503,9.08121356 18.8312136,9.753 18.003,9.753 L14.253,9.753 C13.4247864,9.753 12.753,9.08121356 12.753,8.253 L12.753,6.003 C12.753,5.17478644 13.4247864,4.503 14.253,4.503 L18.003,4.503 Z M18.003,6.003 L14.253,6.003 L14.253,8.253 L18.003,8.253 L18.003,6.003 Z"/>
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>
@@ -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>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M520-330v-60h160v60H520Zm60 210v-50h-60v-60h60v-50h60v160h-60Zm100-50v-60h160v60H680Zm40-110v-160h60v50h60v60h-60v50h-60Zm111-280h-83q-26-88-99-144t-169-56q-117 0-198.5 81.5T200-480q0 72 32.5 132t87.5 98v-110h80v240H160v-80h94q-62-50-98-122.5T120-480q0-75 28.5-140.5t77-114q48.5-48.5 114-77T480-840q129 0 226.5 79.5T831-560Z"/></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
@@ -1,4 +1,4 @@
1
1
  {
2
- "aliases": [],
2
+ "aliases": ["settings", "preferences"],
3
3
  "description": ""
4
4
  }
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": ["open", "link"],
3
+ "description": "Icon for opening a link"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": ["reset", "settings"],
3
+ "description": "Reset settings"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": ["upload", "file"],
3
+ "description": "Icon for uploading a file"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": ["play", "arrow", "upload", "continue"],
3
+ "description": "Icon for uploading a file & continuing a process"
4
+ }