@imtf/icons 0.10.0 → 0.11.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.
@@ -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 CheckCircleIcon };
@@ -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 CheckCircleIcon = ({
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: "m424-296 282-282-56-56-226 226-114-114-56 56zm56 216q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80m0-80q134 0 227-93t93-227-93-227-227-93-227 93-93 227 93 227 227 93m0-320" }) });
21
+ };
22
+ const ForwardRef = react.forwardRef(CheckCircleIcon);
23
+ exports.CheckCircleIcon = 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 CheckCircleIcon = ({
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: "m424-296 282-282-56-56-226 226-114-114-56 56zm56 216q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80m0-80q134 0 227-93t93-227-93-227-227-93-227 93-93 227 93 227 227 93m0-320" }) });
20
+ };
21
+ const ForwardRef = forwardRef(CheckCircleIcon);
22
+ export {
23
+ ForwardRef as CheckCircleIcon
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 ErrorIcon };
@@ -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 ErrorIcon = ({
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-280q17 0 28.5-11.5T520-320t-11.5-28.5T480-360t-28.5 11.5T440-320t11.5 28.5T480-280m-40-160h80v-240h-80zm40 360q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80m0-80q134 0 227-93t93-227-93-227-227-93-227 93-93 227 93 227 227 93m0-320" }) });
21
+ };
22
+ const ForwardRef = react.forwardRef(ErrorIcon);
23
+ exports.ErrorIcon = 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 ErrorIcon = ({
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-280q17 0 28.5-11.5T520-320t-11.5-28.5T480-360t-28.5 11.5T440-320t11.5 28.5T480-280m-40-160h80v-240h-80zm40 360q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80m0-80q134 0 227-93t93-227-93-227-227-93-227 93-93 227 93 227 227 93m0-320" }) });
20
+ };
21
+ const ForwardRef = forwardRef(ErrorIcon);
22
+ export {
23
+ ForwardRef as ErrorIcon
24
+ };
@@ -17,7 +17,7 @@ const InfoIcon = ({
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: "M11.983.003a12.2 12.2 0 0 0-8.509 3.653 11.8 11.8 0 0 0-3.472 8.552C-.006 18.713 5.26 23.992 11.765 24h.249c6.677-.069 12.039-5.53 11.985-12.207C24.014 5.295 18.759.016 12.262 0zM12 11a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0v-5a1 1 0 0 1 1-1m-.024-4.987c.82.002 1.492.651 1.523 1.47a1.475 1.475 0 0 1-1.419 1.529h-.057a1.53 1.53 0 0 1-1.523-1.47 1.475 1.475 0 0 1 1.421-1.528h.055" }) });
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-280h80v-240h-80zm40-320q17 0 28.5-11.5T520-640t-11.5-28.5T480-680t-28.5 11.5T440-640t11.5 28.5T480-600m0 520q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80m0-80q134 0 227-93t93-227-93-227-227-93-227 93-93 227 93 227 227 93m0-320" }) });
21
21
  };
22
22
  const ForwardRef = react.forwardRef(InfoIcon);
23
23
  exports.InfoIcon = ForwardRef;
@@ -16,7 +16,7 @@ const InfoIcon = ({
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: "M11.983.003a12.2 12.2 0 0 0-8.509 3.653 11.8 11.8 0 0 0-3.472 8.552C-.006 18.713 5.26 23.992 11.765 24h.249c6.677-.069 12.039-5.53 11.985-12.207C24.014 5.295 18.759.016 12.262 0zM12 11a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0v-5a1 1 0 0 1 1-1m-.024-4.987c.82.002 1.492.651 1.523 1.47a1.475 1.475 0 0 1-1.419 1.529h-.057a1.53 1.53 0 0 1-1.523-1.47 1.475 1.475 0 0 1 1.421-1.528h.055" }) });
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-280h80v-240h-80zm40-320q17 0 28.5-11.5T520-640t-11.5-28.5T480-680t-28.5 11.5T440-640t11.5 28.5T480-600m0 520q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80m0-80q134 0 227-93t93-227-93-227-227-93-227 93-93 227 93 227 227 93m0-320" }) });
20
20
  };
21
21
  const ForwardRef = forwardRef(InfoIcon);
