@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.
- package/lib/icons/CheckCircleIcon.d.ts +4 -0
- package/lib/icons/CheckCircleIcon.js +23 -0
- package/lib/icons/CheckCircleIcon.mjs +24 -0
- package/lib/icons/ErrorIcon.d.ts +4 -0
- package/lib/icons/ErrorIcon.js +23 -0
- package/lib/icons/ErrorIcon.mjs +24 -0
- package/lib/icons/InfoIcon.js +1 -1
- package/lib/icons/InfoIcon.mjs +1 -1
- package/lib/icons/WarningIcon.js +1 -1
- package/lib/icons/WarningIcon.mjs +1 -1
- package/lib/icons/index.d.ts +2 -0
- package/lib/index.js +4 -0
- package/lib/index.mjs +4 -0
- package/package.json +1 -1
- package/svg/CheckCircle.svg +4 -0
- package/svg/Error.svg +4 -0
- package/svg/Info.svg +3 -2
- package/svg/Warning.svg +3 -2
- package/svg/checkCircle.json +4 -0
- package/svg/error.json +4 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as 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
|
+
};
|
package/lib/icons/InfoIcon.js
CHANGED
|
@@ -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
|
|
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;
|
package/lib/icons/InfoIcon.mjs
CHANGED
|
@@ -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
|
|
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 {
|
package/lib/icons/WarningIcon.js
CHANGED
|
@@ -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
|
|
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
|
|
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 {
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -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
|
@@ -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"
|
|
2
|
-
<path
|
|
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"
|
|
2
|
-
<path
|
|
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>
|
package/svg/error.json
ADDED