@imtf/icons 0.6.3 → 0.6.4
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/AiIcon.d.ts +4 -0
- package/lib/icons/AiIcon.js +39 -0
- package/lib/icons/AiIcon.mjs +40 -0
- package/lib/icons/AlertCircleIcon.js +1 -1
- package/lib/icons/AlertCircleIcon.mjs +1 -1
- package/lib/icons/AntiMoneyLaundringIcon.js +1 -0
- package/lib/icons/AntiMoneyLaundringIcon.mjs +1 -0
- package/lib/icons/BackgroundSearchIcon.js +1 -0
- package/lib/icons/BackgroundSearchIcon.mjs +1 -0
- package/lib/icons/FraudDetectionPreventionIcon.js +1 -0
- package/lib/icons/FraudDetectionPreventionIcon.mjs +1 -0
- package/lib/icons/NameScreeningIcon.js +1 -0
- package/lib/icons/NameScreeningIcon.mjs +1 -0
- package/lib/icons/NotFoundIcon.js +1 -1
- package/lib/icons/NotFoundIcon.mjs +1 -1
- package/lib/icons/RegulatoryReportingIcon.js +1 -0
- package/lib/icons/RegulatoryReportingIcon.mjs +1 -0
- package/lib/icons/RiskScoringIcon.js +1 -0
- package/lib/icons/RiskScoringIcon.mjs +1 -0
- package/lib/icons/TransactionsSanctionsScreeningIcon.js +1 -0
- package/lib/icons/TransactionsSanctionsScreeningIcon.mjs +1 -0
- package/lib/icons/index.d.ts +1 -0
- package/lib/index.js +2 -0
- package/lib/index.mjs +2 -0
- package/package.json +1 -1
- package/svg/Ai.svg +5 -0
- package/svg/AlertCircle.svg +1 -1
- package/svg/AntiMoneyLaundring.svg +1 -1
- package/svg/BackgroundSearch.svg +1 -1
- package/svg/FraudDetectionPrevention.svg +1 -1
- package/svg/NameScreening.svg +1 -1
- package/svg/NotFound.svg +1 -1
- package/svg/RegulatoryReporting.svg +1 -1
- package/svg/RiskScoring.svg +1 -1
- package/svg/TransactionsSanctionsScreening.svg +1 -1
- package/svg/ai.json +5 -0
|
@@ -0,0 +1,39 @@
|
|
|
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 AiIcon = react.forwardRef(
|
|
8
|
+
({
|
|
9
|
+
color: defaultColor,
|
|
10
|
+
size,
|
|
11
|
+
...props
|
|
12
|
+
}, ref) => {
|
|
13
|
+
const defaultContextValues = react.useContext(Context.IconContext);
|
|
14
|
+
const defaultValues = {
|
|
15
|
+
...defaultContextValues,
|
|
16
|
+
color: defaultColor || defaultContextValues.color,
|
|
17
|
+
size: size || defaultContextValues.size,
|
|
18
|
+
...props
|
|
19
|
+
};
|
|
20
|
+
const color = react.useMemo(
|
|
21
|
+
() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color,
|
|
22
|
+
[defaultValues.color, defaultValues.palette]
|
|
23
|
+
);
|
|
24
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
25
|
+
"svg",
|
|
26
|
+
{
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
viewBox: "0 0 24 24",
|
|
29
|
+
width: defaultValues.size,
|
|
30
|
+
height: defaultValues.size,
|
|
31
|
+
fill: color,
|
|
32
|
+
color,
|
|
33
|
+
...props,
|
|
34
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m7 1 1.62 4.38L13 7 8.62 8.62 7 13 5.38 8.62 1 7l4.38-1.62zM6 16l.81 2.19L9 19l-2.19.81L6 22l-.81-2.19L3 19l2.19-.81zM19 13l1.62 4.38L25 19l-4.38 1.62L19 25l-1.62-4.38L13 19l4.38-1.62z" })
|
|
35
|
+
}
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
);
|
|
39
|
+
exports.AiIcon = AiIcon;
|
|
@@ -0,0 +1,40 @@
|
|
|
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 AiIcon = forwardRef(
|
|
7
|
+
({
|
|
8
|
+
color: defaultColor,
|
|
9
|
+
size,
|
|
10
|
+
...props
|
|
11
|
+
}, ref) => {
|
|
12
|
+
const defaultContextValues = useContext(IconContext);
|
|
13
|
+
const defaultValues = {
|
|
14
|
+
...defaultContextValues,
|
|
15
|
+
color: defaultColor || defaultContextValues.color,
|
|
16
|
+
size: size || defaultContextValues.size,
|
|
17
|
+
...props
|
|
18
|
+
};
|
|
19
|
+
const color = useMemo(
|
|
20
|
+
() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color,
|
|
21
|
+
[defaultValues.color, defaultValues.palette]
|
|
22
|
+
);
|
|
23
|
+
return /* @__PURE__ */ jsx(
|
|
24
|
+
"svg",
|
|
25
|
+
{
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
viewBox: "0 0 24 24",
|
|
28
|
+
width: defaultValues.size,
|
|
29
|
+
height: defaultValues.size,
|
|
30
|
+
fill: color,
|
|
31
|
+
color,
|
|
32
|
+
...props,
|
|
33
|
+
children: /* @__PURE__ */ jsx("path", { d: "m7 1 1.62 4.38L13 7 8.62 8.62 7 13 5.38 8.62 1 7l4.38-1.62zM6 16l.81 2.19L9 19l-2.19.81L6 22l-.81-2.19L3 19l2.19-.81zM19 13l1.62 4.38L25 19l-4.38 1.62L19 25l-1.62-4.38L13 19l4.38-1.62z" })
|
|
34
|
+
}
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
);
|
|
38
|
+
export {
|
|
39
|
+
AiIcon
|
|
40
|
+
};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export { AccountEntityIcon } from "./AccountEntityIcon";
|
|
|
3
3
|
export { ActiveOriginArchiveIcon } from "./ActiveOriginArchiveIcon";
|
|
4
4
|
export { AddIcon } from "./AddIcon";
|
|
5
5
|
export { AdminIcon } from "./AdminIcon";
|
|
6
|
+
export { AiIcon } from "./AiIcon";
|
|
6
7
|
export { AlertIcon } from "./AlertIcon";
|
|
7
8
|
export { AlertCircleIcon } from "./AlertCircleIcon";
|
|
8
9
|
export { AntiMoneyLaundringIcon } from "./AntiMoneyLaundringIcon";
|
package/lib/index.js
CHANGED
|
@@ -7,6 +7,7 @@ const AccountEntityIcon = require("./icons/AccountEntityIcon.js");
|
|
|
7
7
|
const ActiveOriginArchiveIcon = require("./icons/ActiveOriginArchiveIcon.js");
|
|
8
8
|
const AddIcon = require("./icons/AddIcon.js");
|
|
9
9
|
const AdminIcon = require("./icons/AdminIcon.js");
|
|
10
|
+
const AiIcon = require("./icons/AiIcon.js");
|
|
10
11
|
const AlertIcon = require("./icons/AlertIcon.js");
|
|
11
12
|
const AlertCircleIcon = require("./icons/AlertCircleIcon.js");
|
|
12
13
|
const AntiMoneyLaundringIcon = require("./icons/AntiMoneyLaundringIcon.js");
|
|
@@ -122,6 +123,7 @@ exports.AccountEntityIcon = AccountEntityIcon.AccountEntityIcon;
|
|
|
122
123
|
exports.ActiveOriginArchiveIcon = ActiveOriginArchiveIcon.ActiveOriginArchiveIcon;
|
|
123
124
|
exports.AddIcon = AddIcon.AddIcon;
|
|
124
125
|
exports.AdminIcon = AdminIcon.AdminIcon;
|
|
126
|
+
exports.AiIcon = AiIcon.AiIcon;
|
|
125
127
|
exports.AlertIcon = AlertIcon.AlertIcon;
|
|
126
128
|
exports.AlertCircleIcon = AlertCircleIcon.AlertCircleIcon;
|
|
127
129
|
exports.AntiMoneyLaundringIcon = AntiMoneyLaundringIcon.AntiMoneyLaundringIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -6,6 +6,7 @@ import { AccountEntityIcon } from "./icons/AccountEntityIcon.mjs";
|
|
|
6
6
|
import { ActiveOriginArchiveIcon } from "./icons/ActiveOriginArchiveIcon.mjs";
|
|
7
7
|
import { AddIcon } from "./icons/AddIcon.mjs";
|
|
8
8
|
import { AdminIcon } from "./icons/AdminIcon.mjs";
|
|
9
|
+
import { AiIcon } from "./icons/AiIcon.mjs";
|
|
9
10
|
import { AlertIcon } from "./icons/AlertIcon.mjs";
|
|
10
11
|
import { AlertCircleIcon } from "./icons/AlertCircleIcon.mjs";
|
|
11
12
|
import { AntiMoneyLaundringIcon } from "./icons/AntiMoneyLaundringIcon.mjs";
|
|
@@ -118,6 +119,7 @@ export {
|
|
|
118
119
|
ActiveOriginArchiveIcon,
|
|
119
120
|
AddIcon,
|
|
120
121
|
AdminIcon,
|
|
122
|
+
AiIcon,
|
|
121
123
|
AlertCircleIcon,
|
|
122
124
|
AlertIcon,
|
|
123
125
|
AntiMoneyLaundringIcon,
|
package/package.json
CHANGED
package/svg/Ai.svg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7 1L8.62054 5.37946L13 7L8.62054 8.62054L7 13L5.37946 8.62054L1 7L5.37946 5.37946L7 1Z"/>
|
|
3
|
+
<path d="M6 16L6.81027 18.1897L9 19L6.81027 19.8103L6 22L5.18973 19.8103L3 19L5.18973 18.1897L6 16Z"/>
|
|
4
|
+
<path d="M19 13L20.6205 17.3795L25 19L20.6205 20.6205L19 25L17.3795 20.6205L13 19L17.3795 17.3795L19 13Z"/>
|
|
5
|
+
</svg>
|
package/svg/AlertCircle.svg
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
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 M10.5002426,16.5429321 C10.4702463,15.728034 11.1061669,15.0441195 11.921065,15.0141232 C11.9300639,15.0141232 11.9400626,15.0131234 11.9490615,15.0131234 L11.9760581,15.0131234 C12.7959556,15.0151231 13.4678716,15.664042 13.4988678,16.4829396 C13.528864,17.2968379 12.8939434,17.9817523 12.0800451,18.0117485 C12.0700464,18.0117485 12.0600476,18.0127484 12.0500489,18.0127484 L12.0230522,18.0127484 C11.2031547,18.0097488 10.5322386,17.3618298 10.5002426,16.5429321 Z M11.0001801,12.5014373 L11.0001801,6.50218723 C11.0001801,5.95025622 11.4481241,5.50231221 12.0000551,5.50231221 C12.5519861,5.50231221 12.9999301,5.95025622 12.9999301,6.50218723 L12.9999301,12.5014373 C12.9999301,13.0533683 12.5519861,13.5013123 12.0000551,13.5013123 C11.4481241,13.5013123 11.0001801,13.0533683 11.0001801,12.5014373 Z"/>
|
|
3
3
|
</svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.7433 11 .0547.0031c.1276.0139.2409.0809.31.181l.0269.045.7894 1.5448a.213.213 0 0 0 .1525.1105l.0403.0036h5.1686c1.1254 0 1.7143.6105 1.7143 1.2145a42.8888 42.8888 0 0 1-.8786 5.7956c-.1541.6928-.8336 1.1605-1.5712 1.096l-.0822-.0094h-4.7537c-1.0432 0-2.5714-.7085-4.5429-2.1051-.0925-.0656-.1523-.1631-.1676-.2699L7 18.5557v-4.858c0-.2076.1654-.3787.3786-.4021l.05-.0027h.8571a.766.766 0 0 0 .4569-.1813l.0514-.0487.006-.008 1.6149-1.9036c.08-.0957.2012-.1507.3284-.1513ZM6.333 12.0032c.1693-.016.3388.0293.466.1246.1091.0818.1784.1937.1963.3143L7 12.503v6.994c-.0006.1434-.0737.2798-.201.3752-.109.0817-.2491.1267-.3935.1278l-.0725-.0031H3.25c-.1227 0-.2248-.0745-.246-.1726L3 19.7865v-7.573c0-.1032.0884-.1891.205-.207l.045-.0033h3.083ZM20.0897 4c.2673 0 .521.1163.6936.3177a.8903.8903 0 0 1 .2147.641l-.0102.087-1.2162 7.204c-.0728.4324-.4514.7497-.8954.7503a.9488.9488 0 0 1-.15-.0126.9106.9106 0 0 1-.5931-.3638.8893.8893 0 0 1-.1667-.5933l.01-.0787.9998-5.898a.225.225 0 0 0-.0509-.1795.228.228 0 0 0-.134-.0756l-.0396-.0033h-5.5449a.2286.2286 0 0 0-.1709.0745.2246.2246 0 0 0-.0565.1406l.002.0389.7372 5.4617a.892.892 0 0 1-.3384.8455.9184.9184 0 0 1-.9126.12.9002.9002 0 0 1-.5392-.6547l-.0114-.0738-.909-6.7318a.89.89 0 0 1 .217-.7098.9128.9128 0 0 1 .597-.3022L11.9088 4h8.181Zm-3.9593-3c.4803 0 .8696.407.8696.909 0 .4783-.3531.8702-.8016.9064l-.068.0028H9.1528a.2136.2136 0 0 0-.166.0802.2335.2335 0 0 0-.0517.1447l.003.0396L10.032 9.941a.9414.9414 0 0 1-.15.678c-.1341.1962-.3373.3287-.5648.3683A.7743.7743 0 0 1 9.1737 11c-.3998-.0001-.7444-.2845-.842-.683l-.0154-.0761L7.012 2.059c-.0422-.2636.0288-.5333.194-.7373.1486-.1836.36-.2974.5872-.3183L7.8693 1h8.2611ZM16.5 8c.8284 0 1.5.6716 1.5 1.5s-.6716 1.5-1.5 1.5-1.5-.6716-1.5-1.5.6716-1.5 1.5-1.5Z"/></svg>
|
package/svg/BackgroundSearch.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5618 10.5781c2.124-2.1273 5.5112-2.2982 7.838-.3955 2.3266 1.9027 2.837 5.261 1.1807 7.7708a.4192.4192 0 0 0 .0064.4705l.047.0561 3.1806 3.1856a.8383.8383 0 0 1 .2166.8087.8367.8367 0 0 1-.591.5923.835.835 0 0 1-.724-.1432l-.0836-.0732-3.1813-3.1864a.4174.4174 0 0 0-.5258-.0527c-2.5058 1.6588-5.8588 1.1478-7.7585-1.1826-1.8998-2.3304-1.729-5.723.3949-7.8504Zm4.1405-.0423c-2.3082 0-4.1794 1.8742-4.1794 4.186 0 2.3119 1.8712 4.186 4.1794 4.186 2.307-.0027 4.1766-1.8753 4.1794-4.186 0-2.3118-1.8712-4.186-4.1794-4.186Zm1.6717 1.466c.54.0013.984.4121 1.0384.9388l.0057.1068v.3726a.6277.6277 0 0 1-.6107.6442.6276.6276 0 0 1-.6432-.6116.2093.2093 0 0 0-.155-.189l-.0531-.0069h-.418a.2091.2091 0 0 0-.2034.1613l-.0055.048v2.9302a.2086.2086 0 0 0 .209.2093c.3462 0 .6269.2812.6269.628a.6277.6277 0 0 1-.5419.6221l-.085.0057h-1.6718a.6274.6274 0 0 1-.6269-.6279.6274.6274 0 0 1 .627-.6279.208.208 0 0 0 .2019-.1549l.007-.0544V13.466a.2093.2093 0 0 0-.161-.2037l-.048-.0056h-.4188a.2091.2091 0 0 0-.2081.1976.6276.6276 0 0 1-.644.6107.6277.6277 0 0 1-.6064-.5597l-.0034-.0853v-.3726c.0013-.5411.412-.9858.9381-1.04l.1067-.0056h3.3435ZM3.4954 3.001c3.0325.0921 6.224.6698 7.9233 1.754a.4186.4186 0 0 1 .188.2827l.0059.0706v2.5693a.4186.4186 0 0 1-.2784.3952 7.1067 7.1067 0 0 0-2.3204 1.3671.4175.4175 0 0 1-.3811.0913 20.6764 20.6764 0 0 0-3.244-.5308.6272.6272 0 0 0-.6846.5643.6276.6276 0 0 0 .5633.6856c.6771.0653 1.2565.138 1.784.2265l.2598.0456c.133.0198.247.109.3034.234a.4192.4192 0 0 1-.0217.3872 7.1649 7.1649 0 0 0-.4247.8372.4178.4178 0 0 1-.4421.2512c-.4105-.0586-.8526-.1105-1.3375-.1574a.6272.6272 0 0 0-.6845.5643.6276.6276 0 0 0 .5633.6856l.27.0274.5105.0572c.082.0098.1626.0199.2418.0301a.4185.4185 0 0 1 .3611.4664 7.1995 7.1995 0 0 0-.0535.8748 7.0808 7.0808 0 0 0 .1864 1.6158.419.419 0 0 1-.0965.38.4176.4176 0 0 1-.3682.1332 26.7167 26.7167 0 0 0-2.8871-.2335c-.7537-.0152-1.3646-.5998-1.4267-1.339L2 15.2125V4.4686a1.478 1.478 0 0 1 .4464-1.0557 1.4064 1.4064 0 0 1 1.049-.4119Zm17.0703 0a1.4373 1.4373 0 0 1 1.049.412 1.478 1.478 0 0 1 .4403.9238l.0062.1318v10.7438c.0058.7055-.499 1.3116-1.193 1.4325a.2088.2088 0 0 1-.1905-.059.2095.2095 0 0 1-.0543-.1922 7.1181 7.1181 0 0 0-1.3416-6.011.2096.2096 0 0 1 .0894-.3257.5777.5777 0 0 0 .4037-.6313.633.633 0 0 0-.6845-.5643c-.36.0335-.708.0787-1.044.1357a.4174.4174 0 0 1-.3068-.0687 7.0858 7.0858 0 0 0-1.6668-.8573.2093.2093 0 0 1 .01-.3977 16.6018 16.6018 0 0 1 3.1288-.6413.627.627 0 0 0 .51-.365.6287.6287 0 0 0-.0606-.625.6265.6265 0 0 0-.5706-.2599c-1.4776.1658-2.9314.5-4.3332.9963a.6287.6287 0 0 0-.4282.5772l.0035.0875a.2045.2045 0 0 1-.056.1675.2063.2063 0 0 1-.163.0653c-.1362-.0118-.2733-.0118-.4112-.0118a7.2517 7.2517 0 0 0-.79.046.4175.4175 0 0 1-.3256-.105.4188.4188 0 0 1-.1326-.2427l-.0056-.0708V5.1124a.4187.4187 0 0 1 .1939-.3533c1.6993-1.0883 4.8907-1.666 7.9233-1.758ZM5.3887 5.9254a.6265.6265 0 0 0-.5707.2599.6287.6287 0 0 0-.0606.625.627.627 0 0 0 .51.365 16.8938 16.8938 0 0 1 4.0557.7945.6268.6268 0 0 0 .7941-.3951.6282.6282 0 0 0-.3945-.7954 18.2385 18.2385 0 0 0-4.334-.854Z"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.5594 15.6245v2.5c.0002.495.2402.9599.6457 1.2508l.046.0333h-.0002c.9048.6497 2.092.7735 3.1144.3248l3.6345-1.5953 3.6345 1.5953c1.0224.4487 2.2095.3249 3.1144-.3248l.046-.0333c.4054-.2909.6453-.7558.6454-1.2508v-2.5l-2.2716.4138a28.8814 28.8814 0 0 1-10.3372 0l-2.2719-.4138ZM5.93 17.1713l3.7202.5801-2.7412 1.1602-.979-1.7403Zm12.1395 0-.979 1.7403-2.7411-1.1602 3.7201-.58ZM8.142 4.1404c-.4486-.0186-.8823.2647-1.0096.728L5.3748 10.432h13.3066l-1.8142-5.5634c-.1736-.6143-.8864-.908-1.4532-.5982l-1.9013 1.1404a3.1603 3.1603 0 0 1-3.0256 0L8.5858 4.2641a1.011 1.011 0 0 0-.4435-.1238l-.0003.0001Zm-3.0102 7.0622-.5812 1.8385H1.407a.3966.3966 0 0 0-.2869.1077.3821.3821 0 0 0-.1201.2774c0 .1047.0434.2048.1201.2775a.3966.3966 0 0 0 .2869.1077h21.186a.3966.3966 0 0 0 .2869-.1077.3821.3821 0 0 0 .1201-.2775.3821.3821 0 0 0-.1201-.2774.3966.3966 0 0 0-.2869-.1077h-3.061l-.5995-1.8385H5.1318Z"/></svg>
|
package/svg/NameScreening.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.556 21.098c.084.356-.183.702-.595.774A8.644 8.644 0 0 1 8.476 22c-.42 0-.762-.294-.762-.657 0-.363.341-.657.762-.656.397 0 .793-.035 1.183-.102.412-.072.814.158.897.513Zm4.428-11.24a5.127 5.127 0 0 1 4.147 8.141l-.05.065 2.708 2.709a.72.72 0 0 1 .088.911l-.041.054-.047.052a.72.72 0 0 1-.91.087l-.056-.04-.05-.047-2.708-2.708-.066.05a5.099 5.099 0 0 1-2.678.968l-.172.009-.165.002a5.127 5.127 0 0 1 0-10.254ZM2.69 12c.335 0 .618.24.678.563l.009.061.003.062v2.404a5.322 5.322 0 0 0 3.207 4.88.685.685 0 0 1 .356.904.69.69 0 0 1-.907.354 6.696 6.696 0 0 1-4.029-5.844l-.004-.147L2 15.09v-2.404c0-.379.309-.686.69-.686Zm2.858-4.286c.335 0 .617.249.677.586l.009.064.003.064v6.25c0 1.678 1.313 3.037 2.932 3.037.38 0 .69.32.69.714a.702.702 0 0 1-.69.714c-2.296 0-4.18-1.861-4.304-4.216l-.005-.125-.002-.123v-6.25c0-.395.309-.715.69-.715Zm9.31 3.572a3.571 3.571 0 1 0 0 7.143 3.571 3.571 0 0 0 0-7.143Zm-7.095 2.857c.37 0 .682.265.749.624l.01.069.002.069c0 .275.196.508.456.56l.057.009.06.003a.762.762 0 1 1 0 1.523A2.095 2.095 0 0 1 7 14.905c0-.421.341-.762.762-.762ZM8.786 7c.924 0 1.689.747 1.777 1.713l.006.091.002.092v1.208c0 .38-.29.689-.649.689-.315 0-.581-.24-.638-.565l-.008-.062-.003-.062V8.896c0-.285-.218-.517-.487-.517a.496.496 0 0 0-.478.412l-.007.051-.003.054v2.415c0 .38-.29.689-.649.689-.315 0-.581-.24-.638-.565l-.008-.062L7 11.31V8.896C7 7.85 7.8 7 8.786 7Zm3.574-4.045a.743.743 0 0 1 .26.997.696.696 0 0 1-.968.268 5.345 5.345 0 0 0-5.491 0c-1.7 1.012-2.745 2.883-2.745 4.907a.72.72 0 0 1-.708.73.72.72 0 0 1-.708-.73C2 6.58 3.316 4.228 5.453 2.955a6.724 6.724 0 0 1 6.907 0Zm2.574 3.006c.422.8.639 1.662.637 2.534 0 .358-.352.648-.786.648-.434 0-.785-.292-.784-.65a4.285 4.285 0 0 0-.507-2.013c-.173-.328.009-.71.406-.854.398-.144.86.007 1.034.335Zm-3.765-1.24c1.398.77 2.26 2.193 2.26 3.733 0 .38-.324.689-.724.689-.399 0-.722-.309-.722-.69 0-1.047-.586-2.015-1.538-2.539a3.206 3.206 0 0 0-3.075 0 .743.743 0 0 1-.987-.252.672.672 0 0 1 .264-.942 4.713 4.713 0 0 1 4.522 0Z"/></svg>
|
package/svg/NotFound.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 314 138">
|
|
2
2
|
<g fill="#9E9E9E">
|
|
3
3
|
<path d="M156.15 52.7a25.02 25.02 0 110 50.04 25.02 25.02 0 010-50.04zm0 6.9a18.12 18.12 0 100 36.24 18.12 18.12 0 000-36.23z"/>
|
|
4
4
|
<path d="M156.15 68.23a9.49 9.49 0 110 18.98 9.49 9.49 0 010-18.98z"/>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.959 2.769v3.4c0 1.046.848 1.894 1.895 1.894h4.014v3.094l-2.12.943V9.65h-2.12v7.942h1.06v1.588c-.353.247-.53.512-.53.794 0 .283.177.547.53.794H3.15l-.001-.09a1.589 1.589 0 0 1-1.059-1.498V3.838c0-.59.48-1.07 1.07-1.07h6.8Zm11.06 16.717a.525.525 0 0 1 .072 1.044l-.071.005h-7.721a.525.525 0 0 1-.072-1.044l.072-.005h7.72Zm-5.99-4.37v3.496h-1.405v-3.497h1.404Zm2.807 0v3.496h-1.404v-3.497h1.404Zm2.807 0v3.496H19.24v-3.497h1.403Zm-14.315-2.29h-1.67v4.766H6.33v-4.765Zm3.71-2.116h-2.12l.001 6.882h2.12V10.71Zm7.323.948.087.035 4.055 2.02a.348.348 0 0 1-.096.657l-.06.005h-8.423a.35.35 0 0 1-.208-.631l.051-.031 4.054-2.02a.71.71 0 0 1 .54-.035Zm-6.33-8.89 4.66 4.066h-4.66V2.77Z"/></svg>
|
package/svg/RiskScoring.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.143 4.522a8.5 8.5 0 0 0-5.272 2.25l2.272 2.34a5.363 5.363 0 0 1 3-1.28v-3.31Zm-3.72 5.33L3.15 7.514a9.025 9.025 0 0 0-2.187 5.43h3.213a5.697 5.697 0 0 1 1.246-3.09Zm9.703 4.139a5.71 5.71 0 0 1-.56 2.02c.258.41.474.757.616.987a1.598 1.598 0 0 1-.209 1.957 1.53 1.53 0 0 1-.418.306l.529.545a.501.501 0 0 0 .72 0 9.019 9.019 0 0 0 2.536-5.815h-3.214Zm-10.948 0H.963A9.019 9.019 0 0 0 3.5 19.806a.5.5 0 0 0 .72 0l1.545-1.59c.2-.206.2-.538 0-.743a5.69 5.69 0 0 1-1.586-3.482Zm11.255-7.22a8.5 8.5 0 0 0-5.272-2.249v3.31a5.363 5.363 0 0 1 3 1.28l2.272-2.34Zm-4.65 5.54a1.569 1.569 0 0 0-2.262 0 1.684 1.684 0 0 0 0 2.329c.788.811 4.66 3.358 5.099 3.645a.498.498 0 0 0 .633-.071.536.536 0 0 0 .07-.653c-.28-.452-2.752-4.44-3.54-5.25Zm7.423-8.075a.386.386 0 0 0-.67 0l-4.78 8.382a.396.396 0 0 0 0 .392c.07.121.197.196.336.196h9.558a.386.386 0 0 0 .335-.196.396.396 0 0 0 0-.392l-4.78-8.382Zm-.335 7.331a.428.428 0 0 1-.425-.43c0-.237.19-.43.425-.43.234 0 .424.193.424.43s-.19.43-.424.43Zm0-4.238a.39.39 0 0 1 .387.392v1.6a.39.39 0 0 1-.387.392.39.39 0 0 1-.387-.391v-1.6a.39.39 0 0 1 .387-.393Z"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.46 21.48c.28 0 .5.21.54.49v.18h-9.23v-.12c0-.29.21-.52.49-.55H22.46Zm-1-1.36c.46 0 .8.35.84.77v.32h-7.83v-.25c0-.46.32-.8.77-.84H21.46ZM13.68 8.2l3.95 3.94-3.95 3.94-1.41-1.42-5.8 5.97a.9.9 0 0 1-1.29 0 .88.88 0 0 1 0-1.27l6-5.8-1.45-1.42 3.95-3.94Zm3.43 1.17.06.22c.1.35-.08.7-.41.83l-.08.03a.66.66 0 0 1-.8-.49l-.07-.3V9.6l-.09-.24a.65.65 0 0 1-.02-.1l-.04-.1-.08-.22-.1-.24-.13-.26-.13-.3-.15-.3c-.04-.05-.07-.08-.1-.09h-.04c-.7.09-1.09.01-1.17-.23-.12-.36-.25-.63-.47-.74a1.33 1.33 0 0 0-.21-.08 1.35 1.35 0 0 0-.22-.03H12.74a.5.5 0 0 0-.08.02l-.16.06-.05.02-.3.18-.1.08c-.11.08-.25.22-.42.41l-.01.01-.04.04-.11.13-.1.13H7.16a.17.17 0 0 0-.16.11 9.34 9.34 0 0 0-.49 2.32.17.17 0 0 0 .12.18h.51c.24 0 .47.13.6.34.12.21.12.48 0 .7a.67.67 0 0 1-.52.32h-.52c-.05 0-.1.03-.13.06a.17.17 0 0 0-.04.14 11.17 11.17 0 0 0 .58 2.5l.02.01a.68.68 0 0 1 .3.81.17.17 0 0 0 .01.12l.07.14.04.09.06.09.06.13c.17.34.13.7-.2.88-.33.16-.8.07-.96-.27a2.57 2.57 0 0 0-.1-.18l-.11-.19a1.87 1.87 0 0 1-.12-.24.17.17 0 0 0-.12-.1H4.18a.17.17 0 0 0-.15.1.17.17 0 0 0 .03.18l.09.1.15.19.24.31c.21.28.4.49.9.74.33.16.46.57.3.9a.66.66 0 0 1-.9.31c-2.78-1.4-3.85-4-3.84-7.16V11A8.25 8.25 0 0 1 8.85 3.1a7.89 7.89 0 0 1 8.27 6.28Zm.55 3.2a.7.7 0 0 1 1 0c.25.25.27.67.05.94l-.05.05-3.56 3.55a.7.7 0 0 1-1 0 .72.72 0 0 1-.04-.94l.05-.06 3.55-3.55ZM5 11.73H2.53c-.05 0-.1.02-.13.05a.17.17 0 0 0-.04.13c.06.8.25 1.6.58 2.34.02.05.07.08.12.1H5.4c.05 0 .1-.03.14-.07.03-.04.04-.1.02-.15-.2-.73-.34-1.49-.41-2.25a.17.17 0 0 0-.13-.15H5Zm7.3-4.54a.7.7 0 0 1 1 0c.26.25.27.67.05.94l-.05.06-3.56 3.55a.74.74 0 0 1-1.02 0 .72.72 0 0 1-.05-.95l.05-.06L12.3 7.2Zm-6.92.56H3.45a.17.17 0 0 0-.15.08 6.95 6.95 0 0 0-.86 2.34c0 .05 0 .1.04.14.02.03.06.05.1.05h2.4c.08 0 .16-.06.16-.15.05-.76.18-1.51.4-2.24 0-.06 0-.11-.03-.16a.17.17 0 0 0-.1-.06h-.04Zm1.2-2.8c-.67.29-1.27.67-1.82 1.13a.17.17 0 0 0 .07.3h1.2c.07 0 .13-.03.16-.09.18-.37.37-.73.6-1.08a.17.17 0 0 0-.02-.2.17.17 0 0 0-.2-.05Zm2.7-.52H9.1c-.05 0-.1.02-.12.06-.44.5-.84 1.06-1.18 1.64a.17.17 0 0 0 0 .17c.02.04.06.07.1.08h2.54c.06 0 .11-.03.15-.08a.17.17 0 0 0 0-.17C10.22 5.56 9.83 5 9.4 4.5a.17.17 0 0 0-.1-.06h-.03Zm2.33.58a.17.17 0 0 0-.01.2c.21.35.41.7.59 1.08.02.05.06.08.11.1h1.21c.07 0 .14-.05.16-.12a.17.17 0 0 0-.05-.19 6.87 6.87 0 0 0-1.81-1.12.17.17 0 0 0-.2.05Z"/></svg>
|