22
22
  export {
@@ -17,7 +17,7 @@ const WarningIcon = ({
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", { fillRule: "evenodd", d: "M13.465.607a2.07 2.07 0 0 0-2.93 0l-9.928 9.93a2.07 2.07 0 0 0 0 2.929l9.928 9.927c.81.81 2.12.81 2.93 0l9.928-9.927a2.07 2.07 0 0 0 0-2.93zm-2.43 5.61a1.036 1.036 0 0 1 2.071 0v6.215a1.036 1.036 0 0 1-2.071 0zm1.088 11.922h-.029a1.584 1.584 0 0 1-1.576-1.523 1.527 1.527 0 0 1 1.47-1.583l.03-.001h.029c.849.002 1.544.674 1.576 1.522a1.527 1.527 0 0 1-1.47 1.584z" }) });
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: "m40-120 440-760 440 760zm138-80h604L480-720zm302-40q17 0 28.5-11.5T520-280t-11.5-28.5T480-320t-28.5 11.5T440-280t11.5 28.5T480-240m-40-120h80v-200h-80zm40-100" }) });
21
21
  };
22
22
  const ForwardRef = react.forwardRef(WarningIcon);
23
23
  exports.WarningIcon = ForwardRef;
@@ -16,7 +16,7 @@ const WarningIcon = ({
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", { fillRule: "evenodd", d: "M13.465.607a2.07 2.07 0 0 0-2.93 0l-9.928 9.93a2.07 2.07 0 0 0 0 2.929l9.928 9.927c.81.81 2.12.81 2.93 0l9.928-9.927a2.07 2.07 0 0 0 0-2.93zm-2.43 5.61a1.036 1.036 0 0 1 2.071 0v6.215a1.036 1.036 0 0 1-2.071 0zm1.088 11.922h-.029a1.584 1.584 0 0 1-1.576-1.523 1.527 1.527 0 0 1 1.47-1.583l.03-.001h.029c.849.002 1.544.674 1.576 1.522a1.527 1.527 0 0 1-1.47 1.584z" }) });
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: "m40-120 440-760 440 760zm138-80h604L480-720zm302-40q17 0 28.5-11.5T520-280t-11.5-28.5T480-320t-28.5 11.5T440-280t11.5 28.5T480-240m-40-120h80v-200h-80zm40-100" }) });
20
20
  };
21
21
  const ForwardRef = forwardRef(WarningIcon);
22
22
  export {
@@ -17,6 +17,7 @@ export { BurgerMenuIcon } from "./BurgerMenuIcon";
17
17
  export { CancelIcon } from "./CancelIcon";
18
18
  export { CaseManagerIcon } from "./CaseManagerIcon";
19
19
  export { CheckIcon } from "./CheckIcon";
20
+ export { CheckCircleIcon } from "./CheckCircleIcon";
20
21
  export { ChevronDownIcon } from "./ChevronDownIcon";
21
22
  export { ChevronLeftIcon } from "./ChevronLeftIcon";
22
23
  export { ChevronRightIcon } from "./ChevronRightIcon";
@@ -43,6 +44,7 @@ export { EditSignatureIcon } from "./EditSignatureIcon";
43
44
  export { EmptyNotificationIcon } from "./EmptyNotificationIcon";
44
45
  export { EntityIcon } from "./EntityIcon";
45
46
  export { EraseIcon } from "./EraseIcon";
47
+ export { ErrorIcon } from "./ErrorIcon";
46
48
  export { ExpandContentIcon } from "./ExpandContentIcon";
47
49
  export { EyeIcon } from "./EyeIcon";
48
50
  export { EyeOffIcon } from "./EyeOffIcon";
package/lib/index.js CHANGED
@@ -21,6 +21,7 @@ const BurgerMenuIcon = require("./icons/BurgerMenuIcon.js");
21
21
  const CancelIcon = require("./icons/CancelIcon.js");
22
22
  const CaseManagerIcon = require("./icons/CaseManagerIcon.js");
23
23
  const CheckIcon = require("./icons/CheckIcon.js");
24
+ const CheckCircleIcon = require("./icons/CheckCircleIcon.js");
24
25
  const ChevronDownIcon = require("./icons/ChevronDownIcon.js");
25
26
  const ChevronLeftIcon = require("./icons/ChevronLeftIcon.js");
26
27
  const ChevronRightIcon = require("./icons/ChevronRightIcon.js");
@@ -47,6 +48,7 @@ const EditSignatureIcon = require("./icons/EditSignatureIcon.js");
47
48
  const EmptyNotificationIcon = require("./icons/EmptyNotificationIcon.js");
48
49
  const EntityIcon = require("./icons/EntityIcon.js");
49
50
  const EraseIcon = require("./icons/EraseIcon.js");
51
+ const ErrorIcon = require("./icons/ErrorIcon.js");
50
52
  const ExpandContentIcon = require("./icons/ExpandContentIcon.js");
51
53
  const EyeIcon = require("./icons/EyeIcon.js");
52
54
  const EyeOffIcon = require("./icons/EyeOffIcon.js");
@@ -147,6 +149,7 @@ exports.BurgerMenuIcon = BurgerMenuIcon.BurgerMenuIcon;
147
149
  exports.CancelIcon = CancelIcon.CancelIcon;
148
150
  exports.CaseManagerIcon = CaseManagerIcon.CaseManagerIcon;
149
151
  exports.CheckIcon = CheckIcon.CheckIcon;
152
+ exports.CheckCircleIcon = CheckCircleIcon.CheckCircleIcon;
150
153
  exports.ChevronDownIcon = ChevronDownIcon.ChevronDownIcon;
151
154
  exports.ChevronLeftIcon = ChevronLeftIcon.ChevronLeftIcon;
152
155
  exports.ChevronRightIcon = ChevronRightIcon.ChevronRightIcon;
@@ -173,6 +176,7 @@ exports.EditSignatureIcon = EditSignatureIcon.EditSignatureIcon;
173
176
  exports.EmptyNotificationIcon = EmptyNotificationIcon.EmptyNotificationIcon;
174
177
  exports.EntityIcon = EntityIcon.EntityIcon;
175
178
  exports.EraseIcon = EraseIcon.EraseIcon;
179
+ exports.ErrorIcon = ErrorIcon.ErrorIcon;
176
180
  exports.ExpandContentIcon = ExpandContentIcon.ExpandContentIcon;
177
181
  exports.EyeIcon = EyeIcon.EyeIcon;
178
182
  exports.EyeOffIcon = EyeOffIcon.EyeOffIcon;
package/lib/index.mjs CHANGED
@@ -20,6 +20,7 @@ import { BurgerMenuIcon } from "./icons/BurgerMenuIcon.mjs";
20
20
  import { CancelIcon } from "./icons/CancelIcon.mjs";
21
21
  import { CaseManagerIcon } from "./icons/CaseManagerIcon.mjs";
22
22
  import { CheckIcon } from "./icons/CheckIcon.mjs";
23
+ import { CheckCircleIcon } from "./icons/CheckCircleIcon.mjs";
23
24
  import { ChevronDownIcon } from "./icons/ChevronDownIcon.mjs";
24
25
  import { ChevronLeftIcon } from "./icons/ChevronLeftIcon.mjs";
25
26
  import { ChevronRightIcon } from "./icons/ChevronRightIcon.mjs";
@@ -46,6 +47,7 @@ import { EditSignatureIcon } from "./icons/EditSignatureIcon.mjs";
46
47
  import { EmptyNotificationIcon } from "./icons/EmptyNotificationIcon.mjs";
47
48
  import { EntityIcon } from "./icons/EntityIcon.mjs";
48
49
  import { EraseIcon } from "./icons/EraseIcon.mjs";
50
+ import { ErrorIcon } from "./icons/ErrorIcon.mjs";
49
51
  import { ExpandContentIcon } from "./icons/ExpandContentIcon.mjs";
50
52
  import { EyeIcon } from "./icons/EyeIcon.mjs";
51
53
  import { EyeOffIcon } from "./icons/EyeOffIcon.mjs";
@@ -142,6 +144,7 @@ export {
142
144
  BurgerMenuIcon,
143
145
  CancelIcon,
144
146
  CaseManagerIcon,
147
+ CheckCircleIcon,
145
148
  CheckIcon,
146
149
  ChevronDownIcon,
147
150
  ChevronLeftIcon,
@@ -169,6 +172,7 @@ export {
169
172
  EmptyNotificationIcon,
170
173
  EntityIcon,
171
174
  EraseIcon,
175
+ ErrorIcon,
172
176
  ExpandContentIcon,
173
177
  EyeIcon,
174
178
  EyeOffIcon,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imtf/icons",
3
3
  "private": false,
4
- "version": "0.10.0",
4
+ "version": "0.11.0",
5
5
  "description": "Library of icons (React components, font and svg)",
6
6
  "type": "module",
7
7
  "main": "./lib/index.js",
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
2
+ <path
3
+ d="m424-296 282-282-56-56-226 226-114-114-56 56 170 170Zm56 216q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
4
+ </svg>
package/svg/Error.svg ADDED
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
2
+ <path
3
+ d="M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm-40-160h80v-240h-80v240Zm40 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
4
+ </svg>
package/svg/Info.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="M11.9830572,0.00299962505 C8.77745794,0.0549931259 5.72084002,1.36782902 3.47412086,3.65554306 C1.2034047,5.91626047 -0.0504385743,9.00387452 0.00155492656,12.2084739 C-0.00644407356,18.7126609 5.26089751,23.992001 11.7650845,24 C11.777083,24 11.7880816,24 11.8000801,24 L12.0140534,24 C18.6912187,23.9310086 24.0525486,18.4696913 23.9985553,11.7925259 L23.9985553,11.7925259 C24.0135534,5.29533808 18.7592102,0.0159980002 12.2620224,0 C12.169034,0 12.0760456,0.000999875016 11.9830572,0.00299962505 Z M11.999875,11 C12.551806,11 12.99975,11.447944 12.99975,11.999875 L12.99975,16.9991251 C12.99975,17.5510561 12.551806,17.9990001 11.999875,17.9990001 C11.447944,17.9990001 11,17.5510561 11,16.9991251 L11,11.999875 C11,11.447944 11.447944,11 11.999875,11 Z M11.9760581,6.01312336 C12.7959556,6.01512311 13.4678716,6.66404199 13.4988678,7.48293963 C13.528864,8.2968379 12.8939434,8.98175228 12.0800451,9.01174853 L12.065047,9.01224847 L12.065047,9.01224847 L12.0230522,9.01274841 C11.2031547,9.00974878 10.5322386,8.36182977 10.5002426,7.54293213 C10.4702463,6.728034 11.1061669,6.04411949 11.921065,6.01412323 L11.9350632,6.0136233 L11.9350632,6.0136233 L11.9760581,6.01312336 Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
2
+ <path
3
+ d="M440-280h80v-240h-80v240Zm40-320q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm0 520q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
3
4
  </svg>
package/svg/Warning.svg CHANGED
@@ -1,3 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="314" height="138" viewBox="0 0 24 24">
2
- <path fill-rule="evenodd" d="M13.4645578,0.606693568 C12.655633,-0.202231189 11.344367,-0.202231189 10.5354422,0.606693568 L0.606693568,10.536478 C-0.202231189,11.3454028 -0.202231189,12.6566688 0.606693568,13.4655935 L10.5354422,23.3933064 C11.344367,24.2022312 12.655633,24.2022312 13.4645578,23.3933064 L23.3933064,13.4655935 C24.2022312,12.6566688 24.2022312,11.3454028 23.3933064,10.5354422 L13.4645578,0.606693568 Z M11.0346762,6.21737911 C11.0346762,5.64564228 11.4986945,5.18162398 12.0704313,5.18162398 C12.6421682,5.18162398 13.1061865,5.64564228 13.1061865,6.21737911 L13.1061865,12.4319099 C13.1061865,13.0036467 12.6421682,13.467665 12.0704313,13.467665 C11.4986945,13.467665 11.0346762,13.0036467 11.0346762,12.4319099 L11.0346762,6.21737911 Z M12.1232549,18.1389207 L12.0942537,18.1389207 C11.2459703,18.1358134 10.5509786,17.4646441 10.5178344,16.6163606 C10.485726,15.7732559 11.1444663,15.0637637 11.9875709,15.032691 C11.9979285,15.032691 12.008286,15.0316553 12.0176078,15.0316553 L12.046609,15.0316553 C12.8959282,15.0337268 13.5909199,15.7059319 13.6230283,16.5542153 C13.6551367,17.39732 12.9963964,18.1068122 12.1532918,18.1378849 C12.14397,18.1389207 12.1336124,18.1389207 12.1232549,18.1389207 Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
2
+ <path
3
+ d="m40-120 440-760 440 760H40Zm138-80h604L480-720 178-200Zm302-40q17 0 28.5-11.5T520-280q0-17-11.5-28.5T480-320q-17 0-28.5 11.5T440-280q0 17 11.5 28.5T480-240Zm-40-120h80v-200h-80v200Zm40-100Z" />
3
4
  </svg>
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": [],
3
+ "description": ""
4
+ }
package/svg/error.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": [],
3
+ "description": ""
4
+ }