datastake-daf 0.6.744 → 0.6.746

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.
Files changed (114) hide show
  1. package/dist/components/index.js +620 -900
  2. package/dist/context/index.js +0 -3
  3. package/dist/hooks/index.js +19 -4658
  4. package/dist/layouts/index.js +573 -916
  5. package/dist/pages/index.css +1 -0
  6. package/dist/pages/index.js +4391 -997
  7. package/dist/services/index.js +1 -7
  8. package/dist/style/datastake/mapbox-gl.css +330 -0
  9. package/dist/utils/index.js +466 -808
  10. package/package.json +3 -1
  11. package/rollup.config.js +7 -2
  12. package/src/@daf/core/components/Dashboard/Widget/ImageCarousel/index.jsx +75 -54
  13. package/src/@daf/core/components/Dashboard/Widget/ImageCarousel/style.js +44 -0
  14. package/src/@daf/core/components/DynamicForm/components/ajaxModal.js +1 -1
  15. package/src/@daf/core/components/EditForm/components/Comment/index.js +1 -1
  16. package/src/@daf/core/components/EditForm/components/DataLink/ajaxSelectDataLink.js +1 -1
  17. package/src/@daf/core/components/EditForm/components/DataLink/flat.js +1 -1
  18. package/src/@daf/core/components/EditForm/components/DataLink/index.js +1 -1
  19. package/src/@daf/core/components/EditForm/components/DataLinkGroup/index.js +1 -1
  20. package/src/@daf/core/components/EditForm/components/Repeatable/index.js +1 -1
  21. package/src/@daf/core/components/EditForm/components/ajaxSelect.js +1 -1
  22. package/src/@daf/core/components/EditForm/components/geolocation.js +1 -0
  23. package/src/@daf/core/components/EditForm/helper.js +0 -4
  24. package/src/@daf/core/components/Screens/Admin/AdminModals/CombineAccount/index.jsx +1 -1
  25. package/src/@daf/core/components/Screens/Admin/AdminModals/CombineLocation/index.jsx +1 -1
  26. package/src/@daf/core/components/Screens/Admin/AdminModals/CombineSubjects/index.jsx +1 -1
  27. package/src/@daf/core/components/Screens/TableScreen/TablePageWithTabs/index.jsx +128 -0
  28. package/src/@daf/{pages/pages → core/components/TableScreen}/TablePageWithTabs/index.jsx +5 -5
  29. package/src/@daf/layouts/AppLayout/index.jsx +5 -4
  30. package/src/@daf/layouts/AuthLayout/components/Select/style.js +1 -1
  31. package/src/@daf/layouts/AuthLayout/style.js +1 -1
  32. package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/ChartsContainer/components/Identification/index.js +0 -2
  33. package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/KeyIndicators/config.js +2 -2
  34. package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/MineSites/index.jsx +1 -5
  35. package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/config.js +2 -2
  36. package/src/@daf/pages/Documents/columns.js +102 -0
  37. package/src/@daf/pages/{dashboards/AllInformation/Documents → Documents}/create.jsx +2 -2
  38. package/src/@daf/pages/{dashboards/AllInformation/Documents → Documents}/index.jsx +9 -6
  39. package/src/@daf/pages/{dashboards/DueDilligence/Incidents → Events/Activities}/columns.js +8 -7
  40. package/src/@daf/pages/{dashboards/DueDilligence → Events}/Activities/create.jsx +2 -2
  41. package/src/@daf/pages/{dashboards/DueDilligence → Events}/Activities/index.jsx +6 -6
  42. package/src/@daf/pages/{dashboards/DueDilligence/Activities → Events/Incidents}/columns.js +5 -5
  43. package/src/@daf/pages/{dashboards/DueDilligence → Events}/Incidents/create.jsx +2 -2
  44. package/src/@daf/pages/{dashboards/DueDilligence → Events}/Incidents/index.jsx +5 -5
  45. package/src/@daf/pages/Events/columns.js +226 -0
  46. package/src/@daf/pages/{dashboards/AllInformation/Events → Events}/create.jsx +2 -2
  47. package/src/@daf/pages/{dashboards/AllInformation/Events → Events}/index.jsx +5 -9
  48. package/src/@daf/pages/{dashboards/Operations/ProductionSites → Locations/MineSite}/columns.js +4 -4
  49. package/src/@daf/pages/{dashboards/Operations/ProductionSites → Locations/MineSite}/create.jsx +2 -2
  50. package/src/@daf/pages/{dashboards/Operations/ProductionSites → Locations/MineSite}/index.jsx +5 -5
  51. package/src/@daf/pages/{dashboards/AllInformation/Locations → Locations}/columns.js +5 -5
  52. package/src/@daf/pages/{dashboards/AllInformation/Locations → Locations}/create.jsx +2 -2
  53. package/src/@daf/pages/{dashboards/AllInformation/Locations → Locations}/index.jsx +5 -5
  54. package/src/@daf/pages/{dashboards/Operations → Stakeholders}/Operators/columns.js +5 -5
  55. package/src/@daf/pages/{dashboards/Operations → Stakeholders}/Operators/create.jsx +2 -2
  56. package/src/@daf/pages/{dashboards/Operations → Stakeholders}/Operators/index.jsx +5 -5
  57. package/src/@daf/pages/{dashboards/Operations → Stakeholders}/Workers/columns.js +6 -6
  58. package/src/@daf/pages/{dashboards/Operations → Stakeholders}/Workers/create.jsx +2 -2
  59. package/src/@daf/pages/{dashboards/Operations → Stakeholders}/Workers/index.jsx +5 -5
  60. package/src/@daf/pages/{dashboards/AllInformation/Documents → Stakeholders}/columns.js +5 -5
  61. package/src/@daf/pages/{dashboards/AllInformation/Stakeholders → Stakeholders}/create.jsx +2 -2
  62. package/src/@daf/pages/{dashboards/AllInformation/Stakeholders → Stakeholders}/index.jsx +5 -5
  63. package/src/@daf/pages/Summary/Activities/Restoration/config.js +36 -0
  64. package/src/@daf/pages/Summary/Activities/Restoration/helper.js +98 -0
  65. package/src/@daf/pages/Summary/Activities/Restoration/index.jsx +178 -0
  66. package/src/@daf/pages/Summary/minesite/index.js +0 -0
  67. package/src/@daf/pages/Summary/operator/index.jsx +76 -0
  68. package/src/@daf/services/AuthenticationService.js +0 -1
  69. package/src/@daf/services/LinkedSubjects.js +1 -2
  70. package/src/pages.js +15 -13
  71. package/src/@daf/pages/dashboards/AllInformation/Events/columns.js +0 -151
  72. package/src/@daf/pages/dashboards/AllInformation/Stakeholders/columns.js +0 -132
  73. package/src/@daf/pages/dashboards/DueDilligence/Incidents2/columns.js +0 -176
  74. package/src/@daf/pages/dashboards/DueDilligence/Incidents2/config.js +0 -171
  75. package/src/@daf/pages/dashboards/DueDilligence/Incidents2/create.jsx +0 -104
  76. package/src/@daf/pages/dashboards/DueDilligence/Incidents2/index.jsx +0 -156
  77. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/ChartsContainer/components/GenderDistribution/config.js +0 -0
  78. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/ChartsContainer/components/GenderDistribution/index.js +0 -0
  79. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/ChartsContainer/components/Identification/hook.js +0 -0
  80. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/ChartsContainer/components/Locations/config.js +0 -0
  81. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/ChartsContainer/components/Locations/index.js +0 -0
  82. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/ChartsContainer/index.js +0 -0
  83. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/KeyIndicators/config.js +0 -0
  84. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/KeyIndicators/index.js +0 -0
  85. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/SupplyChainMap/index.js +0 -0
  86. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/components/TradeRelationships/index.js +0 -0
  87. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/config.js +0 -0
  88. /package/src/@daf/pages/{dashboards → Dashboards}/SupplyChain/index.jsx +0 -0
  89. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/AccumulationGraph/hook.js +0 -0
  90. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/AccumulationGraph/index.jsx +0 -0
  91. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/ContributionsGraph/helper.js +0 -0
  92. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/ContributionsGraph/hook.js +0 -0
  93. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/ContributionsGraph/index.jsx +0 -0
  94. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/CustomSegment/index.jsx +0 -0
  95. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/DataChainOfCustody/index.jsx +0 -0
  96. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/DataCompilation/index.jsx +0 -0
  97. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/DataConsilidation/index.jsx +0 -0
  98. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/KeyIndicators/index.jsx +0 -0
  99. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/MineSites/config.js +0 -0
  100. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/MineSites/helper.js +0 -0
  101. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/Triangulation/config.js +0 -0
  102. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/Triangulation/hook.js +0 -0
  103. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/components/Triangulation/index.jsx +0 -0
  104. /package/src/@daf/pages/{dashboards → Dashboards}/UserDashboard/index.jsx +0 -0
  105. /package/src/@daf/pages/{dashboards → Dashboards}/helper.js +0 -0
  106. /package/src/@daf/pages/{dashboards/AllInformation/Documents → Documents}/config.js +0 -0
  107. /package/src/@daf/pages/{dashboards/DueDilligence → Events}/Activities/config.js +0 -0
  108. /package/src/@daf/pages/{dashboards/DueDilligence → Events}/Incidents/config.js +0 -0
  109. /package/src/@daf/pages/{dashboards/AllInformation/Events → Events}/config.js +0 -0
  110. /package/src/@daf/pages/{dashboards/Operations/ProductionSites → Locations/MineSite}/config.js +0 -0
  111. /package/src/@daf/pages/{dashboards/AllInformation/Locations → Locations}/config.js +0 -0
  112. /package/src/@daf/pages/{dashboards/Operations → Stakeholders}/Operators/config.js +0 -0
  113. /package/src/@daf/pages/{dashboards/Operations → Stakeholders}/Workers/config.js +0 -0
  114. /package/src/@daf/pages/{dashboards/AllInformation/Stakeholders → Stakeholders}/config.js +0 -0
@@ -2,11 +2,12 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var o = require('react');
5
+ var React = require('react');
6
6
  var icons = require('@ant-design/icons');
7
7
  var antd = require('antd');
8
8
  var jsxRuntime = require('react/jsx-runtime');
9
9
  var PropTypes = require('prop-types');
10
+ var styled = require('styled-components');
10
11
  var moment = require('moment');
11
12
  var dayjs = require('dayjs');
12
13
  var axios = require('axios');
@@ -14,15 +15,16 @@ require('lodash');
14
15
 
15
16
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
16
17
 
17
- var o__default = /*#__PURE__*/_interopDefaultLegacy(o);
18
+ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
18
19
  var PropTypes__default = /*#__PURE__*/_interopDefaultLegacy(PropTypes);
20
+ var styled__default = /*#__PURE__*/_interopDefaultLegacy(styled);
19
21
  var moment__default = /*#__PURE__*/_interopDefaultLegacy(moment);
20
22
  var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
21
23
  var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios);
22
24
 
23
25
  typeof localStorage.getItem('is_collapsed') === 'string' ? localStorage.getItem('is_collapsed') === 'true' ? true : false : true;
24
26
  typeof localStorage.getItem('is_nested_sidebar_collapsed') === 'string' ? localStorage.getItem('is_nested_sidebar_collapsed') === 'true' : true;
25
- const ResizeContext = /*#__PURE__*/o.createContext({
27
+ const ResizeContext = /*#__PURE__*/React.createContext({
26
28
  resizeLoading: false,
27
29
  windowWidth: 0,
28
30
  resizeDif: 0,
@@ -32,7 +34,7 @@ const ResizeContext = /*#__PURE__*/o.createContext({
32
34
  setIsNestedSidebarCollapsed: () => {}
33
35
  });
34
36
  const useResizeContext = () => {
35
- const values = o.useContext(ResizeContext);
37
+ const values = React.useContext(ResizeContext);
36
38
  return values;
37
39
  };
38
40
 
@@ -48,7 +50,7 @@ const useResizeContext = () => {
48
50
  /****** 6bccf385-17c8-4090-b135-0ddf3bc10820 *******/
49
51
  const formatClassname = classNames => classNames.filter(c => c).join(' ');
50
52
 
51
- const config$3t = {
53
+ const config$3s = {
52
54
  viewBox: '0 0 16 14',
53
55
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
54
56
  d: "M10.7716 6.45312L6.26851 2.20312C6.05288 1.99906 5.73101 1.94281 5.45601 2.06094C5.18101 2.18125 5.00288 2.45 5.00288 2.75V5H1.00038C0.447568 5 -0.000244141 5.44688 -0.000244141 6V8C-0.000244141 8.5525 0.447568 9 1.00038 9H5.00351V11.25C5.00351 11.5493 5.18185 11.8203 5.45694 11.9391C5.73204 12.0572 6.05163 12.0011 6.26944 11.7955L10.7726 7.5455C11.0716 7.2625 11.0716 6.7375 10.7716 6.45312ZM12.9998 0H10.9998C10.4476 0 9.99976 0.447812 9.99976 1C9.99976 1.55219 10.4476 2 10.9998 2H12.9998C13.5519 2 13.9998 2.44781 13.9998 3V11C13.9998 11.5522 13.5519 12 12.9998 12H10.9998C10.4476 12 9.99976 12.4478 9.99976 13C9.99976 13.5522 10.4476 14 10.9998 14H12.9998C14.6566 14 15.9998 12.6569 15.9998 11V3C15.9998 1.34312 14.656 0 12.9998 0Z",
@@ -57,7 +59,7 @@ const config$3t = {
57
59
  tag: ['arrow']
58
60
  };
59
61
 
60
- const config$3s = {
62
+ const config$3r = {
61
63
  viewBox: '0 0 7 7',
62
64
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
63
65
  d: "M4.3621 5.38422V4.06579C4.3621 3.92905 4.3621 3.86068 4.33549 3.80845C4.31208 3.76251 4.27473 3.72516 4.22879 3.70175C4.17656 3.67514 4.10819 3.67514 3.97146 3.67514H3.28782C3.15108 3.67514 3.08271 3.67514 3.03049 3.70175C2.98455 3.72516 2.9472 3.76251 2.92379 3.80845C2.89718 3.86068 2.89718 3.92905 2.89718 4.06579V5.38422M1.43225 1.96606C1.43225 2.37059 1.76019 2.69852 2.16471 2.69852C2.56924 2.69852 2.89718 2.37059 2.89718 1.96606C2.89718 2.37059 3.22511 2.69852 3.62964 2.69852C4.03417 2.69852 4.3621 2.37059 4.3621 1.96606C4.3621 2.37059 4.69004 2.69852 5.09457 2.69852C5.49909 2.69852 5.82703 2.37059 5.82703 1.96606M2.21354 5.38422H5.04573C5.31921 5.38422 5.45595 5.38422 5.56041 5.331C5.65229 5.28418 5.72699 5.20948 5.77381 5.1176C5.82703 5.01314 5.82703 4.8764 5.82703 4.60292V1.77073C5.82703 1.49726 5.82703 1.36052 5.77381 1.25606C5.72699 1.16418 5.65229 1.08948 5.56041 1.04266C5.45595 0.989441 5.31921 0.989441 5.04573 0.989441H2.21354C1.94007 0.989441 1.80333 0.989441 1.69887 1.04266C1.60699 1.08948 1.53229 1.16418 1.48547 1.25606C1.43225 1.36052 1.43225 1.49726 1.43225 1.77073V4.60292C1.43225 4.8764 1.43225 5.01314 1.48547 5.1176C1.53229 5.20948 1.60699 5.28418 1.69887 5.331C1.80333 5.38422 1.94007 5.38422 2.21354 5.38422Z",
@@ -68,7 +70,7 @@ const config$3s = {
68
70
  })
69
71
  };
70
72
 
71
- const config$3r = {
73
+ const config$3q = {
72
74
  viewBox: '0 0 7 7',
73
75
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
74
76
  d: "M4.37608 1.96604H4.94673C5.00645 1.96604 5.03631 1.96604 5.06441 1.97278C5.08932 1.97876 5.11314 1.98863 5.13498 2.00202C5.15962 2.01711 5.18073 2.03823 5.22296 2.08045L6.2149 3.07239C6.25712 3.11462 6.27824 3.13573 6.29333 3.16037C6.30672 3.18221 6.31659 3.20603 6.32257 3.23094C6.32931 3.25904 6.32931 3.2889 6.32931 3.34862V4.04135C6.32931 4.15511 6.32931 4.21199 6.31073 4.25686C6.28595 4.31668 6.23842 4.36421 6.17859 4.38899C6.13372 4.40758 6.07684 4.40758 5.96308 4.40758M4.74231 4.40758H4.37608M4.37608 4.40758V2.01487C4.37608 1.74139 4.37608 1.60465 4.32286 1.5002C4.27604 1.40831 4.20134 1.33361 4.10946 1.2868C4.005 1.23357 3.86826 1.23357 3.59479 1.23357H2.22752C1.95404 1.23357 1.8173 1.23357 1.71285 1.2868C1.62097 1.33361 1.54627 1.40831 1.49945 1.5002C1.44623 1.60465 1.44623 1.74139 1.44623 2.01487V3.91927C1.44623 4.18896 1.66485 4.40758 1.93454 4.40758M4.37608 4.40758H3.39946M3.39946 4.40758C3.39946 4.81211 3.07153 5.14004 2.667 5.14004C2.26247 5.14004 1.93454 4.81211 1.93454 4.40758M3.39946 4.40758C3.39946 4.00305 3.07153 3.67512 2.667 3.67512C2.26247 3.67512 1.93454 4.00305 1.93454 4.40758M5.96308 4.52966C5.96308 4.86676 5.6898 5.14004 5.3527 5.14004C5.01559 5.14004 4.74231 4.86676 4.74231 4.52966C4.74231 4.19255 5.01559 3.91927 5.3527 3.91927C5.6898 3.91927 5.96308 4.19255 5.96308 4.52966Z",
@@ -79,7 +81,7 @@ const config$3r = {
79
81
  })
80
82
  };
81
83
 
82
- const config$3q = {
84
+ const config$3p = {
83
85
  viewBox: "0 0 7 6",
84
86
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
85
87
  d: "M1.41896 1.83304L2.4659 2.58084C2.52038 2.61975 2.54762 2.63921 2.57612 2.64369C2.60121 2.64764 2.6269 2.64366 2.64962 2.63232C2.67543 2.61943 2.69552 2.59265 2.73569 2.53909L2.95692 2.24412C2.96827 2.22897 2.97395 2.2214 2.98063 2.21487C2.98656 2.20907 2.99306 2.20389 3.00004 2.19941C3.0079 2.19436 3.01655 2.19051 3.03385 2.18282L3.97838 1.76303C4.01753 1.74563 4.03711 1.73693 4.05187 1.72334C4.06493 1.71132 4.07521 1.6966 4.082 1.6802C4.08967 1.66166 4.09109 1.64029 4.09394 1.59754L4.1631 0.560161M3.96402 3.30216L4.60274 3.57589C4.67684 3.60765 4.71389 3.62353 4.73352 3.64991C4.75074 3.67305 4.75921 3.70154 4.75743 3.73033C4.75539 3.76314 4.73303 3.79669 4.68831 3.86377L4.38824 4.31388C4.36704 4.34568 4.35644 4.36158 4.34244 4.37309C4.33004 4.38328 4.31575 4.39093 4.3004 4.39559C4.28305 4.40086 4.26394 4.40086 4.22572 4.40086H3.73857C3.68795 4.40086 3.66264 4.40086 3.6411 4.39239C3.62208 4.38491 3.60524 4.37277 3.59213 4.35709C3.57729 4.33934 3.56928 4.31533 3.55327 4.2673L3.37922 3.74514C3.36978 3.71682 3.36506 3.70265 3.36382 3.68826C3.36271 3.6755 3.36363 3.66264 3.36652 3.65016C3.36979 3.63609 3.37647 3.62273 3.38982 3.59603L3.52203 3.3316C3.5489 3.27788 3.56233 3.25101 3.58302 3.23433C3.60125 3.21964 3.62332 3.21049 3.6466 3.208C3.67303 3.20516 3.70152 3.21466 3.7585 3.23365L3.96402 3.30216ZM6.03934 2.93593C6.03934 4.28435 4.94622 5.37747 3.59779 5.37747C2.24937 5.37747 1.15625 4.28435 1.15625 2.93593C1.15625 1.5875 2.24937 0.494385 3.59779 0.494385C4.94622 0.494385 6.03934 1.5875 6.03934 2.93593Z",
@@ -91,7 +93,7 @@ const config$3q = {
91
93
  tag: ["map"]
92
94
  };
93
95
 
94
- const config$3p = {
96
+ const config$3o = {
95
97
  viewBox: '0 0 7 7',
96
98
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
97
99
  d: "M3.71311 2.67583L5.18889 4.15161M2.76721 2.44685V0.69131C2.76721 0.660852 2.7919 0.636162 2.82236 0.636162H3.70472C3.73518 0.636162 3.75987 0.660852 3.75987 0.69131V2.44685M2.76721 1.54289L1.33005 2.98004C1.00701 3.30309 1.00701 3.82686 1.33005 4.1499L2.6754 5.49525C2.99844 5.81829 3.52221 5.81829 3.84526 5.49525L5.73654 3.60397C5.75807 3.58243 5.75807 3.54752 5.73654 3.52598L3.75987 1.54932M3.75987 2.46523C3.75987 2.73935 3.53766 2.96156 3.26354 2.96156C2.98943 2.96156 2.76721 2.73935 2.76721 2.46523C2.76721 2.19112 2.98943 1.9689 3.26354 1.9689C3.53766 1.9689 3.75987 2.19112 3.75987 2.46523Z",
@@ -100,7 +102,7 @@ const config$3p = {
100
102
  })
101
103
  };
102
104
 
103
- const config$3o = {
105
+ const config$3n = {
104
106
  viewBox: '0 0 6 7',
105
107
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
106
108
  d: "M2.60885 3.53898L2.29316 1.27033L2.24903 0.953172C2.24032 0.890002 2.18633 0.842949 2.12256 0.842949H1.69444C1.62828 0.842949 1.57308 0.893491 1.56727 0.959394L1.54517 1.27033L1.34901 4.03063M2.79636 5.53071H1.23643C1.16592 5.53071 1.10876 5.47355 1.10876 5.40304V4.2116C1.10876 4.15901 1.14102 4.11179 1.19002 4.09267L4.77865 2.69223C4.86236 2.65956 4.95273 2.7213 4.95273 2.81116V5.40304C4.95273 5.47355 4.89557 5.53071 4.82506 5.53071H3.45265M2.79636 5.53071V4.72083C2.79636 4.65032 2.85352 4.59316 2.92403 4.59316H3.32498C3.39549 4.59316 3.45265 4.65032 3.45265 4.72083V5.53071M2.79636 5.53071H3.45265",
@@ -111,7 +113,7 @@ const config$3o = {
111
113
  })
112
114
  };
113
115
 
114
- const config$3n = {
116
+ const config$3m = {
115
117
  viewBox: "0 0 15 18",
116
118
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
117
119
  d: "M7 17.3332V13.9999M10.475 7.38319H3.52497C2.54164 7.38319 2.19998 6.72486 2.77498 5.92486L6.24999 1.0582C6.65832 0.474864 7.34167 0.474864 7.74167 1.0582L11.2167 5.92486C11.8 6.72486 11.4583 7.38319 10.475 7.38319ZM11.6583 13.9999H2.35C1.03334 13.9999 0.583334 13.1249 1.35833 12.0582L4.68333 7.3832H9.325L12.65 12.0582C13.425 13.1249 12.975 13.9999 11.6583 13.9999Z",
@@ -123,7 +125,7 @@ const config$3n = {
123
125
  tag: ["nature"]
124
126
  };
125
127
 
126
- const config$3m = {
128
+ const config$3l = {
127
129
  viewBox: "0 0 20 20",
128
130
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
129
131
  d: "M9.99998 12.0833V7.08333M7.49998 9.58333H12.5M16.6666 10C16.6666 14.0904 12.205 17.0653 10.5816 18.0124C10.3971 18.12 10.3049 18.1738 10.1747 18.2018C10.0737 18.2234 9.92628 18.2234 9.82525 18.2018C9.69506 18.1738 9.60281 18.12 9.41832 18.0124C7.79495 17.0653 3.33331 14.0904 3.33331 10V6.01467C3.33331 5.34841 3.33331 5.01528 3.44228 4.72892C3.53854 4.47595 3.69497 4.25023 3.89803 4.07128C4.12789 3.8687 4.43981 3.75173 5.06365 3.51779L9.53181 1.84223C9.70506 1.77726 9.79168 1.74478 9.8808 1.7319C9.95984 1.72048 10.0401 1.72048 10.1192 1.7319C10.2083 1.74478 10.2949 1.77726 10.4681 1.84223L14.9363 3.51779C15.5601 3.75173 15.8721 3.8687 16.1019 4.07128C16.305 4.25023 16.4614 4.47595 16.5577 4.72892C16.6666 5.01528 16.6666 5.34841 16.6666 6.01467V10Z",
@@ -135,7 +137,7 @@ const config$3m = {
135
137
  tag: ["add"]
136
138
  };
137
139
 
138
- const config$3l = {
140
+ const config$3k = {
139
141
  viewBox: '0 0 20 20',
140
142
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
141
143
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -150,7 +152,7 @@ const config$3l = {
150
152
  })
151
153
  };
152
154
 
153
- const config$3k = {
155
+ const config$3j = {
154
156
  viewBox: "0 0 23 22",
155
157
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
156
158
  d: "M3.89904 5.28039L5.9925 7.37384M19.3009 5.28039L17.2075 7.37384M11.6 2.21497V5.17556M17.5813 13.2056C17.5813 9.90223 14.9034 7.22431 11.6 7.22431C8.29659 7.22431 5.61867 9.90223 5.61867 13.2056V15.8224H17.5813V13.2056ZM4.34764 19.7851H18.8523C19.2652 19.7851 19.6 19.4503 19.6 19.0374V16.5701C19.6 16.1572 19.2652 15.8224 18.8523 15.8224H4.34764C3.93472 15.8224 3.59998 16.1572 3.59998 16.5701V19.0374C3.59998 19.4503 3.93472 19.7851 4.34764 19.7851Z",
@@ -161,7 +163,7 @@ const config$3k = {
161
163
  })
162
164
  };
163
165
 
164
- const config$3j = {
166
+ const config$3i = {
165
167
  viewBox: '0 0 18 18',
166
168
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
167
169
  d: "M3.33398 15.375L3.33398 3.33333M3.33398 9.70833H8.57565C8.97235 9.70833 9.17071 9.70833 9.32223 9.63113C9.45551 9.56322 9.56387 9.45486 9.63178 9.32158C9.70898 9.17006 9.70898 8.9717 9.70898 8.575V3.75833C9.70898 3.36163 9.70898 3.16328 9.63178 3.01176C9.56387 2.87848 9.45551 2.77011 9.32223 2.7022C9.17071 2.625 8.97236 2.625 8.57565 2.625H4.46732C4.07061 2.625 3.87226 2.625 3.72074 2.7022C3.58746 2.77011 3.4791 2.87848 3.41119 3.01176C3.33398 3.16328 3.33398 3.36163 3.33398 3.75833V9.70833ZM9.70898 4.04167H14.2423C14.639 4.04167 14.8374 4.04167 14.9889 4.11887C15.1222 4.18678 15.2305 4.29514 15.2984 4.42842C15.3757 4.57994 15.3757 4.7783 15.3757 5.175V9.99167C15.3757 10.3884 15.3757 10.5867 15.2984 10.7382C15.2305 10.8715 15.1222 10.9799 14.9889 11.0478C14.8374 11.125 14.639 11.125 14.2423 11.125H10.8423C10.4456 11.125 10.2473 11.125 10.0957 11.0478C9.96246 10.9799 9.8541 10.8715 9.78619 10.7382C9.70898 10.5867 9.70898 10.3884 9.70898 9.99167V4.04167Z",
@@ -172,7 +174,7 @@ const config$3j = {
172
174
  })
173
175
  };
174
176
 
175
- const config$3i = {
177
+ const config$3h = {
176
178
  viewBox: '0 0 18 18',
177
179
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
178
180
  d: "M10.4166 2.10754V5.03334C10.4166 5.43005 10.4166 5.6284 10.4938 5.77992C10.5617 5.9132 10.6701 6.02156 10.8033 6.08947C10.9549 6.16668 11.1532 6.16668 11.5499 6.16668H14.4757M7.22909 8.99996L10.7708 12.5416M10.7708 8.99996L7.22909 12.5416M10.4166 1.91663H6.73325C5.54314 1.91663 4.94808 1.91663 4.49352 2.14824C4.09368 2.35197 3.76859 2.67705 3.56486 3.0769C3.33325 3.53146 3.33325 4.12651 3.33325 5.31663V12.6833C3.33325 13.8734 3.33325 14.4685 3.56486 14.923C3.76859 15.3229 4.09368 15.648 4.49352 15.8517C4.94808 16.0833 5.54314 16.0833 6.73325 16.0833H11.2666C12.4567 16.0833 13.0518 16.0833 13.5063 15.8517C13.9062 15.648 14.2312 15.3229 14.435 14.923C14.6666 14.4685 14.6666 13.8734 14.6666 12.6833V6.16663L10.4166 1.91663Z",
@@ -184,7 +186,7 @@ const config$3i = {
184
186
  tag: ['file']
185
187
  };
186
188
 
187
- const config$3h = {
189
+ const config$3g = {
188
190
  viewBox: '0 0 18 18',
189
191
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
190
192
  d: "M6.55404 14.5023C8.25343 15.2562 10.2775 15.2153 12.0107 14.2146C14.8905 12.552 15.8771 8.86969 14.2145 5.98997L14.0374 5.68326M3.7858 12.0109C2.12319 9.13117 3.10986 5.44889 5.98958 3.78628C7.72286 2.78557 9.74689 2.74462 11.4463 3.49855M2.26636 12.0701L4.20156 12.5887L4.7201 10.6535M13.2804 7.34701L13.7989 5.41181L15.7341 5.93035",
@@ -196,7 +198,7 @@ const config$3h = {
196
198
  tag: ["arrow"]
197
199
  };
198
200
 
199
- const config$3g = {
201
+ const config$3f = {
200
202
  viewBox: "0 0 16 17",
201
203
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
202
204
  d: "M8.00016 5.83337V8.50004M8.00016 11.1667H8.00683M14.6668 8.50004C14.6668 12.1819 11.6821 15.1667 8.00016 15.1667C4.31826 15.1667 1.3335 12.1819 1.3335 8.50004C1.3335 4.81814 4.31826 1.83337 8.00016 1.83337C11.6821 1.83337 14.6668 4.81814 14.6668 8.50004Z",
@@ -208,7 +210,7 @@ const config$3g = {
208
210
  tag: ["circle"]
209
211
  };
210
212
 
211
- const config$3f = {
213
+ const config$3e = {
212
214
  viewBox: "0 0 16 16",
213
215
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
214
216
  d: "M4.99992 8.00004L6.99992 10L10.9999 6.00004M14.6666 8.00004C14.6666 11.6819 11.6818 14.6667 7.99992 14.6667C4.31802 14.6667 1.33325 11.6819 1.33325 8.00004C1.33325 4.31814 4.31802 1.33337 7.99992 1.33337C11.6818 1.33337 14.6666 4.31814 14.6666 8.00004Z",
@@ -220,7 +222,7 @@ const config$3f = {
220
222
  tag: ["circle"]
221
223
  };
222
224
 
223
- const config$3e = {
225
+ const config$3d = {
224
226
  viewBox: '0 0 8 8',
225
227
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
226
228
  d: "M6.73735 4.75007V5.15507C6.73735 5.72213 6.73735 6.00565 6.627 6.22224C6.52993 6.41275 6.37503 6.56765 6.18452 6.66472C5.96793 6.77507 5.68441 6.77507 5.11735 6.77507H2.28235C1.7153 6.77507 1.43177 6.77507 1.21519 6.66472C1.02467 6.56765 0.869781 6.41275 0.772709 6.22224C0.662354 6.00565 0.662354 5.72213 0.662354 5.15507V4.75007M5.38735 3.06257L3.69985 4.75007M3.69985 4.75007L2.01235 3.06257M3.69985 4.75007V0.700073",
@@ -232,7 +234,7 @@ const config$3e = {
232
234
  tag: ["arrow", "action"]
233
235
  };
234
236
 
235
- const config$3d = {
237
+ const config$3c = {
236
238
  viewBox: '0 0 17 16',
237
239
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
238
240
  d: "M8.5 5.33333V8M8.5 10.6667H8.50667M5.7 14H11.3C12.4201 14 12.9802 14 13.408 13.782C13.7843 13.5903 14.0903 13.2843 14.282 12.908C14.5 12.4802 14.5 11.9201 14.5 10.8V5.2C14.5 4.0799 14.5 3.51984 14.282 3.09202C14.0903 2.71569 13.7843 2.40973 13.408 2.21799C12.9802 2 12.4201 2 11.3 2H5.7C4.5799 2 4.01984 2 3.59202 2.21799C3.21569 2.40973 2.90973 2.71569 2.71799 3.09202C2.5 3.51984 2.5 4.0799 2.5 5.2V10.8C2.5 11.9201 2.5 12.4802 2.71799 12.908C2.90973 13.2843 3.21569 13.5903 3.59202 13.782C4.01984 14 4.5799 14 5.7 14Z",
@@ -243,7 +245,7 @@ const config$3d = {
243
245
  tag: ["square"]
244
246
  };
245
247
 
246
- const config$3c = {
248
+ const config$3b = {
247
249
  viewBox: '0 0 16 20',
248
250
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
249
251
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -257,7 +259,7 @@ const config$3c = {
257
259
  tag: ['file']
258
260
  };
259
261
 
260
- const config$3b = {
262
+ const config$3a = {
261
263
  viewBox: "0 0 20 21",
262
264
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
263
265
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -274,7 +276,7 @@ const config$3b = {
274
276
  tag: ["circle"]
275
277
  };
276
278
 
277
- const config$3a = {
279
+ const config$39 = {
278
280
  viewBox: '0 0 23 22',
279
281
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
280
282
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -295,7 +297,7 @@ const config$3a = {
295
297
  })
296
298
  };
297
299
 
298
- const config$39 = {
300
+ const config$38 = {
299
301
  viewBox: '0 0 20 20',
300
302
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
301
303
  d: "M10 0.833344V3.12501M10 0.833344C4.9374 0.833344 0.833344 4.9374 0.833344 10M10 0.833344C15.0626 0.833344 19.1667 4.9374 19.1667 10M10 16.875V19.1667M10 19.1667C15.0626 19.1667 19.1667 15.0626 19.1667 10M10 19.1667C4.9374 19.1667 0.833344 15.0626 0.833344 10M3.12501 10H0.833344M19.1667 10H16.875M16.4886 16.4886L14.8626 14.8626M3.51151 16.4886L5.13907 14.861M3.51151 3.58334L5.10325 5.17509M16.4886 3.58334L11.3749 8.62501M11.8333 10C11.8333 11.0125 11.0125 11.8333 10 11.8333C8.98749 11.8333 8.16668 11.0125 8.16668 10C8.16668 8.98749 8.98749 8.16668 10 8.16668C11.0125 8.16668 11.8333 8.98749 11.8333 10Z",
@@ -306,7 +308,7 @@ const config$39 = {
306
308
  })
307
309
  };
308
310
 
309
- const config$38 = {
311
+ const config$37 = {
310
312
  viewBox: '0 0 19 18',
311
313
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
312
314
  d: "M13 12.75L11.5417 11.2917M5.4 17.25H13.1C14.6401 17.25 15.4102 17.25 15.9985 16.9503C16.5159 16.6866 16.9366 16.2659 17.2003 15.7485C17.5 15.1602 17.5 14.3901 17.5 12.85V5.15C17.5 3.60986 17.5 2.83978 17.2003 2.25153C16.9366 1.73408 16.5159 1.31338 15.9985 1.04973C15.4102 0.75 14.6401 0.75 13.1 0.75H5.4C3.85986 0.75 3.08978 0.75 2.50153 1.04973C1.98408 1.31338 1.56338 1.73408 1.29973 2.25153C1 2.83978 1 3.60986 1 5.15V12.85C1 14.3901 1 15.1602 1.29973 15.7485C1.56338 16.2659 1.98408 16.6866 2.50153 16.9503C3.08978 17.25 3.85986 17.25 5.4 17.25ZM12.5833 8.79167C12.5833 10.7477 10.9977 12.3333 9.04167 12.3333C7.08566 12.3333 5.5 10.7477 5.5 8.79167C5.5 6.83566 7.08566 5.25 9.04167 5.25C10.9977 5.25 12.5833 6.83566 12.5833 8.79167Z",
@@ -318,7 +320,7 @@ const config$38 = {
318
320
  tag: ["square"]
319
321
  };
320
322
 
321
- const config$37 = {
323
+ const config$36 = {
322
324
  viewBox: '0 0 19 18',
323
325
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
324
326
  d: "M9.5 12.6667L13.1667 9M13.1667 9L9.5 5.33333M13.1667 9H5.83333M5.65 17.25H13.35C14.8901 17.25 15.6602 17.25 16.2485 16.9503C16.7659 16.6866 17.1866 16.2659 17.4503 15.7485C17.75 15.1602 17.75 14.3901 17.75 12.85V5.15C17.75 3.60986 17.75 2.83978 17.4503 2.25153C17.1866 1.73408 16.7659 1.31338 16.2485 1.04973C15.6602 0.75 14.8901 0.75 13.35 0.75H5.65C4.10986 0.75 3.33978 0.75 2.75153 1.04973C2.23408 1.31338 1.81338 1.73408 1.54973 2.25153C1.25 2.83978 1.25 3.60986 1.25 5.15V12.85C1.25 14.3901 1.25 15.1602 1.54973 15.7485C1.81338 16.2659 2.23408 16.6866 2.75153 16.9503C3.33978 17.25 4.10986 17.25 5.65 17.25Z",
@@ -330,7 +332,7 @@ const config$37 = {
330
332
  tag: ["arrow", "square"]
331
333
  };
332
334
 
333
- const config$36 = {
335
+ const config$35 = {
334
336
  viewBox: '0 0 15 18',
335
337
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
336
338
  d: "M0.833313 13.1667H14.1666M14.1666 13.1667L10.8333 9.83333M14.1666 13.1667L10.8333 16.5M14.1666 4.83333H0.833313M0.833313 4.83333L4.16665 1.5M0.833313 4.83333L4.16665 8.16667",
@@ -342,7 +344,7 @@ const config$36 = {
342
344
  tag: ['arrow']
343
345
  };
344
346
 
345
- const config$35 = {
347
+ const config$34 = {
346
348
  viewBox: "0 0 19 18",
347
349
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
348
350
  d: "M13.25 12.3333L17.4167 16.5M17.4167 12.3333L13.25 16.5M9.50002 11.9167H5.75002C4.58705 11.9167 4.00557 11.9167 3.5324 12.0602C2.46707 12.3834 1.63339 13.217 1.31022 14.2824C1.16669 14.7555 1.16669 15.337 1.16669 16.5M11.5834 5.25C11.5834 7.32107 9.90442 9 7.83335 9C5.76229 9 4.08335 7.32107 4.08335 5.25C4.08335 3.17893 5.76229 1.5 7.83335 1.5C9.90442 1.5 11.5834 3.17893 11.5834 5.25Z",
@@ -354,7 +356,7 @@ const config$35 = {
354
356
  tag: ["user"]
355
357
  };
356
358
 
357
- const config$34 = {
359
+ const config$33 = {
358
360
  viewBox: "0 0 17 18",
359
361
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
360
362
  children: [/*#__PURE__*/jsxRuntime.jsx("g", {
@@ -381,7 +383,7 @@ const config$34 = {
381
383
  tag: ["check"]
382
384
  };
383
385
 
384
- const config$33 = {
386
+ const config$32 = {
385
387
  viewBox: "0 0 21 18",
386
388
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
387
389
  d: "M7.99967 12.2083H6.62468C5.34541 12.2083 4.70577 12.2083 4.18529 12.3662C3.01342 12.7217 2.09638 13.6388 1.74089 14.8106C1.58301 15.3311 1.58301 15.9707 1.58301 17.25M13.0413 4.875C13.0413 7.15317 11.1945 9 8.91634 9C6.63817 9 4.79134 7.15317 4.79134 4.875C4.79134 2.59683 6.63817 0.75 8.91634 0.75C11.1945 0.75 13.0413 2.59683 13.0413 4.875ZM9.83301 17.25L12.6759 16.4377C12.8121 16.3988 12.8801 16.3794 12.9436 16.3502C13 16.3244 13.0536 16.2928 13.1036 16.2561C13.1599 16.2148 13.21 16.1647 13.3101 16.0646L19.2289 10.1459C19.8617 9.51303 19.8617 8.48698 19.2289 7.85414C18.596 7.22133 17.57 7.22133 16.9372 7.85416L11.0184 13.7729C10.9183 13.873 10.8682 13.9231 10.8269 13.9794C10.7902 14.0294 10.7586 14.083 10.7328 14.1394C10.7036 14.2029 10.6842 14.271 10.6453 14.4071L9.83301 17.25Z",
@@ -393,7 +395,7 @@ const config$33 = {
393
395
  tag: ["user", "edit"]
394
396
  };
395
397
 
396
- const config$32 = {
398
+ const config$31 = {
397
399
  viewBox: "0 0 21 20",
398
400
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
399
401
  d: "M13.25 2.04819C12.4608 1.80032 11.621 1.66669 10.75 1.66669C6.14759 1.66669 2.41663 5.39765 2.41663 10C2.41663 14.6024 6.14759 18.3334 10.75 18.3334C15.3523 18.3334 19.0833 14.6024 19.0833 10C19.0833 8.57058 18.7234 7.2252 18.0893 6.04956M14.9166 4.79169H14.9208M9.5 18.2402L9.50009 16.4041C9.5001 16.3047 9.53568 16.2085 9.6004 16.133L11.6719 13.7162C11.8421 13.5176 11.7894 13.213 11.5623 13.0833L9.18207 11.7231C9.1174 11.6862 9.06382 11.6326 9.02691 11.5679L7.47534 8.84888C7.39459 8.70737 7.23877 8.62591 7.07649 8.64036L2.47011 9.05064M18.25 5.00002C18.25 6.84097 16.5833 8.33335 14.9166 10C13.25 8.33335 11.5833 6.84097 11.5833 5.00002C11.5833 3.15907 13.0757 1.66669 14.9166 1.66669C16.7576 1.66669 18.25 3.15907 18.25 5.00002ZM15.125 4.79169C15.125 4.90675 15.0317 5.00002 14.9166 5.00002C14.8016 5.00002 14.7083 4.90675 14.7083 4.79169C14.7083 4.67663 14.8016 4.58335 14.9166 4.58335C15.0317 4.58335 15.125 4.67663 15.125 4.79169Z",
@@ -405,7 +407,7 @@ const config$32 = {
405
407
  tag: ["map"]
406
408
  };
407
409
 
408
- const config$31 = {
410
+ const config$30 = {
409
411
  viewBox: "0 0 18 20",
410
412
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
411
413
  d: "M15.5833 8.62498V5.23331C15.5833 3.69317 15.5833 2.9231 15.2836 2.33484C15.0199 1.81739 14.5992 1.3967 14.0818 1.13305C13.4935 0.833313 12.7234 0.833313 11.1833 0.833313H5.31663C3.77648 0.833313 3.00641 0.833313 2.41815 1.13305C1.90071 1.3967 1.48001 1.81739 1.21636 2.33484C0.916626 2.9231 0.916626 3.69317 0.916626 5.23331V14.7666C0.916626 16.3068 0.916626 17.0769 1.21636 17.6651C1.48001 18.1826 1.90071 18.6033 2.41815 18.8669C3.00641 19.1666 3.77648 19.1666 5.31663 19.1666H8.24996M10.0833 9.08331H4.58329M6.41663 12.75H4.58329M11.9166 5.41665H4.58329M13.75 18.25V12.75M11 15.5H16.5",
@@ -417,7 +419,7 @@ const config$31 = {
417
419
  tag: ["file", "add"]
418
420
  };
419
421
 
420
- const config$30 = {
422
+ const config$2$ = {
421
423
  viewBox: "0 0 19 20",
422
424
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
423
425
  d: "M10.3333 9.08331H4.83329M6.66663 12.75H4.83329M12.1666 5.41665H4.83329M15.8333 8.62498V5.23331C15.8333 3.69317 15.8333 2.9231 15.5336 2.33484C15.2699 1.81739 14.8492 1.3967 14.3318 1.13305C13.7435 0.833313 12.9734 0.833313 11.4333 0.833313H5.56663C4.02648 0.833313 3.25641 0.833313 2.66815 1.13305C2.15071 1.3967 1.73001 1.81739 1.46636 2.33484C1.16663 2.9231 1.16663 3.69317 1.16663 5.23331V14.7666C1.16663 16.3068 1.16663 17.0769 1.46636 17.6651C1.73001 18.1826 2.15071 18.6033 2.66815 18.8669C3.25641 19.1666 4.02648 19.1666 5.56663 19.1666H8.04163M17.6666 19.1666L16.2916 17.7916M17.2083 15.5C17.2083 17.2719 15.7719 18.7083 14 18.7083C12.228 18.7083 10.7916 17.2719 10.7916 15.5C10.7916 13.7281 12.228 12.2916 14 12.2916C15.7719 12.2916 17.2083 13.7281 17.2083 15.5Z",
@@ -429,7 +431,7 @@ const config$30 = {
429
431
  tag: ["file"]
430
432
  };
431
433
 
432
- const config$2$ = {
434
+ const config$2_ = {
433
435
  viewBox: "0 0 10 12",
434
436
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
435
437
  d: "M8.5 3.5V3.4C8.5 2.55992 8.5 2.13988 8.33651 1.81901C8.1927 1.53677 7.96323 1.3073 7.68099 1.16349C7.36012 1 6.94008 1 6.1 1H2.9C2.05992 1 1.63988 1 1.31901 1.16349C1.03677 1.3073 0.8073 1.53677 0.66349 1.81901C0.5 2.13988 0.5 2.55992 0.5 3.4V8.6C0.5 9.44008 0.5 9.86012 0.66349 10.181C0.8073 10.4632 1.03677 10.6927 1.31901 10.8365C1.63988 11 2.05992 11 2.9 11H4.75M4.75 5.5H2.5M4.25 7.5H2.5M6.5 3.5H2.5M7.5 9V6.25C7.5 5.83579 7.83579 5.5 8.25 5.5C8.66421 5.5 9 5.83579 9 6.25V9C9 9.82843 8.32843 10.5 7.5 10.5C6.67157 10.5 6 9.82843 6 9V7",
@@ -440,7 +442,7 @@ const config$2$ = {
440
442
  tag: ["file"]
441
443
  };
442
444
 
443
- const config$2_ = {
445
+ const config$2Z = {
444
446
  viewBox: '0 0 18 18',
445
447
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
446
448
  d: "M5.33333 11.75V13.5833M9 8.08333V13.5833M12.6667 4.41667V13.5833M5.15 17.25H12.85C14.3901 17.25 15.1602 17.25 15.7485 16.9503C16.2659 16.6866 16.6866 16.2659 16.9503 15.7485C17.25 15.1602 17.25 14.3901 17.25 12.85V5.15C17.25 3.60986 17.25 2.83978 16.9503 2.25153C16.6866 1.73408 16.2659 1.31338 15.7485 1.04973C15.1602 0.75 14.3901 0.75 12.85 0.75H5.15C3.60986 0.75 2.83978 0.75 2.25153 1.04973C1.73408 1.31338 1.31338 1.73408 1.04973 2.25153C0.75 2.83978 0.75 3.60986 0.75 5.15V12.85C0.75 14.3901 0.75 15.1602 1.04973 15.7485C1.31338 16.2659 1.73408 16.6866 2.25153 16.9503C2.83978 17.25 3.60986 17.25 5.15 17.25Z",
@@ -452,7 +454,7 @@ const config$2_ = {
452
454
  tag: ["square"]
453
455
  };
454
456
 
455
- const config$2Z = {
457
+ const config$2Y = {
456
458
  viewBox: "0 0 18 19",
457
459
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
458
460
  d: "M7.91667 2.50002H5.25C3.84987 2.50002 3.1498 2.50002 2.61502 2.7725C2.14462 3.01219 1.76217 3.39464 1.52248 3.86504C1.25 4.39982 1.25 5.09989 1.25 6.50002V13.5C1.25 14.9002 1.25 15.6002 1.52248 16.135C1.76217 16.6054 2.14462 16.9879 2.61502 17.2275C3.1498 17.5 3.84987 17.5 5.25 17.5H12.25C13.6501 17.5 14.3502 17.5 14.885 17.2275C15.3554 16.9879 15.7378 16.6054 15.9775 16.135C16.25 15.6002 16.25 14.9002 16.25 13.5V10.8334M8.75 6.66669H12.0833V10M11.6667 2.91669V1.66669M14.9495 3.80057L15.8333 2.91669M15.8419 7.08335H17.0919M1.25 11.1226C1.79328 11.2065 2.34989 11.25 2.91667 11.25C6.57197 11.25 9.80444 9.43968 11.7664 6.66669",
@@ -464,7 +466,7 @@ const config$2Z = {
464
466
  tag: ["square", "arrow"]
465
467
  };
466
468
 
467
- const config$2Y = {
469
+ const config$2X = {
468
470
  viewBox: "0 0 19 20",
469
471
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
470
472
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -478,7 +480,7 @@ const config$2Y = {
478
480
  tag: ["file"]
479
481
  };
480
482
 
481
- const config$2X = {
483
+ const config$2W = {
482
484
  viewBox: '0 0 21 18',
483
485
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
484
486
  d: "M12.4333 4.41663H14.5758C14.8 4.41663 14.9121 4.41663 15.0176 4.44195C15.1112 4.46441 15.2006 4.50145 15.2826 4.55171C15.3751 4.60839 15.4544 4.68766 15.6129 4.8462L19.3371 8.57038C19.4956 8.72892 19.5749 8.80819 19.6316 8.9007C19.6819 8.98271 19.7189 9.07213 19.7414 9.16566C19.7667 9.27116 19.7667 9.38326 19.7667 9.60747V12.2083C19.7667 12.6354 19.7667 12.849 19.6969 13.0174C19.6039 13.242 19.4254 13.4205 19.2008 13.5135C19.0324 13.5833 18.8188 13.5833 18.3917 13.5833M13.8083 13.5833H12.4333M12.4333 13.5833V4.59996C12.4333 3.5732 12.4333 3.05981 12.2335 2.66764C12.0578 2.32268 11.7773 2.04222 11.4323 1.86645C11.0402 1.66663 10.5268 1.66663 9.50002 1.66663H4.36668C3.33992 1.66663 2.82654 1.66663 2.43437 1.86645C2.0894 2.04222 1.80894 2.32268 1.63317 2.66764C1.43335 3.05981 1.43335 3.5732 1.43335 4.59996V11.75C1.43335 12.7625 2.25416 13.5833 3.26668 13.5833M12.4333 13.5833H8.76668M8.76668 13.5833C8.76668 15.1021 7.53547 16.3333 6.01668 16.3333C4.4979 16.3333 3.26668 15.1021 3.26668 13.5833M8.76668 13.5833C8.76668 12.0645 7.53547 10.8333 6.01668 10.8333C4.4979 10.8333 3.26668 12.0645 3.26668 13.5833M18.3917 14.0416C18.3917 15.3073 17.3657 16.3333 16.1 16.3333C14.8344 16.3333 13.8083 15.3073 13.8083 14.0416C13.8083 12.776 14.8344 11.75 16.1 11.75C17.3657 11.75 18.3917 12.776 18.3917 14.0416Z",
@@ -489,7 +491,7 @@ const config$2X = {
489
491
  })
490
492
  };
491
493
 
492
- const config$2W = {
494
+ const config$2V = {
493
495
  viewBox: '0 0 20 20',
494
496
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
495
497
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -509,7 +511,7 @@ const config$2W = {
509
511
  tag: ["square"]
510
512
  };
511
513
 
512
- const config$2V = {
514
+ const config$2U = {
513
515
  viewBox: "0 0 21 20",
514
516
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
515
517
  d: "M10.25 18.3337C14.8524 18.3337 18.5834 14.6027 18.5834 10.0003C18.5834 5.39795 14.8524 1.66699 10.25 1.66699C5.64765 1.66699 1.91669 5.39795 1.91669 10.0003C1.91669 14.6027 5.64765 18.3337 10.25 18.3337Z",
@@ -521,7 +523,7 @@ const config$2V = {
521
523
  tag: ["circle"]
522
524
  };
523
525
 
524
- const config$2U = {
526
+ const config$2T = {
525
527
  viewBox: '0 0 19 19',
526
528
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
527
529
  d: "M9.20001 7.625V4.41667M9.20001 10.8333H9.20918M7.27501 15.6L8.61335 17.3844C8.81237 17.6498 8.91188 17.7825 9.03388 17.8299C9.14074 17.8715 9.25929 17.8715 9.36614 17.8299C9.48814 17.7825 9.58765 17.6498 9.78668 17.3844L11.125 15.6C11.3937 15.2417 11.5281 15.0626 11.692 14.9258C11.9105 14.7434 12.1685 14.6144 12.4455 14.549C12.6532 14.5 12.8771 14.5 13.325 14.5C14.6064 14.5 15.247 14.5 15.7524 14.2907C16.4262 14.0116 16.9616 13.4762 17.2407 12.8024C17.45 12.297 17.45 11.6563 17.45 10.375V5.15C17.45 3.60986 17.45 2.83978 17.1503 2.25153C16.8866 1.73408 16.4659 1.31338 15.9485 1.04973C15.3602 0.75 14.5902 0.75 13.05 0.75H5.35001C3.80987 0.75 3.0398 0.75 2.45154 1.04973C1.93409 1.31338 1.5134 1.73408 1.24974 2.25153C0.950012 2.83978 0.950012 3.60986 0.950012 5.15V10.375C0.950012 11.6563 0.950012 12.297 1.15934 12.8024C1.43845 13.4762 1.97381 14.0116 2.64763 14.2907C3.153 14.5 3.79367 14.5 5.07501 14.5C5.52288 14.5 5.74681 14.5 5.95456 14.549C6.23156 14.6144 6.48954 14.7434 6.70805 14.9258C6.87194 15.0626 7.00629 15.2417 7.27501 15.6Z",
@@ -532,7 +534,7 @@ const config$2U = {
532
534
  })
533
535
  };
534
536
 
535
- const config$2T = {
537
+ const config$2S = {
536
538
  viewBox: '0 0 22 22',
537
539
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
538
540
  d: "M12.8334 2.08044V5.86677C12.8334 6.38015 12.8334 6.63684 12.9333 6.83293C13.0211 7.00541 13.1614 7.14564 13.3339 7.23353C13.5299 7.33344 13.7866 7.33344 14.3 7.33344H18.0863M8.25002 14.6667L10.0834 16.5L14.2084 12.375M12.8334 1.83337H8.06669C6.52654 1.83337 5.75647 1.83337 5.16821 2.13311C4.65077 2.39676 4.23007 2.81745 3.96642 3.3349C3.66669 3.92316 3.66669 4.69323 3.66669 6.23337V15.7667C3.66669 17.3069 3.66669 18.0769 3.96642 18.6652C4.23007 19.1826 4.65077 19.6033 5.16821 19.867C5.75647 20.1667 6.52654 20.1667 8.06669 20.1667H13.9334C15.4735 20.1667 16.2436 20.1667 16.8318 19.867C17.3493 19.6033 17.77 19.1826 18.0336 18.6652C18.3334 18.0769 18.3334 17.3069 18.3334 15.7667V7.33337L12.8334 1.83337Z",
@@ -544,7 +546,7 @@ const config$2T = {
544
546
  tag: ['file', 'check']
545
547
  };
546
548
 
547
- const config$2S = {
549
+ const config$2R = {
548
550
  viewBox: '0 0 23 22',
549
551
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
550
552
  d: "M10.5834 4.12504H17.275C18.3018 4.12504 18.8152 4.12504 19.2074 4.32486C19.5523 4.50063 19.8328 4.78109 20.0086 5.12606C20.2084 5.51823 20.2084 6.03161 20.2084 7.05837V8.25004C20.2084 9.10427 20.2084 9.53138 20.0688 9.86829C19.8827 10.3175 19.5258 10.6744 19.0766 10.8605C18.7397 11 18.3126 11 17.4584 11M12.4167 17.875H5.72504C4.69828 17.875 4.1849 17.875 3.79272 17.6752C3.44776 17.4995 3.1673 17.219 2.99153 16.874C2.79171 16.4819 2.79171 15.9685 2.79171 14.9417V13.75C2.79171 12.8958 2.79171 12.4687 2.93126 12.1318C3.11733 11.6826 3.47424 11.3257 3.92345 11.1396C4.26037 11 4.68748 11 5.54171 11M9.94171 13.2917H13.0584C13.3151 13.2917 13.4434 13.2917 13.5415 13.2418C13.6277 13.1978 13.6978 13.1277 13.7418 13.0415C13.7917 12.9434 13.7917 12.8151 13.7917 12.5584V9.44171C13.7917 9.18502 13.7917 9.05667 13.7418 8.95863C13.6978 8.87239 13.6277 8.80227 13.5415 8.75833C13.4434 8.70837 13.3151 8.70837 13.0584 8.70837H9.94171C9.68502 8.70837 9.55667 8.70837 9.45863 8.75833C9.37239 8.80227 9.30227 8.87239 9.25833 8.95863C9.20837 9.05667 9.20837 9.18502 9.20837 9.44171V12.5584C9.20837 12.8151 9.20837 12.9434 9.25833 13.0415C9.30227 13.1277 9.37239 13.1978 9.45863 13.2418C9.55667 13.2917 9.68502 13.2917 9.94171 13.2917ZM16.8167 20.1667H19.9334C20.1901 20.1667 20.3184 20.1667 20.4165 20.1168C20.5027 20.0728 20.5728 20.0027 20.6168 19.9165C20.6667 19.8184 20.6667 19.6901 20.6667 19.4334V16.3167C20.6667 16.06 20.6667 15.9317 20.6168 15.8336C20.5728 15.7474 20.5027 15.6773 20.4165 15.6333C20.3184 15.5834 20.1901 15.5834 19.9334 15.5834H16.8167C16.56 15.5834 16.4317 15.5834 16.3336 15.6333C16.2474 15.6773 16.1773 15.7474 16.1333 15.8336C16.0834 15.9317 16.0834 16.06 16.0834 16.3167V19.4334C16.0834 19.6901 16.0834 19.8184 16.1333 19.9165C16.1773 20.0027 16.2474 20.0728 16.3336 20.1168C16.4317 20.1667 16.56 20.1667 16.8167 20.1667ZM3.06671 6.41671H6.18337C6.44006 6.41671 6.56841 6.41671 6.66645 6.36675C6.75269 6.32281 6.82281 6.25269 6.86675 6.16645C6.91671 6.06841 6.91671 5.94006 6.91671 5.68337V2.56671C6.91671 2.31002 6.91671 2.18167 6.86675 2.08363C6.82281 1.99739 6.75269 1.92727 6.66645 1.88333C6.56841 1.83337 6.44006 1.83337 6.18337 1.83337H3.06671C2.81002 1.83337 2.68167 1.83337 2.58363 1.88333C2.49739 1.92727 2.42727 1.99739 2.38333 2.08363C2.33337 2.18167 2.33337 2.31002 2.33337 2.56671V5.68337C2.33337 5.94006 2.33337 6.06841 2.38333 6.16645C2.42727 6.25269 2.49739 6.32281 2.58363 6.36675C2.68167 6.41671 2.81002 6.41671 3.06671 6.41671Z",
@@ -555,7 +557,7 @@ const config$2S = {
555
557
  })
556
558
  };
557
559
 
558
- const config$2R = {
560
+ const config$2Q = {
559
561
  viewBox: '0 0 12 12',
560
562
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
561
563
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -569,7 +571,7 @@ const config$2R = {
569
571
  tag: ['logo']
570
572
  };
571
573
 
572
- const config$2Q = {
574
+ const config$2P = {
573
575
  viewBox: "0 0 23 22",
574
576
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
575
577
  d: "M15.1667 3.66666C16.0191 3.66666 16.4454 3.66666 16.7951 3.76037C17.7441 4.01465 18.4853 4.75591 18.7396 5.70491C18.8333 6.05462 18.8333 6.48085 18.8333 7.33333V15.7667C18.8333 17.3068 18.8333 18.0769 18.5336 18.6651C18.2699 19.1826 17.8492 19.6033 17.3318 19.8669C16.7435 20.1667 15.9735 20.1667 14.4333 20.1667H8.56666C7.02652 20.1667 6.25645 20.1667 5.66819 19.8669C5.15074 19.6033 4.73005 19.1826 4.4664 18.6651C4.16666 18.0769 4.16666 17.3068 4.16666 15.7667V7.33333C4.16666 6.48085 4.16666 6.05462 4.26037 5.70491C4.51465 4.75591 5.25591 4.01465 6.20491 3.76037C6.55462 3.66666 6.98086 3.66666 7.83333 3.66666M8.75 13.75L10.5833 15.5833L14.7083 11.4583M9.3 5.49999H13.7C14.2134 5.49999 14.4701 5.49999 14.6662 5.40008C14.8386 5.3122 14.9789 5.17197 15.0668 4.99949C15.1667 4.8034 15.1667 4.54671 15.1667 4.03333V3.29999C15.1667 2.78661 15.1667 2.52992 15.0668 2.33384C14.9789 2.16136 14.8386 2.02112 14.6662 1.93324C14.4701 1.83333 14.2134 1.83333 13.7 1.83333H9.3C8.78662 1.83333 8.52993 1.83333 8.33384 1.93324C8.16136 2.02112 8.02113 2.16136 7.93324 2.33384C7.83333 2.52992 7.83333 2.78661 7.83333 3.29999V4.03333C7.83333 4.54671 7.83333 4.8034 7.93324 4.99949C8.02113 5.17197 8.16136 5.3122 8.33384 5.40008C8.52993 5.49999 8.78662 5.49999 9.3 5.49999Z",
@@ -581,7 +583,7 @@ const config$2Q = {
581
583
  tag: ["file", "check"]
582
584
  };
583
585
 
584
- const config$2P = {
586
+ const config$2O = {
585
587
  viewBox: "0 0 22 22",
586
588
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
587
589
  d: "M7.87417 12.3842L14.135 16.0325M14.1258 5.96749L7.87417 9.61583M19.25 4.58333C19.25 6.10211 18.0188 7.33333 16.5 7.33333C14.9812 7.33333 13.75 6.10211 13.75 4.58333C13.75 3.06455 14.9812 1.83333 16.5 1.83333C18.0188 1.83333 19.25 3.06455 19.25 4.58333ZM8.25 11C8.25 12.5188 7.01878 13.75 5.5 13.75C3.98122 13.75 2.75 12.5188 2.75 11C2.75 9.48121 3.98122 8.24999 5.5 8.24999C7.01878 8.24999 8.25 9.48121 8.25 11ZM19.25 17.4167C19.25 18.9354 18.0188 20.1667 16.5 20.1667C14.9812 20.1667 13.75 18.9354 13.75 17.4167C13.75 15.8979 14.9812 14.6667 16.5 14.6667C18.0188 14.6667 19.25 15.8979 19.25 17.4167Z",
@@ -593,7 +595,7 @@ const config$2P = {
593
595
  tag: ["action"]
594
596
  };
595
597
 
596
- const config$2O = {
598
+ const config$2N = {
597
599
  viewBox: '0 0 57 57',
598
600
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
599
601
  d: "M36.8475 36.9451V20.1003M36.8475 20.1003H20.0027M36.8475 20.1003L20.0027 36.9448M16.6332 53.7898H40.2159C44.9329 53.7898 47.2914 53.7898 49.0931 52.8718C50.6779 52.0644 51.9663 50.7759 52.7738 49.1911C53.6918 47.3895 53.6918 45.031 53.6918 40.314V16.7312C53.6918 12.0142 53.6918 9.65569 52.7738 7.85403C51.9663 6.26925 50.6779 4.98078 49.0931 4.1733C47.2914 3.25531 44.9329 3.25531 40.216 3.25531H16.6332C11.9162 3.25531 9.55768 3.25531 7.75602 4.1733C6.17124 4.98078 4.88278 6.26925 4.07529 7.85403C3.1573 9.65569 3.1573 12.0142 3.1573 16.7312V40.314C3.1573 45.031 3.1573 47.3895 4.07529 49.1911C4.88278 50.7759 6.17124 52.0644 7.75602 52.8718C9.55768 53.7898 11.9162 53.7898 16.6332 53.7898Z",
@@ -605,7 +607,7 @@ const config$2O = {
605
607
  tag: ['arrow']
606
608
  };
607
609
 
608
- const config$2N = {
610
+ const config$2M = {
609
611
  viewBox: "0 0 18 18",
610
612
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
611
613
  d: "M12.3333 13.3916L16.5 9.22498M16.5 9.22498L12.3333 5.05831M16.5 9.22498H6.5M6.5 1.72498H5.5C4.09987 1.72498 3.3998 1.72498 2.86502 1.99746C2.39462 2.23714 2.01217 2.61959 1.77248 3.09C1.5 3.62478 1.5 4.32484 1.5 5.72498V12.725C1.5 14.1251 1.5 14.8252 1.77248 15.36C2.01217 15.8304 2.39462 16.2128 2.86502 16.4525C3.3998 16.725 4.09987 16.725 5.5 16.725H6.5",
@@ -617,7 +619,7 @@ const config$2N = {
617
619
  tag: ["arrow", "action"]
618
620
  };
619
621
 
620
- const config$2M = {
622
+ const config$2L = {
621
623
  viewBox: "0 0 12 12",
622
624
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
623
625
  d: "M9 3L3 9M3 3L9 9",
@@ -629,7 +631,7 @@ const config$2M = {
629
631
  tag: ["action"]
630
632
  };
631
633
 
632
- const config$2L = {
634
+ const config$2K = {
633
635
  viewBox: "0 0 18 18",
634
636
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
635
637
  d: "M17.4713 14.764C18.1744 15.4476 18.1744 16.555 17.4713 17.2386C17.1225 17.5804 16.6612 17.7499 16.2 17.7499C15.7387 17.7499 15.2786 17.579 14.9276 17.2372L9 11.4772L3.07294 17.2358C2.72137 17.5804 2.26069 17.7499 1.8 17.7499C1.33931 17.7499 0.879187 17.5804 0.527344 17.2358C-0.175781 16.5522 -0.175781 15.4448 0.527344 14.7612L6.45609 8.99716L0.527344 3.23584C-0.175781 2.55225 -0.175781 1.44482 0.527344 0.76123C1.23047 0.0776368 2.36953 0.0776368 3.07266 0.76123L9 6.52803L14.9287 0.763965C15.6319 0.0803713 16.7709 0.0803713 17.4741 0.763965C18.1772 1.44756 18.1772 2.55498 17.4741 3.23857L11.5453 9.00263L17.4713 14.764Z",
@@ -638,7 +640,7 @@ const config$2L = {
638
640
  tag: ["action"]
639
641
  };
640
642
 
641
- const config$2K = {
643
+ const config$2J = {
642
644
  viewBox: "0 0 16 16",
643
645
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
644
646
  d: "M9.99999 5.99998L5.99999 9.99998M5.99999 5.99998L9.99999 9.99998M14.6667 7.99998C14.6667 11.6819 11.6819 14.6666 7.99999 14.6666C4.3181 14.6666 1.33333 11.6819 1.33333 7.99998C1.33333 4.31808 4.3181 1.33331 7.99999 1.33331C11.6819 1.33331 14.6667 4.31808 14.6667 7.99998Z",
@@ -650,7 +652,7 @@ const config$2K = {
650
652
  tag: ["circle"]
651
653
  };
652
654
 
653
- const config$2J = {
655
+ const config$2I = {
654
656
  viewBox: "0 0 17 16",
655
657
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
656
658
  d: "M8.5 0.518125C8.5 0.236094 8.69063 0 9 0C12.8656 0 16 3.13438 16 7C16 7.28125 15.7625 7.5 15.4813 7.5H8.5V0.518125ZM0 8.5C0 4.70937 2.81563 1.57313 6.44063 1.07031C6.75625 1.03094 7 1.26125 7 1.55031V9L11.8906 13.8906C12.1 14.1 12.0844 14.4438 11.8438 14.6156C10.6187 15.4875 9.11875 16 7.5 16C3.35938 16 0 12.6438 0 8.5ZM16.45 9C16.7375 9 16.9688 9.24375 16.9312 9.53125C16.6906 11.2781 15.8469 12.8312 14.6219 13.9781C14.4344 14.1281 14.1406 14.1406 13.9594 13.9594L9 9H16.45Z",
@@ -659,7 +661,7 @@ const config$2J = {
659
661
  tag: ["chart"]
660
662
  };
661
663
 
662
- const config$2I = {
664
+ const config$2H = {
663
665
  viewBox: "0 0 18 14",
664
666
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
665
667
  d: "M6.5 1.5C6.5 0.671562 7.17188 0 8 0H10C10.8281 0 11.5 0.671562 11.5 1.5V3.5C11.5 4.32812 10.8281 5 10 5H9.75V6.25H14.5C15.4656 6.25 16.25 7.03438 16.25 8V9H16.5C17.3281 9 18 9.67188 18 10.5V12.5C18 13.3281 17.3281 14 16.5 14H14.5C13.6719 14 13 13.3281 13 12.5V10.5C13 9.67188 13.6719 9 14.5 9H14.75V8C14.75 7.8625 14.6375 7.75 14.5 7.75H9.75V9H10C10.8281 9 11.5 9.67188 11.5 10.5V12.5C11.5 13.3281 10.8281 14 10 14H8C7.17188 14 6.5 13.3281 6.5 12.5V10.5C6.5 9.67188 7.17188 9 8 9H8.25V7.75H3.5C3.3625 7.75 3.25 7.8625 3.25 8V9H3.5C4.32812 9 5 9.67188 5 10.5V12.5C5 13.3281 4.32812 14 3.5 14H1.5C0.671562 14 0 13.3281 0 12.5V10.5C0 9.67188 0.671562 9 1.5 9H1.75V8C1.75 7.03438 2.53344 6.25 3.5 6.25H8.25V5H8C7.17188 5 6.5 4.32812 6.5 3.5V1.5Z",
@@ -668,7 +670,7 @@ const config$2I = {
668
670
  tag: ["chart"]
669
671
  };
670
672
 
671
- const config$2H = {
673
+ const config$2G = {
672
674
  viewBox: '0 0 18 14',
673
675
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
674
676
  d: "M1.5 3.66699L11.5 3.66699M11.5 3.66699C11.5 5.0477 12.6193 6.16699 14 6.16699C15.3807 6.16699 16.5 5.0477 16.5 3.66699C16.5 2.28628 15.3807 1.16699 14 1.16699C12.6193 1.16699 11.5 2.28628 11.5 3.66699ZM6.5 10.3337L16.5 10.3337M6.5 10.3337C6.5 11.7144 5.38071 12.8337 4 12.8337C2.61929 12.8337 1.5 11.7144 1.5 10.3337C1.5 8.95295 2.61929 7.83366 4 7.83366C5.38071 7.83366 6.5 8.95295 6.5 10.3337Z",
@@ -679,7 +681,7 @@ const config$2H = {
679
681
  })
680
682
  };
681
683
 
682
- const config$2G = {
684
+ const config$2F = {
683
685
  viewBox: '0 0 21 18',
684
686
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
685
687
  d: "M0 1.5C0 0.671719 0.671719 0 1.5 0H19.5C20.3297 0 21 0.671719 21 1.5C21 2.32969 20.3297 3 19.5 3H1.5C0.671719 3 0 2.32969 0 1.5ZM0 9C0 8.17031 0.671719 7.5 1.5 7.5H19.5C20.3297 7.5 21 8.17031 21 9C21 9.82969 20.3297 10.5 19.5 10.5H1.5C0.671719 10.5 0 9.82969 0 9ZM19.5 18H1.5C0.671719 18 0 17.3297 0 16.5C0 15.6703 0.671719 15 1.5 15H19.5C20.3297 15 21 15.6703 21 16.5C21 17.3297 20.3297 18 19.5 18Z",
@@ -687,7 +689,7 @@ const config$2G = {
687
689
  })
688
690
  };
689
691
 
690
- const config$2F = {
692
+ const config$2E = {
691
693
  viewBox: '0 0 14 14',
692
694
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
693
695
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -701,7 +703,7 @@ const config$2F = {
701
703
  tag: ['arrow']
702
704
  };
703
705
 
704
- const config$2E = {
706
+ const config$2D = {
705
707
  viewBox: '0 0 19 19',
706
708
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
707
709
  d: "M13.2344 2.53483C15.6162 3.91266 17.2188 6.48794 17.2188 9.4375C17.2188 13.8385 13.651 17.4062 9.25 17.4062C4.84898 17.4062 1.28125 13.8385 1.28125 9.4375C1.28125 6.48794 2.88376 3.91266 5.26563 2.53483M6.0625 9.43744L9.25 12.6249M9.25 12.6249L12.4375 9.43744M9.25 12.6249L9.25 1.46869",
@@ -713,7 +715,7 @@ const config$2E = {
713
715
  tag: ['arrow']
714
716
  };
715
717
 
716
- const config$2D = {
718
+ const config$2C = {
717
719
  viewBox: "0 0 20 18",
718
720
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
719
721
  d: "M1.6665 2.83333C1.6665 2.36662 1.6665 2.13327 1.75733 1.95501C1.83723 1.79821 1.96471 1.67072 2.12151 1.59083C2.29977 1.5 2.53313 1.5 2.99984 1.5H16.9998C17.4665 1.5 17.6999 1.5 17.8782 1.59083C18.035 1.67072 18.1624 1.79821 18.2423 1.95501C18.3332 2.13327 18.3332 2.36662 18.3332 2.83333V3.39116C18.3332 3.61516 18.3332 3.72716 18.3058 3.8313C18.2815 3.92359 18.2416 4.01103 18.1878 4.0898C18.127 4.17869 18.0424 4.25204 17.8731 4.39875L12.5433 9.01792C12.374 9.16462 12.2894 9.23797 12.2286 9.32687C12.1747 9.40564 12.1348 9.49308 12.1105 9.58536C12.0832 9.68951 12.0832 9.80151 12.0832 10.0255V14.382C12.0832 14.5449 12.0832 14.6264 12.0569 14.6969C12.0337 14.7591 11.9959 14.8149 11.9467 14.8596C11.8911 14.9102 11.8154 14.9404 11.6641 15.001L8.83076 16.1343C8.52448 16.2568 8.37133 16.3181 8.2484 16.2925C8.14089 16.2702 8.04655 16.2063 7.98588 16.1148C7.9165 16.0101 7.9165 15.8452 7.9165 15.5153V10.0255C7.9165 9.80151 7.9165 9.68951 7.88913 9.58536C7.86488 9.49308 7.82495 9.40564 7.77109 9.32687C7.71032 9.23797 7.62568 9.16462 7.45641 9.01792L2.1266 4.39875C1.95732 4.25204 1.87269 4.17869 1.81191 4.0898C1.75806 4.01103 1.71813 3.92359 1.69388 3.8313C1.6665 3.72716 1.6665 3.61516 1.6665 3.39116V2.83333Z",
@@ -725,7 +727,7 @@ const config$2D = {
725
727
  tag: ["action"]
726
728
  };
727
729
 
728
- const config$2C = {
730
+ const config$2B = {
729
731
  viewBox: '0 0 12 12',
730
732
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
731
733
  d: "M11.875 10.375H1.125V0.625C1.125 0.55625 1.06875 0.5 1 0.5H0.125C0.05625 0.5 0 0.55625 0 0.625V11.375C0 11.4438 0.05625 11.5 0.125 11.5H11.875C11.9438 11.5 12 11.4438 12 11.375V10.5C12 10.4312 11.9438 10.375 11.875 10.375ZM2.5 9.125H3.375C3.44375 9.125 3.5 9.06875 3.5 9V6.75C3.5 6.68125 3.44375 6.625 3.375 6.625H2.5C2.43125 6.625 2.375 6.68125 2.375 6.75V9C2.375 9.06875 2.43125 9.125 2.5 9.125ZM4.875 9.125H5.75C5.81875 9.125 5.875 9.06875 5.875 9V4C5.875 3.93125 5.81875 3.875 5.75 3.875H4.875C4.80625 3.875 4.75 3.93125 4.75 4V9C4.75 9.06875 4.80625 9.125 4.875 9.125ZM7.25 9.125H8.125C8.19375 9.125 8.25 9.06875 8.25 9V5.21875C8.25 5.15 8.19375 5.09375 8.125 5.09375H7.25C7.18125 5.09375 7.125 5.15 7.125 5.21875V9C7.125 9.06875 7.18125 9.125 7.25 9.125ZM9.625 9.125H10.5C10.5688 9.125 10.625 9.06875 10.625 9V2.75C10.625 2.68125 10.5688 2.625 10.5 2.625H9.625C9.55625 2.625 9.5 2.68125 9.5 2.75V9C9.5 9.06875 9.55625 9.125 9.625 9.125Z",
@@ -733,7 +735,7 @@ const config$2C = {
733
735
  })
734
736
  };
735
737
 
736
- const config$2B = {
738
+ const config$2A = {
737
739
  viewBox: '0 0 12 12',
738
740
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
739
741
  d: "M6.96953 8.39766C6.94604 8.37439 6.91431 8.36134 6.88125 8.36134C6.84819 8.36134 6.81646 8.37439 6.79297 8.39766L4.97734 10.2133C4.13672 11.0539 2.71797 11.143 1.78984 10.2133C0.860156 9.28359 0.949219 7.86641 1.78984 7.02578L3.60547 5.21016C3.65391 5.16172 3.65391 5.08203 3.60547 5.03359L2.98359 4.41172C2.9601 4.38846 2.92838 4.37541 2.89531 4.37541C2.86225 4.37541 2.83053 4.38846 2.80703 4.41172L0.991406 6.22734C-0.330469 7.54922 -0.330469 9.68828 0.991406 11.0086C2.31328 12.3289 4.45234 12.3305 5.77266 11.0086L7.58828 9.19297C7.63672 9.14453 7.63672 9.06485 7.58828 9.01641L6.96953 8.39766ZM11.0102 0.991406C9.68828 -0.330469 7.54922 -0.330469 6.22891 0.991406L4.41172 2.80703C4.38846 2.83053 4.37541 2.86225 4.37541 2.89531C4.37541 2.92838 4.38846 2.9601 4.41172 2.98359L5.03203 3.60391C5.08047 3.65234 5.16016 3.65234 5.20859 3.60391L7.02422 1.78828C7.86484 0.947656 9.2836 0.858594 10.2117 1.78828C11.1414 2.71797 11.0523 4.13516 10.2117 4.97578L8.39609 6.79141C8.37283 6.8149 8.35978 6.84663 8.35978 6.87969C8.35978 6.91275 8.37283 6.94448 8.39609 6.96797L9.01797 7.58985C9.06641 7.63828 9.1461 7.63828 9.19453 7.58985L11.0102 5.77422C12.3305 4.45234 12.3305 2.31328 11.0102 0.991406ZM7.53359 3.81797C7.5101 3.79471 7.47838 3.78166 7.44531 3.78166C7.41225 3.78166 7.38053 3.79471 7.35703 3.81797L3.81797 7.35547C3.79471 7.37896 3.78166 7.41069 3.78166 7.44375C3.78166 7.47681 3.79471 7.50854 3.81797 7.53203L4.43672 8.15078C4.48516 8.19922 4.56484 8.19922 4.61328 8.15078L8.15078 4.61328C8.19922 4.56484 8.19922 4.48516 8.15078 4.43672L7.53359 3.81797Z",
@@ -741,7 +743,7 @@ const config$2B = {
741
743
  })
742
744
  };
743
745
 
744
- const config$2A = {
746
+ const config$2z = {
745
747
  viewBox: "0 0 16 18",
746
748
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
747
749
  d: "M11.2587 4.51039V3.91178C11.2587 3.07364 11.2587 2.65458 11.0956 2.33445C10.9521 2.05286 10.7232 1.82392 10.4416 1.68045C10.1214 1.51733 9.70237 1.51733 8.86424 1.51733H7.66701C6.82888 1.51733 6.40981 1.51733 6.08969 1.68045C5.8081 1.82392 5.57916 2.05286 5.43568 2.33445C5.27257 2.65458 5.27257 3.07364 5.27257 3.91178V4.51039M6.7691 8.62584V12.3672M9.76215 8.62584V12.3672M1.53125 4.51039H15M13.5035 4.51039V12.8909C13.5035 14.1481 13.5035 14.7767 13.2588 15.2569C13.0436 15.6793 12.7002 16.0227 12.2778 16.2379C11.7976 16.4826 11.169 16.4826 9.91181 16.4826H6.61944C5.36224 16.4826 4.73364 16.4826 4.25346 16.2379C3.83107 16.0227 3.48766 15.6793 3.27245 15.2569C3.02778 14.7767 3.02778 14.1481 3.02778 12.8909V4.51039",
@@ -753,7 +755,7 @@ const config$2A = {
753
755
  tag: ["action"]
754
756
  };
755
757
 
756
- const config$2z = {
758
+ const config$2y = {
757
759
  viewBox: "0 0 15 14",
758
760
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
759
761
  d: "M6.56745 2.02839H3.93741C2.88529 2.02839 2.35923 2.02839 1.95738 2.23314C1.60389 2.41325 1.3165 2.70064 1.1364 3.05412C0.931641 3.45598 0.931641 3.98204 0.931641 5.03415V10.2942C0.931641 11.3464 0.931641 11.8724 1.1364 12.2743C1.3165 12.6278 1.60389 12.9151 1.95738 13.0953C2.35923 13.3 2.88529 13.3 3.93741 13.3H9.1975C10.2496 13.3 10.7757 13.3 11.1775 13.0953C11.531 12.9151 11.8184 12.6278 11.9985 12.2743C12.2033 11.8724 12.2033 11.3464 12.2033 10.2942V7.6642M4.68883 9.5428H5.73743C6.04376 9.5428 6.19692 9.5428 6.34106 9.5082C6.46885 9.47752 6.59101 9.42692 6.70307 9.35825C6.82946 9.2808 6.93776 9.1725 7.15437 8.95589L13.1426 2.96769C13.6613 2.44893 13.6613 1.60785 13.1426 1.08908C12.6238 0.570322 11.7827 0.570321 11.264 1.08908L5.27575 7.07729C5.05914 7.29389 4.95084 7.40219 4.87339 7.52858C4.80472 7.64064 4.75412 7.7628 4.72344 7.89059C4.68883 8.03473 4.68883 8.18789 4.68883 8.49422V9.5428Z",
@@ -765,7 +767,7 @@ const config$2z = {
765
767
  tag: ["edit"]
766
768
  };
767
769
 
768
- const config$2y = {
770
+ const config$2x = {
769
771
  viewBox: "0 0 11 11",
770
772
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
771
773
  d: "M9.99999 9.00012L9.49994 9.54714C9.23473 9.83718 8.87507 10.0001 8.50006 10.0001C8.12505 10.0001 7.7654 9.83718 7.50019 9.54714C7.23461 9.25768 6.87499 9.09515 6.50009 9.09515C6.12519 9.09515 5.76557 9.25768 5.49999 9.54714M1 10.0001H1.83727C2.08186 10.0001 2.20416 10.0001 2.31925 9.97248C2.42128 9.94799 2.51883 9.90758 2.6083 9.85275C2.70921 9.79091 2.79569 9.70444 2.96864 9.53148L9.25001 3.25011C9.66423 2.8359 9.66423 2.16433 9.25001 1.75011C8.8358 1.3359 8.16423 1.3359 7.75001 1.75011L1.46863 8.03148C1.29568 8.20444 1.2092 8.29091 1.14736 8.39183C1.09253 8.4813 1.05213 8.57885 1.02763 8.68088C1 8.79597 1 8.91826 1 9.16286V10.0001Z",
@@ -776,7 +778,7 @@ const config$2y = {
776
778
  tag: ["edit"]
777
779
  };
778
780
 
779
- const config$2x = {
781
+ const config$2w = {
780
782
  viewBox: '0 0 12 12',
781
783
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
782
784
  d: "M1.56667 6.83068L2.40648 10.1899C2.4301 10.2844 2.44191 10.3316 2.45588 10.3729C2.59236 10.7758 2.95521 11.0591 3.37921 11.0938C3.42261 11.0973 3.47131 11.0973 3.56869 11.0973C3.69063 11.0973 3.75161 11.0973 3.80297 11.0924C4.31066 11.0431 4.71244 10.6413 4.76168 10.1337C4.76667 10.0823 4.76667 10.0213 4.76667 9.89937V2.29735M9.3 6.56401C10.3309 6.56401 11.1667 5.72828 11.1667 4.69735C11.1667 3.66642 10.3309 2.83068 9.3 2.83068M4.9 2.29735H2.9C1.57452 2.29735 0.499999 3.37187 0.5 4.69735C0.500001 6.02283 1.57452 7.09735 2.9 7.09735H4.9C5.84209 7.09735 6.99453 7.60235 7.88362 8.08702C8.40231 8.36977 8.66165 8.51115 8.8315 8.49034C8.98901 8.47105 9.10811 8.40033 9.20043 8.27127C9.3 8.13209 9.3 7.85361 9.3 7.29666V2.09803C9.3 1.54108 9.3 1.2626 9.20043 1.12342C9.10811 0.994363 8.98901 0.923642 8.8315 0.904351C8.66165 0.883547 8.40231 1.02492 7.88362 1.30767C6.99453 1.79234 5.84209 2.29735 4.9 2.29735Z",
@@ -787,7 +789,7 @@ const config$2x = {
787
789
  })
788
790
  };
789
791
 
790
- const config$2w = {
792
+ const config$2v = {
791
793
  viewBox: '0 0 16 16',
792
794
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
793
795
  d: "M4.59798 13.7748C2.60531 12.6221 1.26465 10.4676 1.26465 7.99998C1.26465 4.31808 4.24942 1.33331 7.93132 1.33331C11.6132 1.33331 14.598 4.31808 14.598 7.99998C14.598 10.4676 13.2573 12.6221 11.2646 13.7748M10.598 8.00003L7.93131 5.33336M7.93131 5.33336L5.26465 8.00003M7.93131 5.33336V14.6667",
@@ -799,7 +801,7 @@ const config$2w = {
799
801
  tag: ['arrow']
800
802
  };
801
803
 
802
- const config$2v = {
804
+ const config$2u = {
803
805
  viewBox: '0 0 21 21',
804
806
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
805
807
  children: [/*#__PURE__*/jsxRuntime.jsxs("g", {
@@ -846,7 +848,7 @@ const config$2v = {
846
848
  tag: ['map']
847
849
  };
848
850
 
849
- const config$2u = {
851
+ const config$2t = {
850
852
  viewBox: '0 0 17 17',
851
853
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
852
854
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -863,7 +865,7 @@ const config$2u = {
863
865
  tag: ['circle']
864
866
  };
865
867
 
866
- const config$2t = {
868
+ const config$2s = {
867
869
  viewBox: "0 0 16 17",
868
870
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
869
871
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -880,7 +882,7 @@ const config$2t = {
880
882
  tag: ["circle", "add"]
881
883
  };
882
884
 
883
- const config$2s = {
885
+ const config$2r = {
884
886
  viewBox: "0 0 16 16",
885
887
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
886
888
  d: "M7.99998 3.83331V13.1666M3.33331 8.49998H12.6666",
@@ -892,7 +894,7 @@ const config$2s = {
892
894
  tag: ["add"]
893
895
  };
894
896
 
895
- const config$2r = {
897
+ const config$2q = {
896
898
  viewBox: '0 0 3 14',
897
899
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
898
900
  children: [/*#__PURE__*/jsxRuntime.jsx("circle", {
@@ -914,7 +916,7 @@ const config$2r = {
914
916
  })
915
917
  };
916
918
 
917
- const config$2q = {
919
+ const config$2p = {
918
920
  viewBox: '0 0 22 20',
919
921
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
920
922
  d: "M10.9571 7.68584V11.4216M10.9571 15.1574H10.9664M9.66385 2.91499L1.98225 16.1832C1.55618 16.9191 1.34315 17.2871 1.37463 17.5891C1.40209 17.8525 1.5401 18.0919 1.75431 18.2477C1.9999 18.4262 2.42509 18.4262 3.27547 18.4262H18.6387C19.489 18.4262 19.9142 18.4262 20.1598 18.2477C20.374 18.0919 20.512 17.8525 20.5395 17.5891C20.571 17.2871 20.358 16.9191 19.9319 16.1832L12.2503 2.91498C11.8257 2.18168 11.6135 1.81503 11.3365 1.69189C11.095 1.58447 10.8192 1.58447 10.5776 1.69189C10.3007 1.81503 10.0884 2.18168 9.66385 2.91499Z",
@@ -925,7 +927,7 @@ const config$2q = {
925
927
  })
926
928
  };
927
929
 
928
- const config$2p = {
930
+ const config$2o = {
929
931
  viewBox: "0 0 18 18",
930
932
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
931
933
  d: "M16.5 16.5L13.5834 13.5833M15.6667 8.58333C15.6667 12.4954 12.4954 15.6667 8.58333 15.6667C4.67132 15.6667 1.5 12.4954 1.5 8.58333C1.5 4.67132 4.67132 1.5 8.58333 1.5C12.4954 1.5 15.6667 4.67132 15.6667 8.58333Z",
@@ -937,7 +939,7 @@ const config$2p = {
937
939
  tag: ["action"]
938
940
  };
939
941
 
940
- const config$2o = {
942
+ const config$2n = {
941
943
  viewBox: '0 0 16 18',
942
944
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
943
945
  d: "M14.75 7.5H1.25M11 1.5V4.5M5 1.5V4.5M4.85 16.5H11.15C12.4101 16.5 13.0402 16.5 13.5215 16.2548C13.9448 16.039 14.289 15.6948 14.5048 15.2715C14.75 14.7902 14.75 14.1601 14.75 12.9V6.6C14.75 5.33988 14.75 4.70982 14.5048 4.22852C14.289 3.80516 13.9448 3.46095 13.5215 3.24524C13.0402 3 12.4101 3 11.15 3H4.85C3.58988 3 2.95982 3 2.47852 3.24524C2.05516 3.46095 1.71095 3.80516 1.49524 4.22852C1.25 4.70982 1.25 5.33988 1.25 6.6V12.9C1.25 14.1601 1.25 14.7902 1.49524 15.2715C1.71095 15.6948 2.05516 16.039 2.47852 16.2548C2.95982 16.5 3.58988 16.5 4.85 16.5Z",
@@ -948,7 +950,7 @@ const config$2o = {
948
950
  })
949
951
  };
950
952
 
951
- const config$2n = {
953
+ const config$2m = {
952
954
  viewBox: '0 0 18 16',
953
955
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
954
956
  d: "M16.5 14.75V13.25C16.5 11.8521 15.5439 10.6775 14.25 10.3445M11.625 1.46807C12.7244 1.91311 13.5 2.99098 13.5 4.25C13.5 5.50902 12.7244 6.58689 11.625 7.03193M12.75 14.75C12.75 13.3522 12.75 12.6533 12.5216 12.1019C12.2172 11.3669 11.6331 10.7828 10.8981 10.4784C10.3467 10.25 9.64783 10.25 8.25 10.25H6C4.60218 10.25 3.90326 10.25 3.35195 10.4784C2.61687 10.7828 2.03284 11.3669 1.72836 12.1019C1.5 12.6533 1.5 13.3522 1.5 14.75M10.125 4.25C10.125 5.90685 8.78185 7.25 7.125 7.25C5.46815 7.25 4.125 5.90685 4.125 4.25C4.125 2.59315 5.46815 1.25 7.125 1.25C8.78185 1.25 10.125 2.59315 10.125 4.25Z",
@@ -960,7 +962,7 @@ const config$2n = {
960
962
  tag: ["user"]
961
963
  };
962
964
 
963
- const config$2m = {
965
+ const config$2l = {
964
966
  viewBox: "0 0 18 17",
965
967
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
966
968
  d: "M16.5 6.08057L11.1262 9.91898C10.963 10.0356 10.8813 10.0939 10.7939 10.1115C10.7168 10.127 10.637 10.1204 10.5635 10.0924C10.4801 10.0607 10.4092 9.98977 10.2673 9.84789L7.73267 7.31324C7.5908 7.17137 7.51986 7.10043 7.43652 7.0687C7.36305 7.04074 7.28317 7.03413 7.2061 7.04963C7.11868 7.06723 7.03704 7.12553 6.87378 7.24215L1.5 11.0806M5.5 16.0806H12.5C13.9001 16.0806 14.6002 16.0806 15.135 15.8081C15.6054 15.5684 15.9878 15.1859 16.2275 14.7155C16.5 14.1808 16.5 13.4807 16.5 12.0806V5.08057C16.5 3.68044 16.5 2.98037 16.2275 2.44559C15.9878 1.97518 15.6054 1.59273 15.135 1.35305C14.6002 1.08057 13.9001 1.08057 12.5 1.08057H5.5C4.09987 1.08057 3.3998 1.08057 2.86502 1.35305C2.39462 1.59273 2.01217 1.97518 1.77248 2.44559C1.5 2.98037 1.5 3.68044 1.5 5.08057V12.0806C1.5 13.4807 1.5 14.1808 1.77248 14.7155C2.01217 15.1859 2.39462 15.5684 2.86502 15.8081C3.3998 16.0806 4.09987 16.0806 5.5 16.0806Z",
@@ -972,7 +974,7 @@ const config$2m = {
972
974
  tag: ["square"]
973
975
  };
974
976
 
975
- const config$2l = {
977
+ const config$2k = {
976
978
  viewBox: "0 0 20 17",
977
979
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
978
980
  d: "M10.8334 4.4139L9.9038 2.55466C9.63625 2.01957 9.50247 1.75201 9.30289 1.55654C9.1264 1.38368 8.91368 1.25221 8.68014 1.17166C8.41605 1.08057 8.11692 1.08057 7.51866 1.08057H4.33341C3.39999 1.08057 2.93328 1.08057 2.57676 1.26222C2.26316 1.42201 2.00819 1.67698 1.8484 1.99058C1.66675 2.3471 1.66675 2.81381 1.66675 3.74723V4.4139M1.66675 4.4139H14.3334C15.7335 4.4139 16.4336 4.4139 16.9684 4.68638C17.4388 4.92607 17.8212 5.30852 18.0609 5.77892C18.3334 6.3137 18.3334 7.01377 18.3334 8.4139V12.0806C18.3334 13.4807 18.3334 14.1808 18.0609 14.7155C17.8212 15.1859 17.4388 15.5684 16.9684 15.8081C16.4336 16.0806 15.7335 16.0806 14.3334 16.0806H5.66675C4.26662 16.0806 3.56655 16.0806 3.03177 15.8081C2.56137 15.5684 2.17892 15.1859 1.93923 14.7155C1.66675 14.1808 1.66675 13.4807 1.66675 12.0806V4.4139Z",
@@ -984,7 +986,7 @@ const config$2l = {
984
986
  tag: ["file"]
985
987
  };
986
988
 
987
- const config$2k = {
989
+ const config$2j = {
988
990
  viewBox: '0 0 20 17',
989
991
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
990
992
  d: "M18.3334 5.24722V8.58056M8.54175 3.16389H5.66675C4.26662 3.16389 3.56655 3.16389 3.03177 3.43637C2.56137 3.67605 2.17891 4.05851 1.93923 4.52891C1.66675 5.06369 1.66675 5.76376 1.66675 7.16389L1.66675 8.16389C1.66675 8.94046 1.66675 9.32874 1.79362 9.63503C1.96277 10.0434 2.28723 10.3679 2.69561 10.537C3.00189 10.6639 3.39018 10.6639 4.16675 10.6639V14.2056C4.16675 14.399 4.16675 14.4958 4.17478 14.5772C4.25271 15.3685 4.87876 15.9946 5.67005 16.0725C5.75154 16.0806 5.84828 16.0806 6.04175 16.0806C6.23522 16.0806 6.33196 16.0806 6.41345 16.0725C7.20474 15.9946 7.83079 15.3685 7.90872 14.5772C7.91675 14.4958 7.91675 14.399 7.91675 14.2056V10.6639H8.54175C10.0138 10.6639 11.8145 11.453 13.2037 12.2103C14.0141 12.6521 14.4193 12.873 14.6847 12.8404C14.9308 12.8103 15.1169 12.6998 15.2612 12.4981C15.4167 12.2807 15.4167 11.8456 15.4167 10.9753V2.85246C15.4167 1.98222 15.4167 1.5471 15.2612 1.32963C15.1169 1.12797 14.9308 1.01747 14.6847 0.987328C14.4193 0.954822 14.0141 1.17572 13.2037 1.61752C11.8145 2.37481 10.0138 3.16389 8.54175 3.16389Z",
@@ -995,7 +997,7 @@ const config$2k = {
995
997
  })
996
998
  };
997
999
 
998
- const config$2j = {
1000
+ const config$2i = {
999
1001
  viewBox: "0 0 16 19",
1000
1002
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1001
1003
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1015,7 +1017,7 @@ const config$2j = {
1015
1017
  tag: ["map"]
1016
1018
  };
1017
1019
 
1018
- const config$2i = {
1020
+ const config$2h = {
1019
1021
  viewBox: '0 0 18 18',
1020
1022
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1021
1023
  d: "M1.5 17.0806H16.5M4 14.5806V7.91391M7.33333 14.5806V7.91391M10.6667 14.5806V7.91391M14 14.5806V7.91391M15.6667 5.41391L9.35333 1.46808C9.22515 1.38796 9.16106 1.34791 9.09233 1.33229C9.03155 1.31848 8.96845 1.31848 8.90767 1.33229C8.83894 1.34791 8.77485 1.38796 8.64667 1.46808L2.33333 5.41391H15.6667Z",
@@ -1026,7 +1028,7 @@ const config$2i = {
1026
1028
  })
1027
1029
  };
1028
1030
 
1029
- const config$2h = {
1031
+ const config$2g = {
1030
1032
  viewBox: '0 0 18 19',
1031
1033
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1032
1034
  d: "M7.125 16.8722L8.35248 17.5542C8.58881 17.6855 8.70698 17.7511 8.83213 17.7768C8.94288 17.7996 9.05712 17.7996 9.16788 17.7768C9.29302 17.7511 9.41119 17.6855 9.64753 17.5542L10.875 16.8722M3.375 14.7889L2.18581 14.1282C1.93621 13.9896 1.8114 13.9202 1.72053 13.8216C1.64013 13.7344 1.57929 13.631 1.54207 13.5183C1.5 13.391 1.5 13.2482 1.5 12.9627V11.6639M1.5 7.49723V6.19844C1.5 5.9129 1.5 5.77014 1.54207 5.6428C1.57929 5.53016 1.64013 5.42676 1.72053 5.33951C1.8114 5.2409 1.93621 5.17156 2.18581 5.0329L3.375 4.37223M7.125 2.2889L8.35248 1.60697C8.58881 1.47567 8.70698 1.41002 8.83213 1.38428C8.94288 1.3615 9.05712 1.3615 9.16788 1.38428C9.29302 1.41002 9.41119 1.47567 9.64753 1.60697L10.875 2.2889M14.625 4.37223L15.8142 5.03289C16.0638 5.17156 16.1886 5.2409 16.2795 5.33951C16.3599 5.42675 16.4207 5.53016 16.4579 5.6428C16.5 5.77013 16.5 5.9129 16.5 6.19844V7.49723M16.5 11.6639V12.9627C16.5 13.2482 16.5 13.391 16.4579 13.5183C16.4207 13.631 16.3599 13.7344 16.2795 13.8216C16.1886 13.9202 16.0638 13.9896 15.8142 14.1282L14.625 14.7889M7.125 8.5389L9 9.58057M9 9.58057L10.875 8.5389M9 9.58057V11.6639M1.5 5.4139L3.375 6.45557M14.625 6.45557L16.5 5.4139M9 15.8306V17.9139",
@@ -1037,7 +1039,7 @@ const config$2h = {
1037
1039
  })
1038
1040
  };
1039
1041
 
1040
- const config$2g = {
1042
+ const config$2f = {
1041
1043
  viewBox: '0 0 20 22',
1042
1044
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1043
1045
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1053,7 +1055,7 @@ const config$2g = {
1053
1055
  tag: ['logo']
1054
1056
  };
1055
1057
 
1056
- const config$2f = {
1058
+ const config$2e = {
1057
1059
  viewBox: '0 0 24 24',
1058
1060
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1059
1061
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1066,7 +1068,7 @@ const config$2f = {
1066
1068
  tag: ['logo']
1067
1069
  };
1068
1070
 
1069
- const config$2e = {
1071
+ const config$2d = {
1070
1072
  viewBox: '0 0 24 24',
1071
1073
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1072
1074
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1079,7 +1081,7 @@ const config$2e = {
1079
1081
  tag: ['logo']
1080
1082
  };
1081
1083
 
1082
- const config$2d = {
1084
+ const config$2c = {
1083
1085
  viewBox: '0 0 24 24',
1084
1086
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1085
1087
  children: [/*#__PURE__*/jsxRuntime.jsx("g", {
@@ -1104,7 +1106,7 @@ const config$2d = {
1104
1106
  tag: ['logo']
1105
1107
  };
1106
1108
 
1107
- const config$2c = {
1109
+ const config$2b = {
1108
1110
  viewBox: '0 0 24 24',
1109
1111
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1110
1112
  children: [/*#__PURE__*/jsxRuntime.jsx("g", {
@@ -1129,7 +1131,7 @@ const config$2c = {
1129
1131
  tag: ['logo']
1130
1132
  };
1131
1133
 
1132
- const config$2b = {
1134
+ const config$2a = {
1133
1135
  viewBox: '0 0 3 14',
1134
1136
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1135
1137
  children: [/*#__PURE__*/jsxRuntime.jsx("circle", {
@@ -1151,7 +1153,7 @@ const config$2b = {
1151
1153
  })
1152
1154
  };
1153
1155
 
1154
- const config$2a = {
1156
+ const config$29 = {
1155
1157
  viewBox: '0 0 16 16',
1156
1158
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1157
1159
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1169,7 +1171,7 @@ const config$2a = {
1169
1171
  tag: ["action"]
1170
1172
  };
1171
1173
 
1172
- const config$29 = {
1174
+ const config$28 = {
1173
1175
  viewBox: "0 0 16 16",
1174
1176
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1175
1177
  d: "M10.6666 5.33331V3.46665C10.6666 2.71991 10.6666 2.34654 10.5213 2.06133C10.3934 1.81044 10.1895 1.60647 9.93857 1.47864C9.65336 1.33331 9.27999 1.33331 8.53325 1.33331H3.46659C2.71985 1.33331 2.34648 1.33331 2.06126 1.47864C1.81038 1.60647 1.60641 1.81044 1.47858 2.06133C1.33325 2.34654 1.33325 2.71991 1.33325 3.46665V8.53331C1.33325 9.28005 1.33325 9.65342 1.47858 9.93863C1.60641 10.1895 1.81038 10.3935 2.06126 10.5213C2.34648 10.6666 2.71985 10.6666 3.46659 10.6666H5.33325M7.99992 9.99998L9.33325 11.3333L12.3333 8.33331M7.46658 14.6666H12.5333C13.28 14.6666 13.6534 14.6666 13.9386 14.5213C14.1895 14.3935 14.3934 14.1895 14.5213 13.9386C14.6666 13.6534 14.6666 13.28 14.6666 12.5333V7.46665C14.6666 6.71991 14.6666 6.34654 14.5213 6.06133C14.3934 5.81044 14.1895 5.60647 13.9386 5.47864C13.6534 5.33331 13.28 5.33331 12.5333 5.33331H7.46658C6.71985 5.33331 6.34648 5.33331 6.06126 5.47864C5.81038 5.60647 5.60641 5.81044 5.47858 6.06133C5.33325 6.34654 5.33325 6.71991 5.33325 7.46665V12.5333C5.33325 13.28 5.33325 13.6534 5.47858 13.9386C5.60641 14.1895 5.81038 14.3935 6.06126 14.5213C6.34648 14.6666 6.71985 14.6666 7.46658 14.6666Z",
@@ -1180,7 +1182,7 @@ const config$29 = {
1180
1182
  tag: ["square", "check"]
1181
1183
  };
1182
1184
 
1183
- const config$28 = {
1185
+ const config$27 = {
1184
1186
  viewBox: "0 0 20 19",
1185
1187
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1186
1188
  d: "M3.33333 14.5804V14.4137C3.33333 13.0136 3.33333 12.3135 3.60582 11.7788C3.8455 11.3084 4.22795 10.9259 4.69836 10.6862C5.23314 10.4137 5.9332 10.4137 7.33333 10.4137H12.6667C14.0668 10.4137 14.7669 10.4137 15.3016 10.6862C15.772 10.9259 16.1545 11.3084 16.3942 11.7788C16.6667 12.3135 16.6667 13.0136 16.6667 14.4137V14.5804M3.33333 14.5804C2.41286 14.5804 1.66667 15.3266 1.66667 16.2471C1.66667 17.1675 2.41286 17.9137 3.33333 17.9137C4.25381 17.9137 5 17.1675 5 16.2471C5 15.3266 4.25381 14.5804 3.33333 14.5804ZM16.6667 14.5804C15.7462 14.5804 15 15.3266 15 16.2471C15 17.1675 15.7462 17.9137 16.6667 17.9137C17.5871 17.9137 18.3333 17.1675 18.3333 16.2471C18.3333 15.3266 17.5871 14.5804 16.6667 14.5804ZM10 14.5804C9.07952 14.5804 8.33333 15.3266 8.33333 16.2471C8.33333 17.1675 9.07952 17.9137 10 17.9137C10.9205 17.9137 11.6667 17.1675 11.6667 16.2471C11.6667 15.3266 10.9205 14.5804 10 14.5804ZM10 14.5804V6.24707M5 6.24707H15C15.7766 6.24707 16.1649 6.24707 16.4711 6.1202C16.8795 5.95105 17.204 5.62659 17.3731 5.21821C17.5 4.91192 17.5 4.52364 17.5 3.74707C17.5 2.9705 17.5 2.58222 17.3731 2.27593C17.204 1.86755 16.8795 1.54309 16.4711 1.37394C16.1649 1.24707 15.7766 1.24707 15 1.24707H5C4.22343 1.24707 3.83515 1.24707 3.52886 1.37394C3.12048 1.54309 2.79602 1.86755 2.62687 2.27593C2.5 2.58222 2.5 2.9705 2.5 3.74707C2.5 4.52364 2.5 4.91192 2.62687 5.21821C2.79602 5.62659 3.12048 5.95105 3.52886 6.1202C3.83515 6.24707 4.22343 6.24707 5 6.24707Z",
@@ -1192,7 +1194,7 @@ const config$28 = {
1192
1194
  tag: ["chart"]
1193
1195
  };
1194
1196
 
1195
- const config$27 = {
1197
+ const config$26 = {
1196
1198
  viewBox: "0 0 20 17",
1197
1199
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1198
1200
  d: "M18.3333 16.0806V14.4139C18.3333 12.8607 17.271 11.5556 15.8333 11.1856M12.9167 1.32287C14.1383 1.81735 15 3.01499 15 4.4139C15 5.81281 14.1383 7.01044 12.9167 7.50493M14.1667 16.0806C14.1667 14.5274 14.1667 13.7509 13.9129 13.1383C13.5746 12.3215 12.9257 11.6726 12.1089 11.3343C11.4964 11.0806 10.7198 11.0806 9.16667 11.0806H6.66667C5.11353 11.0806 4.33696 11.0806 3.72439 11.3343C2.90763 11.6726 2.25871 12.3215 1.9204 13.1383C1.66667 13.7509 1.66667 14.5274 1.66667 16.0806M11.25 4.4139C11.25 6.25485 9.75761 7.74723 7.91667 7.74723C6.07572 7.74723 4.58333 6.25485 4.58333 4.4139C4.58333 2.57295 6.07572 1.08057 7.91667 1.08057C9.75761 1.08057 11.25 2.57295 11.25 4.4139Z",
@@ -1204,7 +1206,7 @@ const config$27 = {
1204
1206
  tag: ["user"]
1205
1207
  };
1206
1208
 
1207
- const config$26 = {
1209
+ const config$25 = {
1208
1210
  viewBox: "0 0 45 45",
1209
1211
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1210
1212
  d: "M30 33.75L33.75 37.5L41.25 30M22.5 28.125H15C11.5054 28.125 9.75816 28.125 8.37987 28.6959C6.54216 29.4571 5.08211 30.9172 4.3209 32.7549C3.75 34.1332 3.75 35.8804 3.75 39.375M29.0625 6.17017C31.8111 7.28277 33.75 9.97746 33.75 13.125C33.75 16.2725 31.8111 18.9672 29.0625 20.0798M25.3125 13.125C25.3125 17.2671 21.9546 20.625 17.8125 20.625C13.6704 20.625 10.3125 17.2671 10.3125 13.125C10.3125 8.98286 13.6704 5.625 17.8125 5.625C21.9546 5.625 25.3125 8.98286 25.3125 13.125Z",
@@ -1216,7 +1218,7 @@ const config$26 = {
1216
1218
  tag: ["user", "check"]
1217
1219
  };
1218
1220
 
1219
- const config$25 = {
1221
+ const config$24 = {
1220
1222
  viewBox: '0 0 14 14',
1221
1223
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1222
1224
  d: "M9.03367 5H2.66667C1.74619 5 1 4.25381 1 3.33333C1 2.41286 1.74619 1.66667 2.66667 1.66667H9.03367M4.96633 12.3333H11.3333C12.2538 12.3333 13 11.5871 13 10.6667C13 9.74619 12.2538 9 11.3333 9H4.96633M1 10.6667C1 11.9553 2.04467 13 3.33333 13C4.622 13 5.66667 11.9553 5.66667 10.6667C5.66667 9.378 4.622 8.33333 3.33333 8.33333C2.04467 8.33333 1 9.378 1 10.6667ZM13 3.33333C13 4.622 11.9553 5.66667 10.6667 5.66667C9.378 5.66667 8.33333 4.622 8.33333 3.33333C8.33333 2.04467 9.378 1 10.6667 1C11.9553 1 13 2.04467 13 3.33333Z",
@@ -1227,7 +1229,7 @@ const config$25 = {
1227
1229
  })
1228
1230
  };
1229
1231
 
1230
- const config$24 = {
1232
+ const config$23 = {
1231
1233
  viewBox: '0 0 14 14',
1232
1234
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1233
1235
  d: "M6.33333 1.66667H4.2C3.0799 1.66667 2.51984 1.66667 2.09202 1.88465C1.71569 2.0764 1.40973 2.38236 1.21799 2.75869C1 3.18651 1 3.74656 1 4.86667V9.8C1 10.9201 1 11.4802 1.21799 11.908C1.40973 12.2843 1.71569 12.5903 2.09202 12.782C2.51984 13 3.07989 13 4.2 13H9.13333C10.2534 13 10.8135 13 11.2413 12.782C11.6176 12.5903 11.9236 12.2843 12.1153 11.908C12.3333 11.4802 12.3333 10.9201 12.3333 9.8V7.66667M7.66667 10.3333H3.66667M9 7.66667H3.66667M12.4142 1.58579C13.1953 2.36683 13.1953 3.63317 12.4142 4.41421C11.6332 5.19526 10.3668 5.19526 9.58579 4.41421C8.80474 3.63317 8.80474 2.36683 9.58579 1.58579C10.3668 0.804738 11.6332 0.804738 12.4142 1.58579Z",
@@ -1237,7 +1239,7 @@ const config$24 = {
1237
1239
  })
1238
1240
  };
1239
1241
 
1240
- const config$23 = {
1242
+ const config$22 = {
1241
1243
  viewBox: '0 0 18 18',
1242
1244
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1243
1245
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1250,7 +1252,7 @@ const config$23 = {
1250
1252
  })
1251
1253
  };
1252
1254
 
1253
- const config$22 = {
1255
+ const config$21 = {
1254
1256
  viewBox: '0 0 20 22',
1255
1257
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1256
1258
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1263,7 +1265,7 @@ const config$22 = {
1263
1265
  })
1264
1266
  };
1265
1267
 
1266
- const config$21 = {
1268
+ const config$20 = {
1267
1269
  viewBox: "0 0 23 20",
1268
1270
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1269
1271
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1277,7 +1279,7 @@ const config$21 = {
1277
1279
  tag: ["user"]
1278
1280
  };
1279
1281
 
1280
- const config$20 = {
1282
+ const config$1$ = {
1281
1283
  viewBox: '0 0 23 23',
1282
1284
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1283
1285
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1290,7 +1292,7 @@ const config$20 = {
1290
1292
  })
1291
1293
  };
1292
1294
 
1293
- const config$1$ = {
1295
+ const config$1_ = {
1294
1296
  viewBox: "0 0 28 17",
1295
1297
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1296
1298
  children: [/*#__PURE__*/jsxRuntime.jsxs("mask", {
@@ -1326,7 +1328,7 @@ const config$1$ = {
1326
1328
  tag: ["hand"]
1327
1329
  };
1328
1330
 
1329
- const config$1_ = {
1331
+ const config$1Z = {
1330
1332
  viewBox: "0 0 19 23",
1331
1333
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1332
1334
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1340,7 +1342,7 @@ const config$1_ = {
1340
1342
  tag: ["check"]
1341
1343
  };
1342
1344
 
1343
- const config$1Z = {
1345
+ const config$1Y = {
1344
1346
  viewBox: "0 0 21 22",
1345
1347
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1346
1348
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1354,7 +1356,7 @@ const config$1Z = {
1354
1356
  tag: ["arrow", "square"]
1355
1357
  };
1356
1358
 
1357
- const config$1Y = {
1359
+ const config$1X = {
1358
1360
  viewBox: '0 0 18 19',
1359
1361
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1360
1362
  d: "M9.66665 8.55444H4.66665M6.33331 11.8878H4.66665M11.3333 5.22111H4.66665M14.6666 8.13778V5.05444C14.6666 3.65431 14.6666 2.95425 14.3942 2.41947C14.1545 1.94906 13.772 1.56661 13.3016 1.32693C12.7668 1.05444 12.0668 1.05444 10.6666 1.05444H5.33331C3.93318 1.05444 3.23312 1.05444 2.69834 1.32693C2.22793 1.56661 1.84548 1.94906 1.6058 2.41947C1.33331 2.95425 1.33331 3.65431 1.33331 5.05444V13.7211C1.33331 15.1212 1.33331 15.8213 1.6058 16.3561C1.84548 16.8265 2.22793 17.2089 2.69834 17.4486C3.23312 17.7211 3.93318 17.7211 5.33331 17.7211H7.58331M16.3333 17.7211L15.0833 16.4711M15.9166 14.3878C15.9166 15.9986 14.6108 17.3044 13 17.3044C11.3891 17.3044 10.0833 15.9986 10.0833 14.3878C10.0833 12.7769 11.3891 11.4711 13 11.4711C14.6108 11.4711 15.9166 12.7769 15.9166 14.3878Z",
@@ -1366,7 +1368,7 @@ const config$1Y = {
1366
1368
  tag: ['file']
1367
1369
  };
1368
1370
 
1369
- const config$1X = {
1371
+ const config$1W = {
1370
1372
  viewBox: "0 0 19 20",
1371
1373
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1372
1374
  d: "M13.3334 9.53306C16.2765 10.1117 18.3334 11.4333 18.3334 12.971C18.3334 15.0421 14.6024 16.721 10 16.721C5.39765 16.721 1.66669 15.0421 1.66669 12.971C1.66669 11.4333 3.72351 10.1117 6.66669 9.53306M10 12.5544V5.8877M10 5.8877C11.3807 5.8877 12.5 4.76841 12.5 3.3877C12.5 2.00698 11.3807 0.887695 10 0.887695C8.61931 0.887695 7.50002 2.00698 7.50002 3.3877C7.50002 4.76841 8.61931 5.8877 10 5.8877Z",
@@ -1378,7 +1380,7 @@ const config$1X = {
1378
1380
  tag: ["map"]
1379
1381
  };
1380
1382
 
1381
- const config$1W = {
1383
+ const config$1V = {
1382
1384
  viewBox: '0 0 14 14',
1383
1385
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1384
1386
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1396,7 +1398,7 @@ const config$1W = {
1396
1398
  })
1397
1399
  };
1398
1400
 
1399
- const config$1V = {
1401
+ const config$1U = {
1400
1402
  viewBox: "0 0 16 17",
1401
1403
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1402
1404
  d: "M5.49998 7.1377L7.16665 8.80436L10.9166 5.05436M14.6666 15.8877V4.8877C14.6666 3.48756 14.6666 2.7875 14.3942 2.25272C14.1545 1.78231 13.772 1.39986 13.3016 1.16018C12.7668 0.887695 12.0668 0.887695 10.6666 0.887695H5.33331C3.93318 0.887695 3.23312 0.887695 2.69834 1.16018C2.22793 1.39986 1.84548 1.78231 1.6058 2.25272C1.33331 2.7875 1.33331 3.48756 1.33331 4.88769V15.8877L3.62498 14.221L5.70831 15.8877L7.99998 14.221L10.2916 15.8877L12.375 14.221L14.6666 15.8877Z",
@@ -1408,7 +1410,7 @@ const config$1V = {
1408
1410
  tag: ["check"]
1409
1411
  };
1410
1412
 
1411
- const config$1U = {
1413
+ const config$1T = {
1412
1414
  viewBox: '0 0 16 20',
1413
1415
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1414
1416
  d: "M2.091 2.65064V10.4584M5.79541 2.65064V4.75687M13.909 18.1248V10.3169M10.2046 18.1248V16.0262M13.9084 10.3759C13.9084 13.6177 11.263 16.2458 7.99969 16.2458C4.73641 16.2458 2.091 13.6177 2.091 10.3759C2.091 7.13398 4.73641 4.50591 7.99969 4.50591C11.263 4.50591 13.9084 7.13398 13.9084 10.3759ZM10.0509 10.3759C10.0509 11.5013 9.13254 12.4136 7.99969 12.4136C6.86684 12.4136 5.94849 11.5013 5.94849 10.3759C5.94849 9.25044 6.86684 8.33811 7.99969 8.33811C9.13254 8.33811 10.0509 9.25044 10.0509 10.3759ZM1.23096 2.64965H6.1658C6.29335 2.64965 6.39676 2.54692 6.39676 2.4202V1.61714C6.39676 1.49042 6.29335 1.3877 6.1658 1.3877H1.23096C1.1034 1.3877 1 1.49042 1 1.61714V2.4202C1 2.54692 1.1034 2.64965 1.23096 2.64965ZM14.769 18.1257H9.8342C9.70665 18.1257 9.60324 18.2285 9.60324 18.3552V19.1582C9.60324 19.285 9.70665 19.3877 9.8342 19.3877H14.769C14.8966 19.3877 15 19.285 15 19.1582V18.3552C15 18.2285 14.8966 18.1257 14.769 18.1257Z",
@@ -1417,7 +1419,7 @@ const config$1U = {
1417
1419
  })
1418
1420
  };
1419
1421
 
1420
- const config$1T = {
1422
+ const config$1S = {
1421
1423
  viewBox: '0 0 20 19',
1422
1424
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1423
1425
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1438,7 +1440,7 @@ const config$1T = {
1438
1440
  })
1439
1441
  };
1440
1442
 
1441
- const config$1S = {
1443
+ const config$1R = {
1442
1444
  viewBox: '0 0 20 19',
1443
1445
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1444
1446
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1496,7 +1498,7 @@ const config$1S = {
1496
1498
  })
1497
1499
  };
1498
1500
 
1499
- const config$1R = {
1501
+ const config$1Q = {
1500
1502
  viewBox: '0 0 18 18',
1501
1503
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1502
1504
  d: "M1.5 16.8878H16.5M4 14.3878V7.72113M7.33333 14.3878V7.72113M10.6667 14.3878V7.72113M14 14.3878V7.72113M15.6667 5.22113L9.35333 1.2753C9.22515 1.19518 9.16106 1.15513 9.09233 1.13951C9.03155 1.1257 8.96845 1.1257 8.90767 1.13951C8.83894 1.15513 8.77485 1.19518 8.64667 1.2753L2.33333 5.22113H15.6667Z",
@@ -1507,7 +1509,7 @@ const config$1R = {
1507
1509
  })
1508
1510
  };
1509
1511
 
1510
- const config$1Q = {
1512
+ const config$1P = {
1511
1513
  viewBox: "0 0 6 10",
1512
1514
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1513
1515
  d: "M1 9L5 5L1 1",
@@ -1518,7 +1520,7 @@ const config$1Q = {
1518
1520
  tag: ["arrow"]
1519
1521
  };
1520
1522
 
1521
- const config$1P = {
1523
+ const config$1O = {
1522
1524
  viewBox: "0 0 14 10",
1523
1525
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1524
1526
  d: "M12.3334 1L5.00008 8.33333L1.66675 5",
@@ -1530,7 +1532,7 @@ const config$1P = {
1530
1532
  tag: ["check"]
1531
1533
  };
1532
1534
 
1533
- const config$1O = {
1535
+ const config$1N = {
1534
1536
  viewBox: "0 0 16 16",
1535
1537
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1536
1538
  d: "M8.5 9V5M6.5 7H10.5M5.16667 12V13.557C5.16667 13.9122 5.16667 14.0899 5.23949 14.1811C5.30282 14.2604 5.39885 14.3066 5.50036 14.3065C5.61708 14.3063 5.75578 14.1954 6.03317 13.9735L7.62348 12.7012C7.94834 12.4413 8.11078 12.3114 8.29166 12.219C8.45213 12.137 8.62295 12.0771 8.79948 12.0408C8.99845 12 9.20646 12 9.6225 12H11.3C12.4201 12 12.9802 12 13.408 11.782C13.7843 11.5903 14.0903 11.2843 14.282 10.908C14.5 10.4802 14.5 9.92011 14.5 8.8V5.2C14.5 4.0799 14.5 3.51984 14.282 3.09202C14.0903 2.71569 13.7843 2.40973 13.408 2.21799C12.9802 2 12.4201 2 11.3 2H5.7C4.5799 2 4.01984 2 3.59202 2.21799C3.21569 2.40973 2.90973 2.71569 2.71799 3.09202C2.5 3.51984 2.5 4.07989 2.5 5.2V9.33333C2.5 9.95331 2.5 10.2633 2.56815 10.5176C2.75308 11.2078 3.29218 11.7469 3.98236 11.9319C4.2367 12 4.54669 12 5.16667 12Z",
@@ -1539,7 +1541,7 @@ const config$1O = {
1539
1541
  tag: ["add"]
1540
1542
  };
1541
1543
 
1542
- const config$1N = {
1544
+ const config$1M = {
1543
1545
  viewBox: "0 0 16 16",
1544
1546
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1545
1547
  d: "M9.83335 7.33333H5.83335M7.16669 9.99999H5.83335M11.1667 4.66666H5.83335M13.8334 7.99999V4.53333C13.8334 3.41322 13.8334 2.85317 13.6154 2.42535C13.4236 2.04902 13.1177 1.74306 12.7413 1.55132C12.3135 1.33333 11.7535 1.33333 10.6334 1.33333H6.36669C5.24658 1.33333 4.68653 1.33333 4.25871 1.55132C3.88238 1.74306 3.57642 2.04902 3.38467 2.42535C3.16669 2.85317 3.16669 3.41322 3.16669 4.53333V11.4667C3.16669 12.5868 3.16669 13.1468 3.38467 13.5746C3.57642 13.951 3.88238 14.2569 4.25871 14.4487C4.68653 14.6667 5.24658 14.6667 6.36669 14.6667H8.50002M11.1667 10.6667L14.5 14M14.5 10.6667L11.1667 14",
@@ -1548,7 +1550,7 @@ const config$1N = {
1548
1550
  tag: ["file"]
1549
1551
  };
1550
1552
 
1551
- const config$1M = {
1553
+ const config$1L = {
1552
1554
  viewBox: "0 0 16 16",
1553
1555
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1554
1556
  d: "M13.8334 6.33333V4.53333C13.8334 3.41322 13.8334 2.85317 13.6154 2.42535C13.4236 2.04902 13.1177 1.74306 12.7413 1.55132C12.3135 1.33333 11.7535 1.33333 10.6334 1.33333H6.36669C5.24658 1.33333 4.68653 1.33333 4.25871 1.55132C3.88238 1.74306 3.57642 2.04902 3.38467 2.42535C3.16669 2.85317 3.16669 3.41322 3.16669 4.53333V11.4667C3.16669 12.5868 3.16669 13.1468 3.38467 13.5746C3.57642 13.951 3.88238 14.2569 4.25871 14.4487C4.68653 14.6667 5.24658 14.6667 6.36669 14.6667H9.83335M9.83335 7.33333H5.83335M7.16669 9.99999H5.83335M11.1667 4.66666H5.83335M11.5 10.0015C11.6175 9.66757 11.8493 9.386 12.1545 9.20664C12.4597 9.02729 12.8185 8.96173 13.1674 9.02157C13.5162 9.08141 13.8327 9.2628 14.0606 9.5336C14.2886 9.8044 14.4134 10.1471 14.4128 10.5011C14.4128 11.5004 12.914 12 12.914 12M12.9333 14H12.94",
@@ -1557,7 +1559,7 @@ const config$1M = {
1557
1559
  tag: ["file"]
1558
1560
  };
1559
1561
 
1560
- const config$1L = {
1562
+ const config$1K = {
1561
1563
  viewBox: '0 0 16 16',
1562
1564
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1563
1565
  d: "M5.16667 5.66667H8.5M5.16667 8H10.5M6.95583 12H11.3C12.4201 12 12.9802 12 13.408 11.782C13.7843 11.5903 14.0903 11.2843 14.282 10.908C14.5 10.4802 14.5 9.92011 14.5 8.8V5.2C14.5 4.0799 14.5 3.51984 14.282 3.09202C14.0903 2.71569 13.7843 2.40973 13.408 2.21799C12.9802 2 12.4201 2 11.3 2H5.7C4.5799 2 4.01984 2 3.59202 2.21799C3.21569 2.40973 2.90973 2.71569 2.71799 3.09202C2.5 3.51984 2.5 4.0799 2.5 5.2V13.557C2.5 13.9122 2.5 14.0899 2.57282 14.1811C2.63615 14.2604 2.73218 14.3066 2.83369 14.3065C2.95042 14.3063 3.08911 14.1954 3.3665 13.9735L4.95681 12.7012C5.28168 12.4413 5.44411 12.3114 5.62499 12.219C5.78547 12.137 5.95628 12.0771 6.13281 12.0408C6.33178 12 6.5398 12 6.95583 12Z",
@@ -1567,7 +1569,7 @@ const config$1L = {
1567
1569
  })
1568
1570
  };
1569
1571
 
1570
- const config$1K = {
1572
+ const config$1J = {
1571
1573
  viewBox: "0 0 17 16",
1572
1574
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1573
1575
  d: "M10.6815 3.01422V5.42817C10.6815 5.75547 10.6815 5.91912 10.7459 6.04414C10.8026 6.1541 10.893 6.24351 11.0042 6.29954C11.1306 6.36323 11.2961 6.36323 11.6271 6.36323H14.0682M11.8635 9.28527H7.13556M11.8635 11.6229H7.13556M8.31755 6.94761H7.13556M4.77158 13.1424C3.77862 13.1424 4.12028 13.1424 3.74101 12.9513C3.40741 12.7832 3.13617 12.515 2.96619 12.1851C2.77295 11.8101 2.77295 11.3191 2.77295 10.3372V4.2593C2.77295 3.27739 2.77295 2.78643 2.96619 2.41139C3.13617 2.0815 3.40741 1.81328 3.74101 1.64519C4.12028 1.4541 5.4549 1.4541 6.44786 1.4541H8.55395C9.54691 1.4541 10.0434 1.4541 10.4227 1.64519C10.7563 1.81328 11.0275 2.0815 11.1975 2.41139C11.2922 2.59518 11.3405 2.80681 11.3651 3.09041V3.34991M10.6815 2.8567H7.60836C6.61539 2.8567 6.11891 2.8567 5.73965 3.04779C5.40604 3.21588 5.13481 3.48409 4.96483 3.81399C4.77158 4.18903 4.77158 4.67998 4.77158 5.66189V11.7398C4.77158 12.7217 4.77158 13.2127 4.96483 13.5877C5.13481 13.9176 5.40604 14.1858 5.73965 14.3539C6.11891 14.545 6.61539 14.545 7.60836 14.545H11.3907C12.3837 14.545 12.8802 14.545 13.2594 14.3539C13.593 14.1858 13.8643 13.9176 14.0343 13.5877C14.2275 13.2127 14.2275 12.7217 14.2275 11.7398V6.36319L10.6815 2.8567Z",
@@ -1578,7 +1580,7 @@ const config$1K = {
1578
1580
  tag: ["file"]
1579
1581
  };
1580
1582
 
1581
- const config$1J = {
1583
+ const config$1I = {
1582
1584
  viewBox: "0 0 16 16",
1583
1585
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1584
1586
  d: "M15.1668 14V12.6667C15.1668 11.4241 14.317 10.38 13.1668 10.084M10.8335 2.19384C11.8108 2.58943 12.5002 3.54754 12.5002 4.66667C12.5002 5.78579 11.8108 6.7439 10.8335 7.13949M11.8335 14C11.8335 12.7575 11.8335 12.1362 11.6305 11.6462C11.3599 10.9928 10.8407 10.4736 10.1873 10.203C9.69726 10 9.07601 10 7.8335 10H5.8335C4.59099 10 3.96973 10 3.47967 10.203C2.82627 10.4736 2.30713 10.9928 2.03648 11.6462C1.8335 12.1362 1.8335 12.7575 1.8335 14M9.50016 4.66667C9.50016 6.13943 8.30625 7.33333 6.8335 7.33333C5.36074 7.33333 4.16683 6.13943 4.16683 4.66667C4.16683 3.19391 5.36074 2 6.8335 2C8.30625 2 9.50016 3.19391 9.50016 4.66667Z",
@@ -1589,7 +1591,7 @@ const config$1J = {
1589
1591
  tag: ["user"]
1590
1592
  };
1591
1593
 
1592
- const config$1I = {
1594
+ const config$1H = {
1593
1595
  viewBox: '0 0 14 17',
1594
1596
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1595
1597
  d: "M1.16669 4.88769C1.16669 3.48756 1.16669 2.7875 1.43917 2.25272C1.67885 1.78231 2.06131 1.39986 2.53171 1.16018C3.06649 0.887695 3.76656 0.887695 5.16669 0.887695H8.83335C10.2335 0.887695 10.9336 0.887695 11.4683 1.16018C11.9387 1.39986 12.3212 1.78231 12.5609 2.25272C12.8334 2.7875 12.8334 3.48756 12.8334 4.8877V15.8877L7.00002 12.5544L1.16669 15.8877V4.88769Z",
@@ -1600,7 +1602,7 @@ const config$1I = {
1600
1602
  })
1601
1603
  };
1602
1604
 
1603
- const config$1H = {
1605
+ const config$1G = {
1604
1606
  viewBox: '0 0 20 16',
1605
1607
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
1606
1608
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1613,7 +1615,7 @@ const config$1H = {
1613
1615
  })
1614
1616
  };
1615
1617
 
1616
- const config$1G = {
1618
+ const config$1F = {
1617
1619
  viewBox: "0 0 16 17",
1618
1620
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1619
1621
  d: "M16.5 15.8877L11.5001 10.8877M13.1667 6.72103C13.1667 9.94269 10.555 12.5544 7.33333 12.5544C4.11167 12.5544 1.5 9.94269 1.5 6.72103C1.5 3.49937 4.11167 0.887695 7.33333 0.887695C10.555 0.887695 13.1667 3.49937 13.1667 6.72103Z",
@@ -1625,7 +1627,7 @@ const config$1G = {
1625
1627
  tag: ["action"]
1626
1628
  };
1627
1629
 
1628
- const config$1F = {
1630
+ const config$1E = {
1629
1631
  viewBox: '0 0 9 10',
1630
1632
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1631
1633
  d: "M1.1665 8.33329L7.83317 1.66663M7.83317 1.66663H1.1665M7.83317 1.66663V8.33329",
@@ -1637,7 +1639,7 @@ const config$1F = {
1637
1639
  tag: ['arrow']
1638
1640
  };
1639
1641
 
1640
- const config$1E = {
1642
+ const config$1D = {
1641
1643
  viewBox: '0 0 20 19',
1642
1644
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1643
1645
  d: "M5.7652 2.20891C7.0062 1.47524 8.45394 1.0542 10 1.0542C14.6024 1.0542 18.3334 4.78516 18.3334 9.38753C18.3334 9.41514 18.3332 9.44272 18.333 9.47027M2.81764 5.15907C2.08629 6.39866 1.66669 7.84409 1.66669 9.38753C1.66669 13.2705 4.32246 16.5332 7.91669 17.4583M17.2564 13.488C16.156 15.431 14.2978 16.8884 12.0834 17.4583M11.7411 4.69901C11.1989 4.49759 10.6123 4.38753 10 4.38753C7.2386 4.38753 5.00002 6.62611 5.00002 9.38753C5.00002 10.0032 5.11128 10.5928 5.31479 11.1374M14.6876 7.64392C14.8896 8.18681 15 8.77428 15 9.38753C15 12.149 12.7614 14.3875 10 14.3875C9.3918 14.3875 8.80895 14.2789 8.2698 14.0801M10 7.72087V11.0542",
@@ -1648,7 +1650,7 @@ const config$1E = {
1648
1650
  })
1649
1651
  };
1650
1652
 
1651
- const config$1D = {
1653
+ const config$1C = {
1652
1654
  viewBox: '0 0 13 14',
1653
1655
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1654
1656
  d: "M11.5835 6.24095H1.0835M8.66683 1.57428V3.90761M4.00016 1.57428V3.90761M3.8835 13.2409H8.7835C9.76359 13.2409 10.2536 13.2409 10.628 13.0502C10.9573 12.8824 11.225 12.6147 11.3928 12.2854C11.5835 11.9111 11.5835 11.421 11.5835 10.4409V5.54095C11.5835 4.56085 11.5835 4.07081 11.3928 3.69646C11.225 3.36718 10.9573 3.09946 10.628 2.93168C10.2536 2.74095 9.76359 2.74095 8.7835 2.74095H3.8835C2.9034 2.74095 2.41336 2.74095 2.03901 2.93168C1.70973 3.09946 1.44201 3.36718 1.27423 3.69646C1.0835 4.07081 1.0835 4.56085 1.0835 5.54095V10.4409C1.0835 11.421 1.0835 11.9111 1.27423 12.2854C1.44201 12.6147 1.70973 12.8824 2.03901 13.0502C2.41336 13.2409 2.9034 13.2409 3.8835 13.2409Z",
@@ -1659,7 +1661,7 @@ const config$1D = {
1659
1661
  })
1660
1662
  };
1661
1663
 
1662
- const config$1C = {
1664
+ const config$1B = {
1663
1665
  viewBox: '0 0 16 17',
1664
1666
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1665
1667
  d: "M4.66699 11.5661L11.3337 4.89941M11.3337 4.89941H4.66699M11.3337 4.89941V11.5661",
@@ -1671,7 +1673,7 @@ const config$1C = {
1671
1673
  tag: ["arrow"]
1672
1674
  };
1673
1675
 
1674
- const config$1B = {
1676
+ const config$1A = {
1675
1677
  viewBox: '0 0 16 19',
1676
1678
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1677
1679
  d: "M9.66671 1.27905V4.72117C9.66671 5.18788 9.66671 5.42123 9.75754 5.59949C9.83743 5.7563 9.96491 5.88378 10.1217 5.96367C10.3 6.0545 10.5333 6.0545 11 6.0545H14.4422M11.3334 10.2211H4.66671M11.3334 13.5544H4.66671M6.33337 6.88778H4.66671M9.66671 1.05444H5.33337C3.93324 1.05444 3.23318 1.05444 2.6984 1.32693C2.22799 1.56661 1.84554 1.94906 1.60586 2.41947C1.33337 2.95425 1.33337 3.65431 1.33337 5.05444V13.7211C1.33337 15.1212 1.33337 15.8213 1.60586 16.3561C1.84554 16.8265 2.22799 17.2089 2.6984 17.4486C3.23318 17.7211 3.93324 17.7211 5.33337 17.7211H10.6667C12.0668 17.7211 12.7669 17.7211 13.3017 17.4486C13.7721 17.2089 14.1545 16.8265 14.3942 16.3561C14.6667 15.8213 14.6667 15.1212 14.6667 13.7211V6.05444L9.66671 1.05444Z",
@@ -1683,7 +1685,7 @@ const config$1B = {
1683
1685
  tag: ['file']
1684
1686
  };
1685
1687
 
1686
- const config$1A = {
1688
+ const config$1z = {
1687
1689
  viewBox: '0 0 20 20',
1688
1690
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1689
1691
  d: "M6.25033 6.22103H8.54199M6.25033 9.55436H8.54199M6.25033 12.8877H8.54199M11.4587 6.22103H13.7503M11.4587 9.55436H13.7503M11.4587 12.8877H13.7503M16.667 17.8877V5.55436C16.667 4.62094 16.667 4.15423 16.4853 3.79771C16.3255 3.48411 16.0706 3.22914 15.757 3.06935C15.4005 2.8877 14.9337 2.8877 14.0003 2.8877H6.00033C5.0669 2.8877 4.60019 2.8877 4.24367 3.06935C3.93007 3.22914 3.6751 3.48411 3.51531 3.79771C3.33366 4.15423 3.33366 4.62094 3.33366 5.55436V17.8877M18.3337 17.8877H1.66699",
@@ -1694,7 +1696,7 @@ const config$1A = {
1694
1696
  })
1695
1697
  };
1696
1698
 
1697
- const config$1z = {
1699
+ const config$1y = {
1698
1700
  viewBox: "0 0 20 20",
1699
1701
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1700
1702
  d: "M16.6667 5.83333V5.66667C16.6667 4.26654 16.6667 3.56647 16.3942 3.03169C16.1545 2.56129 15.7721 2.17884 15.3017 1.93915C14.7669 1.66667 14.0668 1.66667 12.6667 1.66667H7.33337C5.93324 1.66667 5.23318 1.66667 4.6984 1.93915C4.22799 2.17884 3.84554 2.56129 3.60586 3.03169C3.33337 3.56647 3.33337 4.26654 3.33337 5.66667V14.3333C3.33337 15.7335 3.33337 16.4335 3.60586 16.9683C3.84554 17.4387 4.22799 17.8212 4.6984 18.0609C5.23318 18.3333 5.93324 18.3333 7.33337 18.3333H10.4167M15 15V10.4167C15 9.72631 15.5597 9.16667 16.25 9.16667C16.9404 9.16667 17.5 9.72631 17.5 10.4167V15C17.5 16.3807 16.3808 17.5 15 17.5C13.6193 17.5 12.5 16.3807 12.5 15V11.6667",
@@ -1706,7 +1708,7 @@ const config$1z = {
1706
1708
  tag: ["file"]
1707
1709
  };
1708
1710
 
1709
- const config$1y = {
1711
+ const config$1x = {
1710
1712
  viewBox: '0 0 12 12',
1711
1713
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1712
1714
  d: "M1.3335 6.00004H10.6668M10.6668 6.00004L6.00016 1.33337M10.6668 6.00004L6.00016 10.6667",
@@ -1720,7 +1722,7 @@ const config$1y = {
1720
1722
 
1721
1723
  //D2D6DB
1722
1724
 
1723
- const config$1x = {
1725
+ const config$1w = {
1724
1726
  viewBox: "0 0 16 19",
1725
1727
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1726
1728
  d: "M9.66634 8.5542H4.66634M6.33301 11.8875H4.66634M11.333 5.22087H4.66634M14.6663 5.0542V13.7209C14.6663 15.121 14.6663 15.8211 14.3939 16.3558C14.1542 16.8262 13.7717 17.2087 13.3013 17.4484C12.7665 17.7209 12.0665 17.7209 10.6663 17.7209H5.33301C3.93288 17.7209 3.23281 17.7209 2.69803 17.4484C2.22763 17.2087 1.84517 16.8262 1.60549 16.3558C1.33301 15.8211 1.33301 15.121 1.33301 13.7209V5.0542C1.33301 3.65407 1.33301 2.954 1.60549 2.41922C1.84517 1.94882 2.22763 1.56637 2.69803 1.32668C3.23281 1.0542 3.93288 1.0542 5.33301 1.0542H10.6663C12.0665 1.0542 12.7665 1.0542 13.3013 1.32668C13.7717 1.56637 14.1542 1.94882 14.3939 2.41922C14.6663 2.954 14.6663 3.65407 14.6663 5.0542Z",
@@ -1732,7 +1734,7 @@ const config$1x = {
1732
1734
  tag: ["file"]
1733
1735
  };
1734
1736
 
1735
- const config$1w = {
1737
+ const config$1v = {
1736
1738
  viewBox: '0 0 45 45',
1737
1739
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1738
1740
  d: "M26.4212 12.6042H37.5845C38.4698 12.6042 38.9124 12.6042 39.1713 12.7903C39.3971 12.9527 39.5442 13.2026 39.5765 13.479C39.6135 13.7956 39.3985 14.1826 38.9686 14.9564L36.3044 19.7519C36.1485 20.0325 36.0706 20.1729 36.04 20.3215C36.0129 20.453 36.0129 20.5887 36.04 20.7202C36.0706 20.8688 36.1485 21.0091 36.3044 21.2898L38.9686 26.0852C39.3985 26.8591 39.6135 27.246 39.5765 27.5627C39.5442 27.839 39.3971 28.089 39.1713 28.2514C38.9124 28.4375 38.4698 28.4375 37.5845 28.4375H23.6504C22.542 28.4375 21.9877 28.4375 21.5644 28.2218C21.192 28.032 20.8892 27.7293 20.6994 27.3569C20.4837 26.9335 20.4837 26.3793 20.4837 25.2708V20.5208M13.5566 40.3125L5.63997 8.64583M8.60881 20.5208H23.2546C24.363 20.5208 24.9172 20.5208 25.3406 20.3051C25.713 20.1154 26.0158 19.8126 26.2055 19.4402C26.4212 19.0168 26.4212 18.4626 26.4212 17.3542V7.85417C26.4212 6.74573 26.4212 6.19151 26.2055 5.76814C26.0158 5.39574 25.713 5.09297 25.3406 4.90322C24.9172 4.6875 24.363 4.6875 23.2546 4.6875H8.70615C7.32366 4.6875 6.63242 4.6875 6.15963 4.97396C5.74525 5.22502 5.43736 5.61936 5.2943 6.08226C5.13107 6.61041 5.29873 7.28102 5.63404 8.62223L8.60881 20.5208Z",
@@ -1743,7 +1745,7 @@ const config$1w = {
1743
1745
  })
1744
1746
  };
1745
1747
 
1746
- const config$1v = {
1748
+ const config$1u = {
1747
1749
  viewBox: '0 0 45 45',
1748
1750
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1749
1751
  d: "M30 15V9.375L35.625 3.75L37.5 7.5L41.25 9.375L35.625 15H30ZM30 15L22.5 22.4999M41.2501 22.5C41.2501 32.8553 32.8554 41.25 22.5001 41.25C12.1447 41.25 3.75006 32.8553 3.75006 22.5C3.75006 12.1447 12.1447 3.75 22.5001 3.75M31.8751 22.5C31.8751 27.6777 27.6777 31.875 22.5001 31.875C17.3224 31.875 13.1251 27.6777 13.1251 22.5C13.1251 17.3223 17.3224 13.125 22.5001 13.125",
@@ -1754,7 +1756,7 @@ const config$1v = {
1754
1756
  })
1755
1757
  };
1756
1758
 
1757
- const config$1u = {
1759
+ const config$1t = {
1758
1760
  viewBox: '0 0 16 22',
1759
1761
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1760
1762
  d: "M3.96668 13.7219L3 21L7.5884 18.247C7.73805 18.1572 7.81288 18.1123 7.89276 18.0947C7.96341 18.0792 8.03659 18.0792 8.10724 18.0947C8.18712 18.1123 8.26195 18.1572 8.4116 18.247L13 21L12.0343 13.7212M15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8Z",
@@ -1765,7 +1767,7 @@ const config$1u = {
1765
1767
  })
1766
1768
  };
1767
1769
 
1768
- const config$1t = {
1770
+ const config$1s = {
1769
1771
  viewBox: '0 0 24 24',
1770
1772
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1771
1773
  d: "M7.10102 10H7V8C7 5.23858 9.23858 3 12 3C14.7614 3 17 5.23858 17 8V10H16.899M12 14V16M19 15C19 18.866 15.866 22 12 22C8.13401 22 5 18.866 5 15C5 11.134 8.13401 8 12 8C15.866 8 19 11.134 19 15Z",
@@ -1776,7 +1778,7 @@ const config$1t = {
1776
1778
  })
1777
1779
  };
1778
1780
 
1779
- const config$1s = {
1781
+ const config$1r = {
1780
1782
  viewBox: '0 0 24 24',
1781
1783
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1782
1784
  d: "M17 8.99994C17 8.48812 16.8047 7.9763 16.4142 7.58579C16.0237 7.19526 15.5118 7 15 7M15 15C18.3137 15 21 12.3137 21 9C21 5.68629 18.3137 3 15 3C11.6863 3 9 5.68629 9 9C9 9.27368 9.01832 9.54308 9.05381 9.80704C9.11218 10.2412 9.14136 10.4583 9.12172 10.5956C9.10125 10.7387 9.0752 10.8157 9.00469 10.9419C8.937 11.063 8.81771 11.1823 8.57913 11.4209L3.46863 16.5314C3.29568 16.7043 3.2092 16.7908 3.14736 16.8917C3.09253 16.9812 3.05213 17.0787 3.02763 17.1808C3 17.2959 3 17.4182 3 17.6627V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21H7V19H9V17H11L12.5791 15.4209C12.8177 15.1823 12.937 15.063 13.0581 14.9953C13.1843 14.9248 13.2613 14.8987 13.4044 14.8783C13.5417 14.8586 13.7588 14.8878 14.193 14.9462C14.4569 14.9817 14.7263 15 15 15Z",
@@ -1787,7 +1789,7 @@ const config$1s = {
1787
1789
  })
1788
1790
  };
1789
1791
 
1790
- const config$1r = {
1792
+ const config$1q = {
1791
1793
  viewBox: "0 0 17 16",
1792
1794
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1793
1795
  d: "M12.5 6.66668L9.83331 4.00001M2.16663 14.3333L4.42287 14.0826C4.69853 14.052 4.83636 14.0367 4.96519 13.995C5.07949 13.958 5.18826 13.9057 5.28855 13.8396C5.4016 13.765 5.49966 13.667 5.69578 13.4709L14.5 4.66668C15.2364 3.9303 15.2364 2.73639 14.5 2.00001C13.7636 1.26363 12.5697 1.26363 11.8333 2.00001L3.02911 10.8042C2.83299 11.0003 2.73493 11.0984 2.66038 11.2114C2.59425 11.3117 2.54197 11.4205 2.50497 11.5348C2.46326 11.6636 2.44795 11.8014 2.41732 12.0771L2.16663 14.3333Z",
@@ -1799,7 +1801,7 @@ const config$1r = {
1799
1801
  tag: ["edit"]
1800
1802
  };
1801
1803
 
1802
- const config$1q = {
1804
+ const config$1p = {
1803
1805
  viewBox: "0 0 26 26",
1804
1806
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1805
1807
  d: "M8.48612 7.37796H3.15152V15.6671M3.15152 15.6671H4.05948C4.80059 15.6671 5.52034 15.9154 6.10382 16.3723L11.326 20.462C11.7339 20.7814 12.3041 20.7915 12.7231 20.4868V20.4868C13.2994 20.0677 13.3649 19.2328 12.861 18.7289L10.62 16.4878L14.104 19.9022C14.4631 20.2541 15.0221 20.3002 15.4341 20.0119V20.0119C15.935 19.6612 16.029 18.9572 15.6375 18.4874L13.4924 15.9133L16.3268 19.263C16.7573 19.7717 17.5169 19.8396 18.0306 19.4151V19.4151C18.5574 18.98 18.6227 18.1965 18.1752 17.6801L15.7904 14.9285L18.6608 18.1903C19.0766 18.6628 19.7888 18.7289 20.2845 18.341V18.341C20.8274 17.9161 20.8957 17.1199 20.4332 16.6087L19.7298 15.8312M3.15152 15.6671V7.29589C3.15152 7.02393 2.93105 6.80347 2.6591 6.80347H1.67425C1.40229 6.80347 1.18182 7.02393 1.18182 7.29589V15.6671C1.18182 15.9391 1.40229 16.1595 1.67425 16.1595H2.6591C2.93105 16.1595 3.15152 15.9391 3.15152 15.6671ZM11.2355 8.8142L12.2271 8.06294C12.4318 7.90787 12.7213 7.93614 12.8922 8.12789L20.3857 16.539C20.5319 16.703 20.769 16.7504 20.967 16.6551L22.5697 15.8834C22.7401 15.8014 22.8485 15.6289 22.8485 15.4397V7.73167C22.8485 7.5203 22.7136 7.33251 22.5133 7.26502L16.1396 5.28149C15.5822 5.09369 14.998 4.99791 14.4099 4.99791H13.6645C12.4876 4.99791 11.3428 5.21705 10.4031 5.92563L7.25903 8.29658C7.07659 8.43416 7.11386 8.71814 7.32562 8.80399L8.3069 9.20181C9.2832 9.59761 10.3958 9.45036 11.2355 8.8142ZM23.3409 16.1595H24.3258C24.5977 16.1595 24.8182 15.9391 24.8182 15.6671V7.29589C24.8182 7.02393 24.5977 6.80347 24.3258 6.80347H23.3409C23.069 6.80347 22.8485 7.02393 22.8485 7.29589V15.6671C22.8485 15.9391 23.069 16.1595 23.3409 16.1595Z",
@@ -1810,7 +1812,7 @@ const config$1q = {
1810
1812
  tag: ["hand"]
1811
1813
  };
1812
1814
 
1813
- const config$1p = {
1815
+ const config$1o = {
1814
1816
  viewBox: '0 0 18 17',
1815
1817
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1816
1818
  d: "M14.6666 12.5544H1.33331M1.33331 12.5544L4.66665 9.22103M1.33331 12.5544L4.66665 15.8877M1.33331 4.22103H14.6666M14.6666 4.22103L11.3333 0.887695M14.6666 4.22103L11.3333 7.55436",
@@ -1822,7 +1824,7 @@ const config$1p = {
1822
1824
  tag: ['arrow']
1823
1825
  };
1824
1826
 
1825
- const config$1o = {
1827
+ const config$1n = {
1826
1828
  viewBox: '0 0 7 7',
1827
1829
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1828
1830
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1840,7 +1842,7 @@ const config$1o = {
1840
1842
  })
1841
1843
  };
1842
1844
 
1843
- const config$1n = {
1845
+ const config$1m = {
1844
1846
  viewBox: '0 0 12 12',
1845
1847
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1846
1848
  fillRule: "evenodd",
@@ -1851,7 +1853,7 @@ const config$1n = {
1851
1853
  tag: ['logo']
1852
1854
  };
1853
1855
 
1854
- const config$1m = {
1856
+ const config$1l = {
1855
1857
  viewBox: '0 0 25 26',
1856
1858
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1857
1859
  fillRule: "evenodd",
@@ -1862,7 +1864,7 @@ const config$1m = {
1862
1864
  tag: ['logo']
1863
1865
  };
1864
1866
 
1865
- const config$1l = {
1867
+ const config$1k = {
1866
1868
  viewBox: '0 0 26 26',
1867
1869
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1868
1870
  fillRule: "evenodd",
@@ -1873,7 +1875,7 @@ const config$1l = {
1873
1875
  tag: ['logo']
1874
1876
  };
1875
1877
 
1876
- const config$1k = {
1878
+ const config$1j = {
1877
1879
  viewBox: "0 0 26 25",
1878
1880
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1879
1881
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1890,7 +1892,7 @@ const config$1k = {
1890
1892
  tag: ["logo"]
1891
1893
  };
1892
1894
 
1893
- const config$1j = {
1895
+ const config$1i = {
1894
1896
  viewBox: '0 0 54 54',
1895
1897
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1896
1898
  fillRule: "evenodd",
@@ -1901,7 +1903,7 @@ const config$1j = {
1901
1903
  tag: ['logo']
1902
1904
  };
1903
1905
 
1904
- const config$1i = {
1906
+ const config$1h = {
1905
1907
  viewBox: '0 0 12 12',
1906
1908
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1907
1909
  fillRule: "evenodd",
@@ -1912,7 +1914,7 @@ const config$1i = {
1912
1914
  tag: ['logo']
1913
1915
  };
1914
1916
 
1915
- const config$1h = {
1917
+ const config$1g = {
1916
1918
  viewBox: "0 0 12 18",
1917
1919
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1918
1920
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1926,7 +1928,7 @@ const config$1h = {
1926
1928
  tag: ["kobo", "logo"]
1927
1929
  };
1928
1930
 
1929
- const config$1g = {
1931
+ const config$1f = {
1930
1932
  viewBox: "0 0 12 14",
1931
1933
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1932
1934
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -1946,7 +1948,7 @@ const config$1g = {
1946
1948
  tag: ["map"]
1947
1949
  };
1948
1950
 
1949
- const config$1f = {
1951
+ const config$1e = {
1950
1952
  viewBox: '0 0 16 16',
1951
1953
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1952
1954
  d: "M3 9.25001L3.98415 13.1866C4.01183 13.2973 4.02567 13.3527 4.04204 13.401C4.20198 13.8732 4.6272 14.2052 5.12408 14.2458C5.17494 14.25 5.232 14.25 5.34612 14.25C5.48903 14.25 5.56048 14.25 5.62067 14.2442C6.21562 14.1865 6.68646 13.7156 6.74416 13.1207C6.75 13.0605 6.75 12.989 6.75 12.8461V3.93751M12.0625 8.93751C13.2706 8.93751 14.25 7.95813 14.25 6.75001C14.25 5.54188 13.2706 4.56251 12.0625 4.56251M6.90625 3.93751H4.5625C3.0092 3.93751 1.75 5.19671 1.75 6.75001C1.75 8.30331 3.0092 9.56251 4.5625 9.56251H6.90625C8.01027 9.56251 9.36078 10.1543 10.4027 10.7223C11.0105 11.0536 11.3144 11.2193 11.5135 11.1949C11.6981 11.1723 11.8376 11.0894 11.9458 10.9382C12.0625 10.7751 12.0625 10.4488 12.0625 9.79608V3.70393C12.0625 3.05125 12.0625 2.72491 11.9458 2.56181C11.8376 2.41057 11.6981 2.32769 11.5135 2.30509C11.3144 2.28071 11.0105 2.44638 10.4027 2.77773C9.36078 3.3457 8.01027 3.93751 6.90625 3.93751Z",
@@ -1957,7 +1959,7 @@ const config$1f = {
1957
1959
  })
1958
1960
  };
1959
1961
 
1960
- const config$1e = {
1962
+ const config$1d = {
1961
1963
  viewBox: "0 0 16 13",
1962
1964
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1963
1965
  d: "M5.49349 3.09782H2.53125V8.8514M2.53125 8.8514H3.00366C3.43116 8.8514 3.84165 9.01888 4.14715 9.31793L6.96782 12.0791C7.2403 12.3459 7.6735 12.3539 7.95564 12.0974V12.0974C8.23679 11.8418 8.27089 11.4117 8.03353 11.115L6.67839 9.42106L8.54249 11.7046C8.7691 11.9822 9.18068 12.0167 9.45037 11.7807V11.7807C9.68963 11.5714 9.73665 11.2171 9.56031 10.9526L8.27344 9.0223L9.77212 11.2363C10.0333 11.6221 10.5832 11.6701 10.9073 11.3354V11.3354C11.1511 11.0836 11.1829 10.6946 10.9832 10.4066L9.54948 8.33871L11.0677 10.4953C11.323 10.8579 11.8424 10.9056 12.1594 10.5954V10.5954C12.4142 10.3462 12.4481 9.94786 12.2391 9.65907L11.737 8.96533M2.53125 8.8514V3.04085C2.53125 2.85208 2.40883 2.69906 2.25781 2.69906H1.71094C1.55992 2.69906 1.4375 2.85208 1.4375 3.04085V8.8514C1.4375 9.04017 1.55992 9.1932 1.71094 9.1932H2.25781C2.40883 9.1932 2.53125 9.04017 2.53125 8.8514ZM7.02018 4.09473L7.57084 3.57327C7.68451 3.46563 7.84526 3.48525 7.94012 3.61835L12.1012 9.45657C12.1823 9.57045 12.314 9.60333 12.424 9.53717L13.3139 9.00154C13.4086 8.94458 13.4688 8.82489 13.4688 8.69358V3.34333C13.4688 3.19662 13.3938 3.06627 13.2826 3.01942L9.74336 1.64263C9.43388 1.51228 9.10949 1.4458 8.78291 1.4458H8.36896C7.71546 1.4458 7.07975 1.59791 6.55798 2.08974L4.81211 3.73544C4.7108 3.83093 4.73149 4.02805 4.84908 4.08764L5.39397 4.36377C5.9361 4.6385 6.55389 4.53629 7.02018 4.09473ZM13.7422 9.1932H14.2891C14.4401 9.1932 14.5625 9.04017 14.5625 8.8514V3.04085C14.5625 2.85208 14.4401 2.69906 14.2891 2.69906H13.7422C13.5912 2.69906 13.4688 2.85208 13.4688 3.04085V8.8514C13.4688 9.04017 13.5912 9.1932 13.7422 9.1932Z",
@@ -1968,7 +1970,7 @@ const config$1e = {
1968
1970
  tag: ["hand"]
1969
1971
  };
1970
1972
 
1971
- const config$1d = {
1973
+ const config$1c = {
1972
1974
  viewBox: '0 0 20 20',
1973
1975
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1974
1976
  d: "M18.3334 10H15.0001M5.00008 10H1.66675M10.0001 5.00002V1.66669M10.0001 18.3334V15M16.6667 10C16.6667 13.6819 13.682 16.6667 10.0001 16.6667C6.31818 16.6667 3.33341 13.6819 3.33341 10C3.33341 6.31812 6.31818 3.33335 10.0001 3.33335C13.682 3.33335 16.6667 6.31812 16.6667 10ZM12.5001 10C12.5001 11.3807 11.3808 12.5 10.0001 12.5C8.61937 12.5 7.50008 11.3807 7.50008 10C7.50008 8.61931 8.61937 7.50002 10.0001 7.50002C11.3808 7.50002 12.5001 8.61931 12.5001 10Z",
@@ -1979,7 +1981,7 @@ const config$1d = {
1979
1981
  })
1980
1982
  };
1981
1983
 
1982
- const config$1c = {
1984
+ const config$1b = {
1983
1985
  viewBox: '0 0 18 18',
1984
1986
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1985
1987
  d: "M9 5.66667V9M9 12.3333H9.00833M5.5 16.5H12.5C13.9001 16.5 14.6002 16.5 15.135 16.2275C15.6054 15.9878 15.9878 15.6054 16.2275 15.135C16.5 14.6002 16.5 13.9001 16.5 12.5V5.5C16.5 4.09987 16.5 3.3998 16.2275 2.86502C15.9878 2.39462 15.6054 2.01217 15.135 1.77248C14.6002 1.5 13.9001 1.5 12.5 1.5H5.5C4.09987 1.5 3.3998 1.5 2.86502 1.77248C2.39462 2.01217 2.01217 2.39462 1.77248 2.86502C1.5 3.3998 1.5 4.09987 1.5 5.5V12.5C1.5 13.9001 1.5 14.6002 1.77248 15.135C2.01217 15.6054 2.39462 15.9878 2.86502 16.2275C3.3998 16.5 4.09987 16.5 5.5 16.5Z",
@@ -1991,7 +1993,7 @@ const config$1c = {
1991
1993
  tag: ["square"]
1992
1994
  };
1993
1995
 
1994
- const config$1b = {
1996
+ const config$1a = {
1995
1997
  viewBox: "0 0 17 20",
1996
1998
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
1997
1999
  d: "M14.6667 10.4166V5.66663C14.6667 4.26649 14.6667 3.56643 14.3942 3.03165C14.1545 2.56124 13.7721 2.17879 13.3017 1.93911C12.7669 1.66663 12.0668 1.66663 10.6667 1.66663H5.33337C3.93324 1.66663 3.23318 1.66663 2.6984 1.93911C2.22799 2.17879 1.84554 2.56124 1.60586 3.03165C1.33337 3.56643 1.33337 4.26649 1.33337 5.66663V14.3333C1.33337 15.7334 1.33337 16.4335 1.60586 16.9683C1.84554 17.4387 2.22799 17.8211 2.6984 18.0608C3.23318 18.3333 3.93324 18.3333 5.33337 18.3333H8.00004M9.66671 9.16663H4.66671M6.33337 12.5H4.66671M11.3334 5.83329H4.66671M10.0834 15.8333L11.75 17.5L15.5 13.75",
@@ -2003,7 +2005,7 @@ const config$1b = {
2003
2005
  tag: ["file", "check"]
2004
2006
  };
2005
2007
 
2006
- const config$1a = {
2008
+ const config$19 = {
2007
2009
  viewBox: '0 0 18 20',
2008
2010
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2009
2011
  d: "M10.6667 16.6666C10.6667 17.5871 9.92047 18.3333 9 18.3333C8.07953 18.3333 7.33333 17.5871 7.33333 16.6666M10.6667 16.6666C10.6667 15.7462 9.92047 15 9 15M10.6667 16.6666H16.5M7.33333 16.6666C7.33333 15.7462 8.07953 15 9 15M7.33333 16.6666H1.5M9 15V11.6666M16.5 4.16663C16.5 5.54734 13.1421 6.66663 9 6.66663C4.85786 6.66663 1.5 5.54734 1.5 4.16663M16.5 4.16663C16.5 2.78591 13.1421 1.66663 9 1.66663C4.85786 1.66663 1.5 2.78591 1.5 4.16663M16.5 4.16663V9.16663C16.5 10.55 13.1667 11.6666 9 11.6666M1.5 4.16663V9.16663C1.5 10.55 4.83333 11.6666 9 11.6666",
@@ -2014,7 +2016,7 @@ const config$1a = {
2014
2016
  })
2015
2017
  };
2016
2018
 
2017
- const config$19 = {
2019
+ const config$18 = {
2018
2020
  viewBox: '0 0 16 16',
2019
2021
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2020
2022
  d: "M6.59375 13.4686L7.51436 13.9801C7.69161 14.0785 7.78024 14.1278 7.87409 14.1471C7.95716 14.1642 8.04284 14.1642 8.12591 14.1471C8.21977 14.1278 8.30839 14.0785 8.48564 13.9801L9.40625 13.4686M3.78125 11.9061L2.88936 11.4106C2.70216 11.3066 2.60855 11.2546 2.5404 11.1807C2.4801 11.1152 2.43447 11.0377 2.40655 10.9532C2.375 10.8577 2.375 10.7506 2.375 10.5365V9.56237M2.375 6.43737V5.46327C2.375 5.24912 2.375 5.14205 2.40655 5.04655C2.43447 4.96206 2.4801 4.88451 2.5404 4.81908C2.60855 4.74512 2.70216 4.69312 2.88936 4.58912L3.78125 4.09362M6.59375 2.53112L7.51436 2.01967C7.69161 1.9212 7.78024 1.87196 7.87409 1.85266C7.95716 1.83557 8.04284 1.83557 8.12591 1.85266C8.21977 1.87196 8.30839 1.9212 8.48564 2.01967L9.40625 2.53112M12.2188 4.09362L13.1106 4.58912C13.2978 4.69312 13.3914 4.74512 13.4596 4.81908C13.5199 4.88451 13.5655 4.96206 13.5934 5.04655C13.625 5.14205 13.625 5.24912 13.625 5.46327V6.43737M13.625 9.56237V10.5365C13.625 10.7506 13.625 10.8577 13.5934 10.9532C13.5655 11.0377 13.5199 11.1152 13.4596 11.1807C13.3914 11.2546 13.2978 11.3066 13.1106 11.4106L12.2188 11.9061M6.59375 7.21862L8 7.99987M8 7.99987L9.40625 7.21862M8 7.99987V9.56237M2.375 4.87487L3.78125 5.65612M12.2188 5.65612L13.625 4.87487M8 12.6874V14.2499",
@@ -2025,7 +2027,7 @@ const config$19 = {
2025
2027
  })
2026
2028
  };
2027
2029
 
2028
- const config$18 = {
2030
+ const config$17 = {
2029
2031
  viewBox: '0 0 16 16',
2030
2032
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2031
2033
  d: "M7.375 3.3125H11.9375C12.6376 3.3125 12.9876 3.3125 13.255 3.44874C13.4902 3.56858 13.6814 3.75981 13.8013 3.99501C13.9375 4.2624 13.9375 4.61243 13.9375 5.3125V6.125C13.9375 6.70743 13.9375 6.99864 13.8423 7.22835C13.7155 7.53464 13.4721 7.77798 13.1659 7.90485C12.9361 8 12.6449 8 12.0625 8M8.625 12.6875H4.0625C3.36243 12.6875 3.0124 12.6875 2.74501 12.5513C2.50981 12.4314 2.31858 12.2402 2.19874 12.005C2.0625 11.7376 2.0625 11.3876 2.0625 10.6875V9.875C2.0625 9.29257 2.0625 9.00136 2.15765 8.77165C2.28452 8.46536 2.52786 8.22202 2.83415 8.09515C3.06386 8 3.35507 8 3.9375 8M6.9375 9.5625H9.0625C9.23752 9.5625 9.32502 9.5625 9.39187 9.52844C9.45067 9.49848 9.49848 9.45067 9.52844 9.39187C9.5625 9.32502 9.5625 9.23752 9.5625 9.0625V6.9375C9.5625 6.76248 9.5625 6.67498 9.52844 6.60813C9.49848 6.54933 9.45067 6.50152 9.39187 6.47156C9.32502 6.4375 9.23752 6.4375 9.0625 6.4375H6.9375C6.76248 6.4375 6.67498 6.4375 6.60813 6.47156C6.54933 6.50152 6.50152 6.54933 6.47156 6.60813C6.4375 6.67498 6.4375 6.76248 6.4375 6.9375V9.0625C6.4375 9.23752 6.4375 9.32502 6.47156 9.39187C6.50152 9.45067 6.54933 9.49848 6.60813 9.52844C6.67498 9.5625 6.76248 9.5625 6.9375 9.5625ZM11.625 14.25H13.75C13.925 14.25 14.0125 14.25 14.0794 14.2159C14.1382 14.186 14.186 14.1382 14.2159 14.0794C14.25 14.0125 14.25 13.925 14.25 13.75V11.625C14.25 11.45 14.25 11.3625 14.2159 11.2956C14.186 11.2368 14.1382 11.189 14.0794 11.1591C14.0125 11.125 13.925 11.125 13.75 11.125H11.625C11.45 11.125 11.3625 11.125 11.2956 11.1591C11.2368 11.189 11.189 11.2368 11.1591 11.2956C11.125 11.3625 11.125 11.45 11.125 11.625V13.75C11.125 13.925 11.125 14.0125 11.1591 14.0794C11.189 14.1382 11.2368 14.186 11.2956 14.2159C11.3625 14.25 11.45 14.25 11.625 14.25ZM2.25 4.875H4.375C4.55002 4.875 4.63752 4.875 4.70437 4.84094C4.76317 4.81098 4.81098 4.76317 4.84094 4.70437C4.875 4.63752 4.875 4.55002 4.875 4.375V2.25C4.875 2.07498 4.875 1.98748 4.84094 1.92063C4.81098 1.86183 4.76317 1.81402 4.70437 1.78406C4.63752 1.75 4.55002 1.75 4.375 1.75H2.25C2.07498 1.75 1.98748 1.75 1.92063 1.78406C1.86183 1.81402 1.81402 1.86183 1.78406 1.92063C1.75 1.98748 1.75 2.07498 1.75 2.25V4.375C1.75 4.55002 1.75 4.63752 1.78406 4.70437C1.81402 4.76317 1.86183 4.81098 1.92063 4.84094C1.98748 4.875 2.07498 4.875 2.25 4.875Z",
@@ -2036,7 +2038,7 @@ const config$18 = {
2036
2038
  })
2037
2039
  };
2038
2040
 
2039
- const config$17 = {
2041
+ const config$16 = {
2040
2042
  viewBox: "0 0 22 22",
2041
2043
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2042
2044
  d: "M11 7.33333V14.6667M7.33333 11H14.6667M7.15 19.25H14.85C16.3901 19.25 17.1602 19.25 17.7485 18.9503C18.2659 18.6866 18.6866 18.2659 18.9503 17.7485C19.25 17.1602 19.25 16.3901 19.25 14.85V7.15C19.25 5.60986 19.25 4.83978 18.9503 4.25153C18.6866 3.73408 18.2659 3.31338 17.7485 3.04973C17.1602 2.75 16.3901 2.75 14.85 2.75H7.15C5.60986 2.75 4.83978 2.75 4.25153 3.04973C3.73408 3.31338 3.31338 3.73408 3.04973 4.25153C2.75 4.83978 2.75 5.60986 2.75 7.15V14.85C2.75 16.3901 2.75 17.1602 3.04973 17.7485C3.31338 18.2659 3.73408 18.6866 4.25153 18.9503C4.83978 19.25 5.60986 19.25 7.15 19.25Z",
@@ -2048,7 +2050,7 @@ const config$17 = {
2048
2050
  tag: ["square", "add"]
2049
2051
  };
2050
2052
 
2051
- const config$16 = {
2053
+ const config$15 = {
2052
2054
  viewBox: "0 0 23 22",
2053
2055
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2054
2056
  d: "M3.91668 19.9993C4.46905 20.1666 5.21511 20.1666 6.48333 20.1666H16.0167C17.2849 20.1666 18.0309 20.1666 18.5833 19.9993M3.91668 19.9993C3.79825 19.9634 3.68872 19.9198 3.58485 19.8669C3.06741 19.6033 2.64671 19.1826 2.38306 18.6651C2.08333 18.0769 2.08333 17.3068 2.08333 15.7666V6.23331C2.08333 4.69317 2.08333 3.9231 2.38306 3.33484C2.64671 2.81739 3.06741 2.3967 3.58485 2.13305C4.17311 1.83331 4.94318 1.83331 6.48333 1.83331H16.0167C17.5568 1.83331 18.3269 1.83331 18.9151 2.13305C19.4326 2.3967 19.8533 2.81739 20.1169 3.33484C20.4167 3.9231 20.4167 4.69317 20.4167 6.23331V15.7666C20.4167 17.3068 20.4167 18.0769 20.1169 18.6651C19.8533 19.1826 19.4326 19.6033 18.9151 19.8669C18.8113 19.9198 18.7017 19.9634 18.5833 19.9993M3.91668 19.9993C3.91698 19.2574 3.92143 18.8649 3.98712 18.5346C4.27644 17.0801 5.41346 15.9431 6.868 15.6538C7.22219 15.5833 7.64813 15.5833 8.49999 15.5833H14C14.8519 15.5833 15.2778 15.5833 15.632 15.6538C17.0865 15.9431 18.2235 17.0801 18.5129 18.5346C18.5786 18.8649 18.583 19.2574 18.5833 19.9993M14.9167 8.70831C14.9167 10.7334 13.275 12.375 11.25 12.375C9.22495 12.375 7.58333 10.7334 7.58333 8.70831C7.58333 6.68327 9.22495 5.04165 11.25 5.04165C13.275 5.04165 14.9167 6.68327 14.9167 8.70831Z",
@@ -2060,7 +2062,7 @@ const config$16 = {
2060
2062
  tag: ["square", "user"]
2061
2063
  };
2062
2064
 
2063
- const config$15 = {
2065
+ const config$14 = {
2064
2066
  viewBox: "0 0 23 22",
2065
2067
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2066
2068
  d: "M7.375 11L10.125 13.75L15.625 8.25M7.65 19.25H15.35C16.8901 19.25 17.6602 19.25 18.2485 18.9503C18.7659 18.6866 19.1866 18.2659 19.4503 17.7485C19.75 17.1602 19.75 16.3901 19.75 14.85V7.15C19.75 5.60986 19.75 4.83978 19.4503 4.25153C19.1866 3.73408 18.7659 3.31338 18.2485 3.04973C17.6602 2.75 16.8901 2.75 15.35 2.75H7.65C6.10986 2.75 5.33978 2.75 4.75153 3.04973C4.23408 3.31338 3.81338 3.73408 3.54973 4.25153C3.25 4.83978 3.25 5.60986 3.25 7.15V14.85C3.25 16.3901 3.25 17.1602 3.54973 17.7485C3.81338 18.2659 4.23408 18.6866 4.75153 18.9503C5.33978 19.25 6.10986 19.25 7.65 19.25Z",
@@ -2072,7 +2074,7 @@ const config$15 = {
2072
2074
  tag: ["square", "check"]
2073
2075
  };
2074
2076
 
2075
- const config$14 = {
2077
+ const config$13 = {
2076
2078
  viewBox: "0 0 15 15",
2077
2079
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2078
2080
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2084,7 +2086,7 @@ const config$14 = {
2084
2086
  })
2085
2087
  };
2086
2088
 
2087
- const config$13 = {
2089
+ const config$12 = {
2088
2090
  viewBox: "0 0 15 15",
2089
2091
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2090
2092
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2096,7 +2098,7 @@ const config$13 = {
2096
2098
  })
2097
2099
  };
2098
2100
 
2099
- const config$12 = {
2101
+ const config$11 = {
2100
2102
  viewBox: "0 0 16 16",
2101
2103
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2102
2104
  d: "M11.3333 13.3333H11.2C10.0799 13.3333 9.51984 13.3333 9.09202 13.1154C8.71569 12.9236 8.40973 12.6176 8.21799 12.2413C8 11.8135 8 11.2534 8 10.1333V5.86668C8 4.74657 8 4.18652 8.21799 3.7587C8.40973 3.38237 8.71569 3.07641 9.09202 2.88466C9.51984 2.66668 10.0799 2.66668 11.2 2.66668H11.3333M11.3333 13.3333C11.3333 14.0697 11.9303 14.6667 12.6667 14.6667C13.403 14.6667 14 14.0697 14 13.3333C14 12.597 13.403 12 12.6667 12C11.9303 12 11.3333 12.597 11.3333 13.3333ZM11.3333 2.66668C11.3333 3.40306 11.9303 4.00001 12.6667 4.00001C13.403 4.00001 14 3.40306 14 2.66668C14 1.9303 13.403 1.33334 12.6667 1.33334C11.9303 1.33334 11.3333 1.9303 11.3333 2.66668ZM4.66667 8.00001L11.3333 8.00001M4.66667 8.00001C4.66667 8.73639 4.06971 9.33334 3.33333 9.33334C2.59695 9.33334 2 8.73639 2 8.00001C2 7.26363 2.59695 6.66668 3.33333 6.66668C4.06971 6.66668 4.66667 7.26363 4.66667 8.00001ZM11.3333 8.00001C11.3333 8.73639 11.9303 9.33334 12.6667 9.33334C13.403 9.33334 14 8.73639 14 8.00001C14 7.26363 13.403 6.66668 12.6667 6.66668C11.9303 6.66668 11.3333 7.26363 11.3333 8.00001Z",
@@ -2108,7 +2110,7 @@ const config$12 = {
2108
2110
  tag: ["chart"]
2109
2111
  };
2110
2112
 
2111
- const config$11 = {
2113
+ const config$10 = {
2112
2114
  viewBox: "0 0 16 16",
2113
2115
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
2114
2116
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2139,7 +2141,7 @@ const config$11 = {
2139
2141
  })
2140
2142
  };
2141
2143
 
2142
- const config$10 = {
2144
+ const config$$ = {
2143
2145
  viewBox: "0 0 23 22",
2144
2146
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2145
2147
  d: "M18.7333 6.41671V6.23337C18.7333 4.69323 18.7333 3.92316 18.4336 3.3349C18.1699 2.81745 17.7492 2.39676 17.2318 2.13311C16.6435 1.83337 15.8735 1.83337 14.3333 1.83337H8.46665C6.92651 1.83337 6.15643 1.83337 5.56818 2.13311C5.05073 2.39676 4.63003 2.81745 4.36638 3.3349C4.06665 3.92316 4.06665 4.69323 4.06665 6.23337V15.7667C4.06665 17.3069 4.06665 18.0769 4.36638 18.6652C4.63003 19.1826 5.05073 19.6033 5.56818 19.867C6.15643 20.1667 6.92651 20.1667 8.46665 20.1667H11.8583M11.8583 10.0834H7.73332M10.9417 13.75H7.73332M15.0667 6.41671H7.73332M13.8707 19.2502L16.5198 17.4953C16.6926 17.3809 16.779 17.3236 16.8545 17.2546C16.9214 17.1934 16.9819 17.1253 17.0348 17.0516C17.0944 16.9685 17.141 16.8759 17.2343 16.6908L20.3442 10.1006C20.4267 9.93676 20.4679 9.85485 20.4676 9.77622C20.4673 9.70706 20.445 9.63977 20.4041 9.584C20.3576 9.52061 20.2757 9.47935 20.1119 9.39684L17.7385 8.20144C17.5747 8.11893 17.4928 8.07767 17.4142 8.07804C17.345 8.07836 17.2777 8.10057 17.222 8.14149C17.1586 8.188 17.1173 8.26991 17.0348 8.43373L13.9249 15.0239C13.8316 15.2091 13.785 15.3017 13.7537 15.399C13.726 15.4854 13.7073 15.5745 13.6979 15.6647C13.6874 15.7664 13.6928 15.8699 13.7037 16.077L13.8707 19.2502Z",
@@ -2151,7 +2153,7 @@ const config$10 = {
2151
2153
  tag: ["file", "edit"]
2152
2154
  };
2153
2155
 
2154
- const config$$ = {
2156
+ const config$_ = {
2155
2157
  viewBox: "0 0 20 20",
2156
2158
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2157
2159
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2164,7 +2166,7 @@ const config$$ = {
2164
2166
  tag: ["chart"]
2165
2167
  };
2166
2168
 
2167
- const config$_ = {
2169
+ const config$Z = {
2168
2170
  viewBox: "0 0 20 20",
2169
2171
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2170
2172
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2178,7 +2180,7 @@ const config$_ = {
2178
2180
  tag: ["map"]
2179
2181
  };
2180
2182
 
2181
- const config$Z = {
2183
+ const config$Y = {
2182
2184
  viewBox: "0 0 20 20",
2183
2185
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2184
2186
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2191,7 +2193,7 @@ const config$Z = {
2191
2193
  tag: ["circle"]
2192
2194
  };
2193
2195
 
2194
- const config$Y = {
2196
+ const config$X = {
2195
2197
  viewBox: "0 0 20 20",
2196
2198
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2197
2199
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2205,7 +2207,7 @@ const config$Y = {
2205
2207
  tag: ["hand"]
2206
2208
  };
2207
2209
 
2208
- const config$X = {
2210
+ const config$W = {
2209
2211
  viewBox: "0 0 14 20",
2210
2212
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2211
2213
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2218,7 +2220,7 @@ const config$X = {
2218
2220
  tag: ["nature"]
2219
2221
  };
2220
2222
 
2221
- const config$W = {
2223
+ const config$V = {
2222
2224
  viewBox: "0 0 20 18",
2223
2225
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2224
2226
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2231,7 +2233,7 @@ const config$W = {
2231
2233
  })
2232
2234
  };
2233
2235
 
2234
- const config$V = {
2236
+ const config$U = {
2235
2237
  viewBox: "0 0 17 20",
2236
2238
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2237
2239
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2245,7 +2247,7 @@ const config$V = {
2245
2247
  tag: ["file"]
2246
2248
  };
2247
2249
 
2248
- const config$U = {
2250
+ const config$T = {
2249
2251
  viewBox: "0 0 18 18",
2250
2252
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2251
2253
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2259,7 +2261,7 @@ const config$U = {
2259
2261
  tag: ["map"]
2260
2262
  };
2261
2263
 
2262
- const config$T = {
2264
+ const config$S = {
2263
2265
  viewBox: "0 0 18 20",
2264
2266
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2265
2267
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2273,7 +2275,7 @@ const config$T = {
2273
2275
  tag: ["add"]
2274
2276
  };
2275
2277
 
2276
- const config$S = {
2278
+ const config$R = {
2277
2279
  viewBox: "0 0 21 20",
2278
2280
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2279
2281
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2287,7 +2289,7 @@ const config$S = {
2287
2289
  tag: ["circle", "add"]
2288
2290
  };
2289
2291
 
2290
- const config$R = {
2292
+ const config$Q = {
2291
2293
  viewBox: "0 0 21 18",
2292
2294
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2293
2295
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2301,7 +2303,7 @@ const config$R = {
2301
2303
  tag: ["file"]
2302
2304
  };
2303
2305
 
2304
- const config$Q = {
2306
+ const config$P = {
2305
2307
  viewBox: "0 0 20 20",
2306
2308
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2307
2309
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2314,7 +2316,7 @@ const config$Q = {
2314
2316
  })
2315
2317
  };
2316
2318
 
2317
- const config$P = {
2319
+ const config$O = {
2318
2320
  viewBox: "0 0 10 10",
2319
2321
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2320
2322
  d: "M9.5 9.5L7.325 7.325M4.5 2C5.88071 2 7 3.11929 7 4.5M8.5 4.5C8.5 6.70914 6.70914 8.5 4.5 8.5C2.29086 8.5 0.5 6.70914 0.5 4.5C0.5 2.29086 2.29086 0.5 4.5 0.5C6.70914 0.5 8.5 2.29086 8.5 4.5Z",
@@ -2326,7 +2328,7 @@ const config$P = {
2326
2328
  tag: ["action"]
2327
2329
  };
2328
2330
 
2329
- const config$O = {
2331
+ const config$N = {
2330
2332
  viewBox: "0 0 21 18",
2331
2333
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
2332
2334
  children: [/*#__PURE__*/jsxRuntime.jsxs("g", {
@@ -2358,7 +2360,7 @@ const config$O = {
2358
2360
  tag: ["hand"]
2359
2361
  };
2360
2362
 
2361
- const config$N = {
2363
+ const config$M = {
2362
2364
  viewBox: "0 0 18 18",
2363
2365
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2364
2366
  d: "M16.5 11.5V12.5C16.5 13.9001 16.5 14.6002 16.2275 15.135C15.9878 15.6054 15.6054 15.9878 15.135 16.2275C14.6002 16.5 13.9001 16.5 12.5 16.5H5.5C4.09987 16.5 3.3998 16.5 2.86502 16.2275C2.39462 15.9878 2.01217 15.6054 1.77248 15.135C1.5 14.6002 1.5 13.9001 1.5 12.5V11.5M13.1667 5.66667L9 1.5M9 1.5L4.83333 5.66667M9 1.5V11.5",
@@ -2370,7 +2372,7 @@ const config$N = {
2370
2372
  tag: ["arrow", "action"]
2371
2373
  };
2372
2374
 
2373
- const config$M = {
2375
+ const config$L = {
2374
2376
  viewBox: "0 0 20 20",
2375
2377
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2376
2378
  d: "M13.334 3.33317C14.109 3.33317 14.4964 3.33317 14.8144 3.41836C15.6771 3.64952 16.351 4.32339 16.5821 5.18612C16.6673 5.50404 16.6673 5.89153 16.6673 6.6665V14.3332C16.6673 15.7333 16.6673 16.4334 16.3948 16.9681C16.1552 17.4386 15.7727 17.821 15.3023 18.0607C14.7675 18.3332 14.0674 18.3332 12.6673 18.3332H7.33398C5.93385 18.3332 5.23379 18.3332 4.69901 18.0607C4.2286 17.821 3.84615 17.4386 3.60647 16.9681C3.33398 16.4334 3.33398 15.7333 3.33398 14.3332V6.6665C3.33398 5.89153 3.33398 5.50404 3.41917 5.18612C3.65034 4.32339 4.32421 3.64952 5.18694 3.41836C5.50485 3.33317 5.89234 3.33317 6.66732 3.33317M8.00065 4.99984H12.0007C12.4674 4.99984 12.7007 4.99984 12.879 4.90901C13.0358 4.82911 13.1633 4.70163 13.2432 4.54483C13.334 4.36657 13.334 4.13321 13.334 3.6665V2.99984C13.334 2.53313 13.334 2.29977 13.2432 2.12151C13.1633 1.96471 13.0358 1.83723 12.879 1.75733C12.7007 1.6665 12.4674 1.6665 12.0007 1.6665H8.00065C7.53394 1.6665 7.30059 1.6665 7.12233 1.75733C6.96552 1.83723 6.83804 1.96471 6.75815 2.12151C6.66732 2.29977 6.66732 2.53313 6.66732 2.99984V3.6665C6.66732 4.13321 6.66732 4.36657 6.75815 4.54483C6.83804 4.70163 6.96552 4.82911 7.12233 4.90901C7.30059 4.99984 7.53394 4.99984 8.00065 4.99984Z",
@@ -2382,7 +2384,7 @@ const config$M = {
2382
2384
  tag: ["file"]
2383
2385
  };
2384
2386
 
2385
- const config$L = {
2387
+ const config$K = {
2386
2388
  viewBox: "0 0 11 11",
2387
2389
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2388
2390
  d: "M2.85102 8.59598C3.12003 7.9622 3.7481 7.51769 4.48 7.51769H7.13326C7.86516 7.51769 8.49323 7.9622 8.76224 8.59598M7.57548 4.2011C7.57548 5.17801 6.78354 5.96995 5.80663 5.96995C4.82973 5.96995 4.03779 5.17801 4.03779 4.2011C4.03779 3.2242 4.82973 2.43226 5.80663 2.43226C6.78354 2.43226 7.57548 3.2242 7.57548 4.2011ZM10.2287 5.30663C10.2287 7.7489 8.2489 9.72874 5.80663 9.72874C3.36437 9.72874 1.38452 7.7489 1.38452 5.30663C1.38452 2.86437 3.36437 0.884521 5.80663 0.884521C8.2489 0.884521 10.2287 2.86437 10.2287 5.30663Z",
@@ -2394,7 +2396,7 @@ const config$L = {
2394
2396
  tag: ["circle", "user"]
2395
2397
  };
2396
2398
 
2397
- const config$K = {
2399
+ const config$J = {
2398
2400
  viewBox: "0 0 15 14",
2399
2401
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2400
2402
  d: "M8.33691 5.00387C8.0237 5.22716 7.6404 5.35851 7.22643 5.35851C6.16876 5.35851 5.31134 4.50109 5.31134 3.44341C5.31134 2.38574 6.16876 1.52832 7.22643 1.52832C7.91203 1.52832 8.51348 1.88859 8.85181 2.43013M4.217 11.4251H5.64527C5.83149 11.4251 6.01658 11.4472 6.1971 11.4915L7.70624 11.8583C8.0337 11.938 8.37482 11.9458 8.70569 11.8815L10.3743 11.5569C10.8151 11.471 11.2205 11.26 11.5383 10.9509L12.7189 9.80246C13.056 9.47506 13.056 8.9438 12.7189 8.61585C12.4153 8.32058 11.9347 8.28734 11.5913 8.53774L10.2154 9.54154C10.0184 9.68558 9.7786 9.76313 9.53202 9.76313H8.2034L9.04909 9.7631C9.52575 9.7631 9.91186 9.3875 9.91186 8.92382V8.75597C9.91186 8.37095 9.6425 8.03524 9.25866 7.94217L7.9534 7.62474C7.74098 7.57323 7.52344 7.54719 7.30476 7.54719C6.77684 7.54719 5.82124 7.98428 5.82124 7.98428L4.217 8.65514M11.8774 3.99058C11.8774 5.04826 11.02 5.90568 9.96228 5.90568C8.90461 5.90568 8.04719 5.04826 8.04719 3.99058C8.04719 2.93291 8.90461 2.07549 9.96228 2.07549C11.02 2.07549 11.8774 2.93291 11.8774 3.99058ZM2.02832 8.42266L2.02832 11.5962C2.02832 11.9027 2.02832 12.0559 2.08796 12.173C2.14042 12.2759 2.22412 12.3596 2.32708 12.4121C2.44413 12.4717 2.59735 12.4717 2.90379 12.4717H3.34153C3.64797 12.4717 3.80119 12.4717 3.91824 12.4121C4.0212 12.3596 4.1049 12.2759 4.15736 12.173C4.217 12.0559 4.217 11.9027 4.217 11.5962V8.42266C4.217 8.11622 4.217 7.96299 4.15736 7.84595C4.1049 7.74299 4.0212 7.65929 3.91824 7.60683C3.80119 7.54719 3.64797 7.54719 3.34153 7.54719L2.90379 7.54719C2.59735 7.54719 2.44413 7.54719 2.32708 7.60683C2.22412 7.65929 2.14042 7.74299 2.08796 7.84595C2.02832 7.96299 2.02832 8.11622 2.02832 8.42266Z",
@@ -2406,7 +2408,7 @@ const config$K = {
2406
2408
  tag: ["hand"]
2407
2409
  };
2408
2410
 
2409
- const config$J = {
2411
+ const config$I = {
2410
2412
  viewBox: "0 0 15 14",
2411
2413
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2412
2414
  d: "M5.85851 5.35851H5.86398M9.14153 8.64153H9.147M9.6887 4.81134L5.31134 9.1887M6.13209 5.35851C6.13209 5.50961 6.00961 5.63209 5.85851 5.63209C5.70741 5.63209 5.58492 5.50961 5.58492 5.35851C5.58492 5.20741 5.70741 5.08492 5.85851 5.08492C6.00961 5.08492 6.13209 5.20741 6.13209 5.35851ZM9.41511 8.64153C9.41511 8.79262 9.29262 8.91511 9.14153 8.91511C8.99043 8.91511 8.86794 8.79262 8.86794 8.64153C8.86794 8.49043 8.99043 8.36794 9.14153 8.36794C9.29262 8.36794 9.41511 8.49043 9.41511 8.64153ZM12.9717 7.00002C12.9717 10.022 10.522 12.4717 7.50002 12.4717C4.47808 12.4717 2.02832 10.022 2.02832 7.00002C2.02832 3.97808 4.47808 1.52832 7.50002 1.52832C10.522 1.52832 12.9717 3.97808 12.9717 7.00002Z",
@@ -2418,7 +2420,7 @@ const config$J = {
2418
2420
  tag: ["circle"]
2419
2421
  };
2420
2422
 
2421
- const config$I = {
2423
+ const config$H = {
2422
2424
  viewBox: '0 0 20 20',
2423
2425
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
2424
2426
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2437,7 +2439,7 @@ const config$I = {
2437
2439
  })
2438
2440
  };
2439
2441
 
2440
- const config$H = {
2442
+ const config$G = {
2441
2443
  viewBox: "0 0 16 16",
2442
2444
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2443
2445
  d: "M4.66667 7.33333C4.04669 7.33333 3.7367 7.33333 3.48236 7.40148C2.79218 7.58642 2.25308 8.12551 2.06815 8.8157C2 9.07003 2 9.38002 2 10V10.8C2 11.9201 2 12.4802 2.21799 12.908C2.40973 13.2843 2.71569 13.5903 3.09202 13.782C3.51984 14 4.07989 14 5.2 14H10.8C11.9201 14 12.4802 14 12.908 13.782C13.2843 13.5903 13.5903 13.2843 13.782 12.908C14 12.4802 14 11.9201 14 10.8V10C14 9.38002 14 9.07003 13.9319 8.8157C13.7469 8.12551 13.2078 7.58642 12.5176 7.40148C12.2633 7.33333 11.9533 7.33333 11.3333 7.33333M10.6667 4.66667L8 2M8 2L5.33333 4.66667M8 2V10",
@@ -2449,7 +2451,7 @@ const config$H = {
2449
2451
  tag: ["arrow", "action"]
2450
2452
  };
2451
2453
 
2452
- const config$G = {
2454
+ const config$F = {
2453
2455
  viewBox: "0 0 16 16",
2454
2456
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2455
2457
  d: "M4.66667 2V4.26667C4.66667 4.64004 4.66667 4.82672 4.73933 4.96933C4.80324 5.09477 4.90523 5.19676 5.03067 5.26067C5.17328 5.33333 5.35997 5.33333 5.73333 5.33333H10.2667C10.64 5.33333 10.8267 5.33333 10.9693 5.26067C11.0948 5.19676 11.1968 5.09477 11.2607 4.96933C11.3333 4.82672 11.3333 4.64004 11.3333 4.26667V2.66667M11.3333 14V9.73333C11.3333 9.35997 11.3333 9.17328 11.2607 9.03067C11.1968 8.90523 11.0948 8.80324 10.9693 8.73933C10.8267 8.66667 10.64 8.66667 10.2667 8.66667H5.73333C5.35997 8.66667 5.17328 8.66667 5.03067 8.73933C4.90523 8.80324 4.80324 8.90523 4.73933 9.03067C4.66667 9.17328 4.66667 9.35997 4.66667 9.73333V14M14 6.21699V10.8C14 11.9201 14 12.4802 13.782 12.908C13.5903 13.2843 13.2843 13.5903 12.908 13.782C12.4802 14 11.9201 14 10.8 14H5.2C4.0799 14 3.51984 14 3.09202 13.782C2.71569 13.5903 2.40973 13.2843 2.21799 12.908C2 12.4802 2 11.9201 2 10.8V5.2C2 4.0799 2 3.51984 2.21799 3.09202C2.40973 2.71569 2.71569 2.40973 3.09202 2.21799C3.51984 2 4.0799 2 5.2 2H9.78301C10.1091 2 10.2722 2 10.4256 2.03684C10.5617 2.0695 10.6918 2.12337 10.811 2.19648C10.9456 2.27894 11.0609 2.39424 11.2915 2.62484L13.3752 4.7085C13.6058 4.9391 13.7211 5.0544 13.8035 5.18895C13.8766 5.30825 13.9305 5.43831 13.9632 5.57436C14 5.72781 14 5.89087 14 6.21699Z",
@@ -2461,7 +2463,7 @@ const config$G = {
2461
2463
  tag: ["action"]
2462
2464
  };
2463
2465
 
2464
- const config$F = {
2466
+ const config$E = {
2465
2467
  viewBox: "0 0 74 66",
2466
2468
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2467
2469
  d: "M36.9998 46.3333V63M36.9998 46.3333L56.9998 63M36.9998 46.3333L16.9998 63M23.6665 16.3333V33M36.9998 23V33M50.3332 29.6667V33M70.3332 3H3.6665M6.99984 3H66.9998V30.3333C66.9998 35.9339 66.9998 38.7341 65.9099 40.8732C64.9512 42.7549 63.4214 44.2847 61.5397 45.2434C59.4006 46.3333 56.6004 46.3333 50.9998 46.3333H22.9998C17.3993 46.3333 14.599 46.3333 12.4599 45.2434C10.5783 44.2847 9.04851 42.7549 8.08977 40.8732C6.99984 38.7341 6.99984 35.9339 6.99984 30.3333V3Z",
@@ -2473,7 +2475,7 @@ const config$F = {
2473
2475
  tag: ["chart"]
2474
2476
  };
2475
2477
 
2476
- const config$E = {
2478
+ const config$D = {
2477
2479
  viewBox: "0 0 74 74",
2478
2480
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2479
2481
  d: "M13.6665 44.621C7.4953 47.3434 3.6665 51.1371 3.6665 55.3332C3.6665 63.6174 18.5903 70.3332 36.9998 70.3332C55.4093 70.3332 70.3332 63.6174 70.3332 55.3332C70.3332 51.1371 66.5044 47.3434 60.3332 44.621M56.9998 23.6665C56.9998 37.2122 41.9998 43.6665 36.9998 53.6665C31.9998 43.6665 16.9998 37.2122 16.9998 23.6665C16.9998 12.6208 25.9541 3.6665 36.9998 3.6665C48.0455 3.6665 56.9998 12.6208 56.9998 23.6665ZM40.3332 23.6665C40.3332 25.5075 38.8408 26.9998 36.9998 26.9998C35.1589 26.9998 33.6665 25.5075 33.6665 23.6665C33.6665 21.8256 35.1589 20.3332 36.9998 20.3332C38.8408 20.3332 40.3332 21.8256 40.3332 23.6665Z",
@@ -2485,7 +2487,7 @@ const config$E = {
2485
2487
  tag: ["map"]
2486
2488
  };
2487
2489
 
2488
- const config$D = {
2490
+ const config$C = {
2489
2491
  viewBox: "0 0 72 73",
2490
2492
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2491
2493
  d: "M57.1057 3.89404C72.0758 18.8641 72.0758 43.1355 57.1057 58.1056C42.7695 72.4417 19.9033 73.0488 4.84467 59.9269C4.18795 59.3547 3.85959 59.0685 3.71137 58.6774C3.58666 58.3482 3.5727 57.9414 3.67455 57.6045C3.7956 57.2041 4.12365 56.876 4.77975 56.2199L12.1639 48.8358M54.9999 30.9998C54.9999 44.8069 43.807 55.9998 29.9999 55.9998C16.1928 55.9998 4.9999 44.8069 4.9999 30.9998C4.9999 17.1927 16.1928 5.9998 29.9999 5.9998C43.807 5.9998 54.9999 17.1927 54.9999 30.9998Z",
@@ -2497,7 +2499,7 @@ const config$D = {
2497
2499
  tag: ["chart"]
2498
2500
  };
2499
2501
 
2500
- const config$C = {
2502
+ const config$B = {
2501
2503
  viewBox: "0 0 74 66",
2502
2504
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2503
2505
  d: "M3.6665 49.6667V49.166C3.6665 48.111 3.6665 47.5836 3.74719 47.0697C3.81884 46.6134 3.93771 46.1658 4.10188 45.7341C4.28679 45.2478 4.5485 44.7898 5.07191 43.8739L16.9998 23M3.6665 49.6667C3.6665 57.0305 9.63604 63 16.9998 63C24.3636 63 30.3332 57.0305 30.3332 49.6667M3.6665 49.6667V49C3.6665 48.0666 3.6665 47.5999 3.84816 47.2433C4.00795 46.9297 4.26292 46.6748 4.57652 46.515C4.93304 46.3333 5.39975 46.3333 6.33317 46.3333H27.6665C28.5999 46.3333 29.0666 46.3333 29.4232 46.515C29.7368 46.6748 29.9917 46.9297 30.1515 47.2433C30.3332 47.5999 30.3332 48.0666 30.3332 49V49.6667M16.9998 23L28.9278 43.8739C29.4512 44.7898 29.7129 45.2478 29.8978 45.7341C30.062 46.1658 30.1808 46.6134 30.2525 47.0697C30.3332 47.5836 30.3332 48.111 30.3332 49.166V49.6667M16.9998 23L56.9998 16.3333M43.6665 43V42.4994C43.6665 41.4444 43.6665 40.9169 43.7472 40.403C43.8188 39.9467 43.9377 39.4991 44.1019 39.0674C44.2868 38.5812 44.5485 38.1232 45.0719 37.2072L56.9998 16.3333M43.6665 43C43.6665 50.3638 49.636 56.3333 56.9998 56.3333C64.3636 56.3333 70.3332 50.3638 70.3332 43M43.6665 43V42.3333C43.6665 41.3999 43.6665 40.9332 43.8482 40.5767C44.0079 40.2631 44.2629 40.0081 44.5765 39.8483C44.933 39.6667 45.3997 39.6667 46.3332 39.6667H67.6665C68.5999 39.6667 69.0666 39.6667 69.4232 39.8483C69.7368 40.0081 69.9917 40.2631 70.1515 40.5767C70.3332 40.9332 70.3332 41.3999 70.3332 42.3333V43M56.9998 16.3333L68.9278 37.2072C69.4512 38.1232 69.7129 38.5812 69.8978 39.0674C70.062 39.4991 70.1808 39.9467 70.2525 40.403C70.3332 40.9169 70.3332 41.4444 70.3332 42.4994V43M36.9998 3V19.6667",
@@ -2508,7 +2510,7 @@ const config$C = {
2508
2510
  })
2509
2511
  };
2510
2512
 
2511
- const config$B = {
2513
+ const config$A = {
2512
2514
  viewBox: "0 0 74 74",
2513
2515
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2514
2516
  d: "M70.3332 36.9998H56.9998M16.9998 36.9998H3.6665M36.9998 16.9998V3.6665M36.9998 70.3332V56.9998M63.6665 36.9998C63.6665 51.7274 51.7274 63.6665 36.9998 63.6665C22.2722 63.6665 10.3332 51.7274 10.3332 36.9998C10.3332 22.2722 22.2722 10.3332 36.9998 10.3332C51.7274 10.3332 63.6665 22.2722 63.6665 36.9998ZM46.9998 36.9998C46.9998 42.5227 42.5227 46.9998 36.9998 46.9998C31.477 46.9998 26.9998 42.5227 26.9998 36.9998C26.9998 31.477 31.477 26.9998 36.9998 26.9998C42.5227 26.9998 46.9998 31.477 46.9998 36.9998Z",
@@ -2519,7 +2521,7 @@ const config$B = {
2519
2521
  })
2520
2522
  };
2521
2523
 
2522
- const config$A = {
2524
+ const config$z = {
2523
2525
  viewBox: "0 0 74 74",
2524
2526
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2525
2527
  d: "M51.3333 14.6667L14.6667 51.3333M21.3333 28V14.6667M14.6667 21.3333H28M38 44.6667H51.3333M19 63H47C52.6005 63 55.4008 63 57.5399 61.9101C59.4215 60.9513 60.9513 59.4215 61.9101 57.5399C63 55.4008 63 52.6005 63 47V19C63 13.3995 63 10.5992 61.9101 8.46009C60.9513 6.57847 59.4215 5.04867 57.5399 4.08993C55.4008 3 52.6005 3 47 3H19C13.3995 3 10.5992 3 8.46009 4.08993C6.57847 5.04867 5.04867 6.57847 4.08993 8.46009C3 10.5992 3 13.3995 3 19V47C3 52.6005 3 55.4008 4.08993 57.5399C5.04867 59.4215 6.57847 60.9513 8.46009 61.9101C10.5992 63 13.3995 63 19 63Z",
@@ -2531,7 +2533,7 @@ const config$A = {
2531
2533
  tag: ["square"]
2532
2534
  };
2533
2535
 
2534
- const config$z = {
2536
+ const config$y = {
2535
2537
  viewBox: "0 0 74 74",
2536
2538
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2537
2539
  d: "M23.6665 43.6665C23.6665 43.6665 28.6665 50.3332 36.9998 50.3332C45.3332 50.3332 50.3332 43.6665 50.3332 43.6665M46.9998 26.9998H47.0332M26.9998 26.9998H27.0332M70.3332 36.9998C70.3332 55.4093 55.4093 70.3332 36.9998 70.3332C18.5903 70.3332 3.6665 55.4093 3.6665 36.9998C3.6665 18.5903 18.5903 3.6665 36.9998 3.6665C55.4093 3.6665 70.3332 18.5903 70.3332 36.9998ZM48.6665 26.9998C48.6665 27.9203 47.9203 28.6665 46.9998 28.6665C46.0794 28.6665 45.3332 27.9203 45.3332 26.9998C45.3332 26.0794 46.0794 25.3332 46.9998 25.3332C47.9203 25.3332 48.6665 26.0794 48.6665 26.9998ZM28.6665 26.9998C28.6665 27.9203 27.9203 28.6665 26.9998 28.6665C26.0794 28.6665 25.3332 27.9203 25.3332 26.9998C25.3332 26.0794 26.0794 25.3332 26.9998 25.3332C27.9203 25.3332 28.6665 26.0794 28.6665 26.9998Z",
@@ -2542,7 +2544,7 @@ const config$z = {
2542
2544
  })
2543
2545
  };
2544
2546
 
2545
- const config$y = {
2547
+ const config$x = {
2546
2548
  viewBox: '0 0 74 40',
2547
2549
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2548
2550
  d: "M21.9998 3.3335H20.3332C11.1284 3.3335 3.6665 10.7954 3.6665 20.0002C3.6665 29.2049 11.1284 36.6668 20.3332 36.6668H26.9998C36.2046 36.6668 43.6665 29.2049 43.6665 20.0002M51.9998 36.6668H53.6665C62.8712 36.6668 70.3332 29.2049 70.3332 20.0002C70.3332 10.7954 62.8712 3.3335 53.6665 3.3335H46.9998C37.7951 3.3335 30.3332 10.7954 30.3332 20.0002",
@@ -2553,7 +2555,7 @@ const config$y = {
2553
2555
  })
2554
2556
  };
2555
2557
 
2556
- const config$x = {
2558
+ const config$w = {
2557
2559
  viewBox: "0 0 16 15",
2558
2560
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2559
2561
  d: "M11.15 14.25H4.19853C3.74417 14.25 3.51699 14.25 3.41179 14.1602C3.32051 14.0822 3.27207 13.9652 3.28149 13.8456C3.29234 13.7077 3.45298 13.547 3.77426 13.2257L10.1515 6.84853C10.4485 6.55152 10.597 6.40301 10.7682 6.34737C10.9189 6.29842 11.0811 6.29842 11.2318 6.34737C11.403 6.40301 11.5515 6.55152 11.8485 6.84853L14.75 9.75V10.65M11.15 14.25C12.4101 14.25 13.0402 14.25 13.5215 14.0048C13.9448 13.789 14.289 13.4448 14.5048 13.0215C14.75 12.5402 14.75 11.9101 14.75 10.65M11.15 14.25H4.85C3.58988 14.25 2.95982 14.25 2.47852 14.0048C2.05516 13.789 1.71095 13.4448 1.49524 13.0215C1.25 12.5402 1.25 11.9101 1.25 10.65V4.35C1.25 3.08988 1.25 2.45982 1.49524 1.97852C1.71095 1.55516 2.05516 1.21095 2.47852 0.995235C2.95982 0.75 3.58988 0.75 4.85 0.75H11.15C12.4101 0.75 13.0402 0.75 13.5215 0.995235C13.9448 1.21095 14.289 1.55516 14.5048 1.97852C14.75 2.45982 14.75 3.08988 14.75 4.35V10.65M6.875 4.875C6.875 5.70343 6.20343 6.375 5.375 6.375C4.54657 6.375 3.875 5.70343 3.875 4.875C3.875 4.04657 4.54657 3.375 5.375 3.375C6.20343 3.375 6.875 4.04657 6.875 4.875Z",
@@ -2565,7 +2567,7 @@ const config$x = {
2565
2567
  tag: ["square"]
2566
2568
  };
2567
2569
 
2568
- const config$w = {
2570
+ const config$v = {
2569
2571
  viewBox: "0 0 74 74",
2570
2572
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2571
2573
  d: "M50.333 23.6665V13.6665L60.333 3.6665L63.6664 10.3332L70.333 13.6665L60.333 23.6665H50.333ZM50.333 23.6665L36.9997 36.9997M70.3332 36.9998C70.3332 55.4093 55.4093 70.3332 36.9998 70.3332C18.5903 70.3332 3.6665 55.4093 3.6665 36.9998C3.6665 18.5903 18.5903 3.6665 36.9998 3.6665M53.6665 36.9998C53.6665 46.2046 46.2046 53.6665 36.9998 53.6665C27.7951 53.6665 20.3332 46.2046 20.3332 36.9998C20.3332 27.7951 27.7951 20.3332 36.9998 20.3332",
@@ -2576,7 +2578,7 @@ const config$w = {
2576
2578
  })
2577
2579
  };
2578
2580
 
2579
- const config$v = {
2581
+ const config$u = {
2580
2582
  viewBox: '0 0 6 6',
2581
2583
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2582
2584
  d: "M4.25 2.5V2C4.25 1.30964 3.69036 0.75 3 0.75C2.30964 0.75 1.75 1.30964 1.75 2V2.5M3 3.625V4.125M2.2 5.25H3.8C4.22004 5.25 4.43006 5.25 4.59049 5.16825C4.73161 5.09635 4.84635 4.98161 4.91825 4.84049C5 4.68006 5 4.47004 5 4.05V3.7C5 3.27996 5 3.06994 4.91825 2.90951C4.84635 2.76839 4.73161 2.65365 4.59049 2.58175C4.43006 2.5 4.22004 2.5 3.8 2.5H2.2C1.77996 2.5 1.56994 2.5 1.40951 2.58175C1.26839 2.65365 1.15365 2.76839 1.08175 2.90951C1 3.06994 1 3.27996 1 3.7V4.05C1 4.47004 1 4.68006 1.08175 4.84049C1.15365 4.98161 1.26839 5.09635 1.40951 5.16825C1.56994 5.25 1.77996 5.25 2.2 5.25Z",
@@ -2587,7 +2589,7 @@ const config$v = {
2587
2589
  })
2588
2590
  };
2589
2591
 
2590
- const config$u = {
2592
+ const config$t = {
2591
2593
  viewBox: "0 0 20 16",
2592
2594
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2593
2595
  d: "M18.312 7.82324L11.0624 7.82323M11.0624 7.82323L14.598 11.3588M11.0624 7.82323L14.598 4.2877M1.68796 8.17678L8.93754 8.17678M8.93754 8.17678L5.40201 4.64125M8.93754 8.17678L5.40201 11.7123",
@@ -2599,7 +2601,7 @@ const config$u = {
2599
2601
  tag: ["arrow"]
2600
2602
  };
2601
2603
 
2602
- const config$t = {
2604
+ const config$s = {
2603
2605
  viewBox: "0 0 10 10",
2604
2606
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2605
2607
  d: "M3.45817 4.58333H2.24984C2.01648 4.58333 1.8998 4.58333 1.81067 4.62875C1.73227 4.66869 1.66853 4.73244 1.62858 4.81084C1.58317 4.89997 1.58317 5.01664 1.58317 5.25V8.75M7.20817 4.58333H8.4165C8.64986 4.58333 8.76654 4.58333 8.85567 4.62875C8.93407 4.66869 8.99781 4.73244 9.03776 4.81084C9.08317 4.89997 9.08317 5.01664 9.08317 5.25V8.75M7.20817 8.75V2.58333C7.20817 2.11662 7.20817 1.88327 7.11734 1.70501C7.03745 1.54821 6.90996 1.42072 6.75316 1.34083C6.5749 1.25 6.34155 1.25 5.87484 1.25H4.7915C4.32479 1.25 4.09144 1.25 3.91318 1.34083C3.75638 1.42072 3.62889 1.54821 3.549 1.70501C3.45817 1.88327 3.45817 2.11662 3.45817 2.58333V8.75M9.49984 8.75H1.1665M4.9165 2.91667H5.74984M4.9165 4.58333H5.74984M4.9165 6.25H5.74984",
@@ -2610,7 +2612,7 @@ const config$t = {
2610
2612
  })
2611
2613
  };
2612
2614
 
2613
- const config$s = {
2615
+ const config$r = {
2614
2616
  viewBox: "0 0 12 13",
2615
2617
  children: /*#__PURE__*/jsxRuntime.jsxs("g", {
2616
2618
  clipPath: "url(#clip0_4306_121711)",
@@ -2630,7 +2632,7 @@ const config$s = {
2630
2632
  })
2631
2633
  };
2632
2634
 
2633
- const config$r = {
2635
+ const config$q = {
2634
2636
  viewBox: '0 0 8 12',
2635
2637
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2636
2638
  d: "M0.666626 7.99984L3.99996 11.3332L7.33329 7.99984M0.666626 3.99984L3.99996 0.666504L7.33329 3.99984",
@@ -2641,7 +2643,7 @@ const config$r = {
2641
2643
  tag: ['arrow']
2642
2644
  };
2643
2645
 
2644
- const config$q = {
2646
+ const config$p = {
2645
2647
  viewBox: "0 0 16 16",
2646
2648
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2647
2649
  d: "M11.9995 8.66669L7.33287 4.00002M13.9995 14H5.33287M7.29104 13.3752L13.0701 7.5961C13.8622 6.80406 14.2582 6.40805 14.4066 5.95139C14.5371 5.5497 14.5371 5.11701 14.4066 4.71532C14.2582 4.25867 13.8622 3.86265 13.0701 3.07062L12.9289 2.92943C12.1369 2.1374 11.7409 1.74138 11.2842 1.593C10.8825 1.46249 10.4499 1.46249 10.0482 1.593C9.59151 1.74138 9.19549 2.1374 8.40346 2.92943L2.92894 8.40395C2.13691 9.19598 1.74089 9.592 1.59252 10.0487C1.462 10.4503 1.462 10.883 1.59252 11.2847C1.74089 11.7414 2.13691 12.1374 2.92894 12.9294L3.3747 13.3752C3.6053 13.6058 3.7206 13.7211 3.85516 13.8035C3.97445 13.8766 4.10451 13.9305 4.24056 13.9632C4.39401 14 4.55707 14 4.88319 14H5.78255C6.10867 14 6.27173 14 6.42518 13.9632C6.56123 13.9305 6.69129 13.8766 6.81058 13.8035C6.94514 13.7211 7.06044 13.6058 7.29104 13.3752Z",
@@ -2653,7 +2655,7 @@ const config$q = {
2653
2655
  tag: ["action"]
2654
2656
  };
2655
2657
 
2656
- const config$p = {
2658
+ const config$o = {
2657
2659
  viewBox: "0 0 23 22",
2658
2660
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2659
2661
  d: "M1.5 15.6667C3.44649 13.6021 6.08918 12.3333 9 12.3333C11.9108 12.3333 14.5535 13.6021 16.5 15.6667M12.75 5.25C12.75 7.32107 11.0711 9 9 9C6.92893 9 5.25 7.32107 5.25 5.25C5.25 3.17893 6.92893 1.5 9 1.5C11.0711 1.5 12.75 3.17893 12.75 5.25Z",
@@ -2665,7 +2667,7 @@ const config$p = {
2665
2667
  tag: ["user"]
2666
2668
  };
2667
2669
 
2668
- const config$o = {
2670
+ const config$n = {
2669
2671
  viewBox: "0 0 20 10",
2670
2672
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2671
2673
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2678,7 +2680,7 @@ const config$o = {
2678
2680
  })
2679
2681
  };
2680
2682
 
2681
- const config$n = {
2683
+ const config$m = {
2682
2684
  viewBox: "0 0 16 17",
2683
2685
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2684
2686
  d: "M10.2485 8.14595C10.2485 6.75528 9.30639 5.62792 8.14422 5.62792M10.2485 8.14595H13.7215L15.1998 10.0345M10.2485 8.14595C10.2485 9.13029 9.7765 9.98271 9.08855 10.3968M8.14422 10.664C8.48378 10.664 8.80456 10.5677 9.08855 10.3968M8.14422 10.664C7.80571 10.664 7.48588 10.5683 7.20256 10.3984M8.14422 10.664C6.98204 10.664 6.03992 11.7913 6.03992 13.182C6.03992 14.5727 6.98204 15.7 8.14422 15.7C9.30639 15.7 10.2485 14.5727 10.2485 13.182C10.2485 11.7913 9.30639 10.664 8.14422 10.664ZM6.03992 8.14595H2.36439L0.799805 10.0345M6.03992 8.14595C6.03992 7.67625 6.14739 7.23659 6.33451 6.86026M6.03992 8.14595C6.03992 9.13156 6.51315 9.98492 7.20256 10.3984M8.14422 5.62792C7.37457 5.62792 6.70142 6.12235 6.33451 6.86026M8.14422 5.62792C9.39754 5.62792 10.4136 4.65909 10.4136 3.46398C10.4136 2.26888 9.39754 1.30005 8.14422 1.30005C6.89089 1.30005 5.87487 2.26888 5.87487 3.46398C5.87487 4.65909 6.89089 5.62792 8.14422 5.62792ZM9.97173 6.89677L12.4278 6.36201L14.366 4.59513M6.33451 6.86026L3.87987 6.36201L1.89507 4.65415M9.08855 10.3968L11.6942 11.2001L13.7144 13.664M7.20256 10.3984L4.59422 11.2001L2.57402 13.664M6.54536 1.92956L5.91614 1.32956M9.73276 1.92956L10.362 1.32956",
@@ -2689,7 +2691,7 @@ const config$n = {
2689
2691
  tag: ["nature"]
2690
2692
  };
2691
2693
 
2692
- const config$m = {
2694
+ const config$l = {
2693
2695
  viewBox: "0 0 18 14",
2694
2696
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2695
2697
  d: "M5.36528 11.3267C7.95724 11.3267 10.0584 9.22646 10.0584 6.63571V3.38419C10.0584 2.74417 10.3079 2.1624 10.7148 1.7308M10.7148 1.7308L1.37599 11.1688C1.31806 11.2273 1.35953 11.3267 1.4419 11.3267H10.2902C12.8248 11.3267 14.8796 9.27196 14.8796 6.73734V4.23407M10.7148 1.7308C11.1544 1.26462 11.7777 0.973633 12.469 0.973633C13.3676 0.973633 14.1514 1.46533 14.5659 2.19436M7.24613 11.2649L9.00769 13.0264M14.5659 2.19436C14.7656 2.54541 14.8796 2.95149 14.8796 3.38419V4.23407M14.5659 2.19436L16.6038 2.89122C16.6763 2.91599 16.6892 3.01296 16.6257 3.0558L14.8796 4.23407M7.75605 13.0264H10.2593M12.869 3.35153C12.869 3.57244 12.6899 3.75153 12.469 3.75153C12.2481 3.75153 12.069 3.57244 12.069 3.35153C12.069 3.13061 12.2481 2.95153 12.469 2.95153C12.6899 2.95153 12.869 3.13061 12.869 3.35153Z",
@@ -2700,7 +2702,7 @@ const config$m = {
2700
2702
  tag: ["nature"]
2701
2703
  };
2702
2704
 
2703
- const config$l = {
2705
+ const config$k = {
2704
2706
  viewBox: "0 0 16 12",
2705
2707
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2706
2708
  d: "M3.56741 5.93035C4.57902 8.09831 6.58683 9.30582 8.87149 9.53885C11.4621 9.8031 13.8036 8.23893 15.1884 5.83299C15.2204 5.7773 15.2206 5.70857 15.1888 5.65277C14.0851 3.71962 12.2542 2.3725 10.0741 2.15012M3.56741 5.93035C5.0274 3.62225 7.47102 1.8846 10.0741 2.15012M3.56741 5.93035L1.64477 3.21433C1.5292 3.05108 1.2536 3.16468 1.2761 3.36342C1.36164 4.11879 1.36819 4.90109 1.28693 5.69774C1.20567 6.49439 1.04131 7.25926 0.805023 7.9818C0.742855 8.17191 0.98985 8.33882 1.13599 8.20226L3.56741 5.93035ZM10.0741 2.15012L7.75293 1.07025C7.2145 0.814429 6.59489 1.21061 6.48594 1.88036L6.31462 3.12355M6.41096 8.71041L6.36522 9.79811C6.33699 10.4693 6.85307 10.9789 7.42519 10.8514C7.43668 10.8488 7.44794 10.8449 7.45864 10.84L10.4089 9.4846M12.3922 5.16548C12.3896 5.36342 12.2481 5.52606 12.0763 5.52875C11.9044 5.53144 11.7673 5.37316 11.77 5.17523C11.7727 4.97729 11.9142 4.81465 12.086 4.81196C12.2578 4.80927 12.3949 4.96754 12.3922 5.16548Z",
@@ -2710,7 +2712,7 @@ const config$l = {
2710
2712
  tag: ["nature"]
2711
2713
  };
2712
2714
 
2713
- const config$k = {
2715
+ const config$j = {
2714
2716
  viewBox: "0 0 13 16",
2715
2717
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2716
2718
  d: "M11.5 9.33325C11.5 12.2788 9.26142 14.6666 6.5 14.6666C3.73858 14.6666 1.5 12.2788 1.5 9.33325C1.5 8.62598 1.62907 7.95087 1.86345 7.33325C2.60518 5.3787 6.5 1.33325 6.5 1.33325C6.5 1.33325 10.3948 5.3787 11.1366 7.33325C11.3709 7.95087 11.5 8.62598 11.5 9.33325Z",
@@ -2722,7 +2724,7 @@ const config$k = {
2722
2724
  tag: ["nature"]
2723
2725
  };
2724
2726
 
2725
- const config$j = {
2727
+ const config$i = {
2726
2728
  viewBox: "0 0 16 16",
2727
2729
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2728
2730
  d: "M3.33301 6.66667V10.6741C3.33301 10.9134 3.33301 11.0331 3.36944 11.1387C3.40167 11.2321 3.45425 11.3172 3.5234 11.3878C3.60158 11.4676 3.70861 11.5211 3.92265 11.6282L7.52265 13.4282C7.69755 13.5156 7.78501 13.5593 7.87674 13.5765C7.95799 13.5918 8.04136 13.5918 8.12261 13.5765C8.21434 13.5593 8.3018 13.5156 8.4767 13.4282L12.0767 11.6282C12.2907 11.5211 12.3978 11.4676 12.476 11.3878C12.5451 11.3172 12.5977 11.2321 12.6299 11.1387C12.6663 11.0331 12.6663 10.9134 12.6663 10.6741V6.66667M1.33301 5.66667L7.76116 2.45259C7.84861 2.40887 7.89234 2.387 7.93821 2.3784C7.97883 2.37078 8.02052 2.37078 8.06114 2.3784C8.10701 2.387 8.15073 2.40887 8.23819 2.45259L14.6663 5.66667L8.23819 8.88075C8.15073 8.92447 8.10701 8.94634 8.06114 8.95494C8.02052 8.96256 7.97883 8.96256 7.93821 8.95494C7.89234 8.94634 7.84861 8.92447 7.76116 8.88075L1.33301 5.66667Z",
@@ -2733,7 +2735,7 @@ const config$j = {
2733
2735
  })
2734
2736
  };
2735
2737
 
2736
- const config$i = {
2738
+ const config$h = {
2737
2739
  viewBox: "0 0 16 16",
2738
2740
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2739
2741
  d: "M10.6663 4.66667C10.6663 4.04669 10.6663 3.7367 10.5982 3.48236C10.4133 2.79218 9.87416 2.25308 9.18398 2.06815C8.92965 2 8.61966 2 7.99967 2C7.37969 2 7.0697 2 6.81537 2.06815C6.12519 2.25308 5.58609 2.79218 5.40116 3.48236C5.33301 3.7367 5.33301 4.04669 5.33301 4.66667M3.46634 14H12.533C13.2797 14 13.6531 14 13.9383 13.8547C14.1892 13.7268 14.3932 13.5229 14.521 13.272C14.6663 12.9868 14.6663 12.6134 14.6663 11.8667V6.8C14.6663 6.05326 14.6663 5.6799 14.521 5.39468C14.3932 5.1438 14.1892 4.93982 13.9383 4.81199C13.6531 4.66667 13.2797 4.66667 12.533 4.66667H3.46634C2.7196 4.66667 2.34624 4.66667 2.06102 4.81199C1.81014 4.93982 1.60616 5.1438 1.47833 5.39468C1.33301 5.6799 1.33301 6.05326 1.33301 6.8V11.8667C1.33301 12.6134 1.33301 12.9868 1.47833 13.272C1.60616 13.5229 1.81014 13.7268 2.06102 13.8547C2.34624 14 2.7196 14 3.46634 14Z",
@@ -2744,7 +2746,7 @@ const config$i = {
2744
2746
  })
2745
2747
  };
2746
2748
 
2747
- const config$h = {
2749
+ const config$g = {
2748
2750
  viewBox: "0 0 17 16",
2749
2751
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2750
2752
  d: "M4.83333 13.3334H3.83333C3.09695 13.3334 2.5 12.7364 2.5 12V2.66671C2.5 1.93033 3.09695 1.33337 3.83333 1.33337H13.1667C13.903 1.33337 14.5 1.93033 14.5 2.66671V12C14.5 12.7364 13.903 13.3334 13.1667 13.3334H12.1667M8.5 12.6667C9.60457 12.6667 10.5 11.7713 10.5 10.6667C10.5 9.56214 9.60457 8.66671 8.5 8.66671C7.39543 8.66671 6.5 9.56214 6.5 10.6667C6.5 11.7713 7.39543 12.6667 8.5 12.6667ZM8.5 12.6667L8.51429 12.6666L6.38578 14.7951L4.50016 12.9095L6.5131 10.8965M8.5 12.6667L10.6285 14.7951L12.5142 12.9095L10.5012 10.8965M6.5 4.00004H10.5M5.16667 6.33337H11.8333",
@@ -2756,7 +2758,7 @@ const config$h = {
2756
2758
  tag: ['file']
2757
2759
  };
2758
2760
 
2759
- const config$g = {
2761
+ const config$f = {
2760
2762
  viewBox: '0 0 16 17',
2761
2763
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2762
2764
  d: "M8.47171 12.8984L7.5289 13.8412C6.22716 15.1429 4.11661 15.1429 2.81486 13.8412C1.51311 12.5394 1.51311 10.4289 2.81486 9.12712L3.75767 8.18431M12.2429 9.12712L13.1858 8.18431C14.4875 6.88257 14.4875 4.77202 13.1858 3.47027C11.884 2.16852 9.77346 2.16852 8.47171 3.47027L7.5289 4.41308M5.66697 10.989L10.3336 6.32237",
@@ -2767,7 +2769,7 @@ const config$g = {
2767
2769
  })
2768
2770
  };
2769
2771
 
2770
- const config$f = {
2772
+ const config$e = {
2771
2773
  viewBox: '0 0 20 20',
2772
2774
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2773
2775
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2778,7 +2780,7 @@ const config$f = {
2778
2780
  })
2779
2781
  };
2780
2782
 
2781
- const config$e = {
2783
+ const config$d = {
2782
2784
  viewBox: "0 0 33 33",
2783
2785
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2784
2786
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2791,7 +2793,7 @@ const config$e = {
2791
2793
  tag: ["circle"]
2792
2794
  };
2793
2795
 
2794
- const config$d = {
2796
+ const config$c = {
2795
2797
  viewBox: "0 0 13 13",
2796
2798
  children: /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2797
2799
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2803,7 +2805,7 @@ const config$d = {
2803
2805
  })
2804
2806
  };
2805
2807
 
2806
- const config$c = {
2808
+ const config$b = {
2807
2809
  viewBox: "0 0 16 16",
2808
2810
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2809
2811
  d: "M9.49968 1.33331H5.66264C5.54298 1.33331 5.48316 1.33331 5.43034 1.35153C5.38363 1.36764 5.34109 1.39393 5.30579 1.42851C5.26587 1.4676 5.23912 1.52111 5.18561 1.62813L2.38561 7.22813C2.25782 7.4837 2.19393 7.61149 2.20927 7.71537C2.22268 7.80607 2.27285 7.88725 2.34798 7.9398C2.43403 7.99998 2.5769 7.99998 2.86264 7.99998H6.99968L4.99968 14.6666L13.1284 6.23685C13.4027 5.95245 13.5398 5.81025 13.5478 5.68857C13.5548 5.58295 13.5112 5.4803 13.4303 5.412C13.3371 5.33331 13.1396 5.33331 12.7445 5.33331H7.99968L9.49968 1.33331Z",
@@ -2814,7 +2816,7 @@ const config$c = {
2814
2816
  })
2815
2817
  };
2816
2818
 
2817
- const config$b = {
2819
+ const config$a = {
2818
2820
  viewBox: "0 0 15 15",
2819
2821
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
2820
2822
  d: "M7.66657 9.33337L5.66657 7.33337M9.0068 2.33337V1.33337M11.633 3.37381L12.3401 2.66671M11.633 8.66671L12.3401 9.37381M6.34013 3.37381L5.63303 2.66671M12.6735 6.00004H13.6735M3.08748 13.9125L9.24565 7.75429C9.50966 7.49028 9.64167 7.35827 9.69113 7.20605C9.73463 7.07216 9.73463 6.92792 9.69113 6.79403C9.64167 6.64181 9.50966 6.5098 9.24565 6.24579L8.75415 5.75429C8.49013 5.49028 8.35813 5.35827 8.20591 5.30881C8.07201 5.26531 7.92778 5.26531 7.79389 5.30881C7.64167 5.35827 7.50966 5.49028 7.24565 5.75429L1.08748 11.9125C0.823469 12.1765 0.691463 12.3085 0.642004 12.4607C0.598499 12.5946 0.598499 12.7388 0.642004 12.8727C0.691463 13.0249 0.823469 13.1569 1.08748 13.421L1.57899 13.9125C1.843 14.1765 1.975 14.3085 2.12722 14.3579C2.26112 14.4014 2.40535 14.4014 2.53924 14.3579C2.69146 14.3085 2.82347 14.1765 3.08748 13.9125Z",
@@ -2824,7 +2826,7 @@ const config$b = {
2824
2826
  })
2825
2827
  };
2826
2828
 
2827
- const config$a = {
2829
+ const config$9 = {
2828
2830
  viewBox: "0 0 11 10",
2829
2831
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
2830
2832
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -2850,7 +2852,7 @@ const config$a = {
2850
2852
  tag: ["logo"]
2851
2853
  };
2852
2854
 
2853
- const config$9 = {
2855
+ const config$8 = {
2854
2856
  viewBox: "0 0 352 352",
2855
2857
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
2856
2858
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -4082,7 +4084,7 @@ const config$9 = {
4082
4084
  tag: ["logo"]
4083
4085
  };
4084
4086
 
4085
- const config$8 = {
4087
+ const config$7 = {
4086
4088
  viewBox: "0 0 14 14",
4087
4089
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
4088
4090
  d: "M9.03367 5H2.66667C1.74619 5 1 4.25381 1 3.33333C1 2.41286 1.74619 1.66667 2.66667 1.66667H9.03367M4.96633 12.3333H11.3333C12.2538 12.3333 13 11.5871 13 10.6667C13 9.74619 12.2538 9 11.3333 9H4.96633M1 10.6667C1 11.9553 2.04467 13 3.33333 13C4.622 13 5.66667 11.9553 5.66667 10.6667C5.66667 9.378 4.622 8.33333 3.33333 8.33333C2.04467 8.33333 1 9.378 1 10.6667ZM13 3.33333C13 4.622 11.9553 5.66667 10.6667 5.66667C9.378 5.66667 8.33333 4.622 8.33333 3.33333C8.33333 2.04467 9.378 1 10.6667 1C11.9553 1 13 2.04467 13 3.33333Z",
@@ -4094,7 +4096,7 @@ const config$8 = {
4094
4096
  tag: ['logo']
4095
4097
  };
4096
4098
 
4097
- const config$7 = {
4099
+ const config$6 = {
4098
4100
  viewBox: '0 0 19 19',
4099
4101
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
4100
4102
  children: [/*#__PURE__*/jsxRuntime.jsx("path", {
@@ -4113,7 +4115,7 @@ const config$7 = {
4113
4115
  })
4114
4116
  };
4115
4117
 
4116
- const config$6 = ({
4118
+ const config$5 = ({
4117
4119
  color = "black",
4118
4120
  currentColor
4119
4121
  } = {}) => {
@@ -4181,7 +4183,7 @@ const config$6 = ({
4181
4183
  };
4182
4184
  };
4183
4185
 
4184
- const config$5 = {
4186
+ const config$4 = {
4185
4187
  viewBox: "0 0 19 19",
4186
4188
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
4187
4189
  d: "M2.41669 17.2645C2.91883 17.4167 3.59708 17.4167 4.75 17.4167H13.4167C14.5696 17.4167 15.2478 17.4167 15.75 17.2645M2.41669 17.2645C2.30902 17.2319 2.20944 17.1923 2.11502 17.1442C1.64462 16.9045 1.26217 16.522 1.02248 16.0516C0.75 15.5169 0.75 14.8168 0.75 13.4167V4.75C0.75 3.34987 0.75 2.6498 1.02248 2.11502C1.26217 1.64462 1.64462 1.26217 2.11502 1.02248C2.6498 0.75 3.34987 0.75 4.75 0.75H13.4167C14.8168 0.75 15.5169 0.75 16.0516 1.02248C16.522 1.26217 16.9045 1.64462 17.1442 2.11502C17.4167 2.6498 17.4167 3.34987 17.4167 4.75V13.4167C17.4167 14.8168 17.4167 15.5169 17.1442 16.0516C16.9045 16.522 16.522 16.9045 16.0516 17.1442C15.9572 17.1923 15.8576 17.2319 15.75 17.2645M2.41669 17.2645C2.41696 16.5901 2.42101 16.2332 2.48072 15.933C2.74374 14.6107 3.7774 13.5771 5.0997 13.314C5.4217 13.25 5.80891 13.25 6.58333 13.25H11.5833C12.3578 13.25 12.745 13.25 13.067 13.314C14.3893 13.5771 15.4229 14.6107 15.686 15.933C15.7457 16.2332 15.7497 16.5901 15.75 17.2645M12.4167 7C12.4167 8.84095 10.9243 10.3333 9.08333 10.3333C7.24238 10.3333 5.75 8.84095 5.75 7C5.75 5.15905 7.24238 3.66667 9.08333 3.66667C10.9243 3.66667 12.4167 5.15905 12.4167 7Z",
@@ -4192,7 +4194,7 @@ const config$5 = {
4192
4194
  })
4193
4195
  };
4194
4196
 
4195
- const config$4 = {
4197
+ const config$3 = {
4196
4198
  viewBox: "0 0 18 14",
4197
4199
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
4198
4200
  d: "M5.08333 2.53462H0.75V8.75H1.50141C2.09639 8.75 2.67622 8.93763 3.15841 9.2862L7.44192 12.3827C7.74723 12.6034 8.15773 12.6105 8.47051 12.4006C8.95317 12.0765 9.00645 11.3867 8.5793 10.9924L6.81667 9.36538L9.68494 11.9601C9.95925 12.2082 10.366 12.2412 10.6767 12.0404C11.0996 11.7672 11.1772 11.1801 10.8398 10.8064L9.15 8.93462L11.4946 11.4923C11.828 11.8561 12.3838 11.9055 12.7762 11.6063C13.2258 11.2635 13.2802 10.607 12.8932 10.1948L11.0167 8.19615L13.3903 10.686C13.711 11.0223 14.2308 11.0702 14.6075 10.7981C15.0685 10.4651 15.1251 9.79991 14.727 9.39379L14.2167 8.87308M16.75 8.57952V2.79983M16.75 8.57952C16.75 8.57952 16.75 5.25112 16.75 2.79983M16.75 8.57952C16.75 8.72136 16.662 8.85066 16.5235 8.91219L15.2216 9.49081C15.0608 9.56228 14.8682 9.52676 14.7494 9.40375L8.66241 3.09692C8.52364 2.95315 8.28848 2.93195 8.1222 3.04823L7.31667 3.61154C6.63455 4.08854 5.73081 4.19895 4.93775 3.90217L4.14065 3.60388C3.96864 3.53951 3.93837 3.32657 4.08656 3.22341L6.64053 1.44562C7.4038 0.914316 8.33376 0.75 9.28973 0.75H9.89529C10.373 0.75 10.8476 0.821816 11.3003 0.962629L16.4777 2.44993C16.6404 2.50054 16.75 2.64134 16.75 2.79983",
@@ -4202,7 +4204,7 @@ const config$4 = {
4202
4204
  })
4203
4205
  };
4204
4206
 
4205
- const config$3 = {
4207
+ const config$2 = {
4206
4208
  viewBox: "0 0 14 19",
4207
4209
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
4208
4210
  d: "M4.0834 14.5H9.0834M2.0834 0.75H11.0834C11.5501 0.75 11.7835 0.75 11.9617 0.840828C12.1185 0.920722 12.246 1.04821 12.3259 1.20501C12.4167 1.38327 12.4167 1.61662 12.4167 2.08333V3.8121C12.4167 4.21975 12.4167 4.42357 12.3707 4.61539C12.3299 4.78545 12.2625 4.94802 12.1711 5.09714C12.0681 5.26534 11.9239 5.40946 11.6357 5.69771L9.19288 8.14052C8.86286 8.47054 8.69786 8.63554 8.63603 8.82582C8.58165 8.99319 8.58165 9.17348 8.63603 9.34085C8.69786 9.53112 8.86286 9.69613 9.19288 10.0261L11.6357 12.469C11.9239 12.7572 12.0681 12.9013 12.1711 13.0695C12.2625 13.2186 12.3299 13.3812 12.3707 13.5513C12.4167 13.7431 12.4167 13.9469 12.4167 14.3546V16.0833C12.4167 16.55 12.4167 16.7834 12.3259 16.9617C12.246 17.1185 12.1185 17.2459 11.9617 17.3258C11.7835 17.4167 11.5501 17.4167 11.0834 17.4167H2.0834C1.61669 17.4167 1.38334 17.4167 1.20508 17.3258C1.04827 17.2459 0.920791 17.1185 0.840897 16.9617C0.750069 16.7834 0.750069 16.55 0.750069 16.0833V14.3546C0.750069 13.9469 0.750069 13.7431 0.796119 13.5513C0.836947 13.3812 0.904287 13.2186 0.995668 13.0695C1.09874 12.9013 1.24286 12.7572 1.53112 12.469L3.97393 10.0261C4.30394 9.69613 4.46895 9.53112 4.53077 9.34085C4.58515 9.17348 4.58515 8.99319 4.53077 8.82582C4.46895 8.63555 4.30394 8.47053 3.97393 8.14052L1.53112 5.69771C1.24287 5.40946 1.09874 5.26534 0.995668 5.09714C0.904287 4.94802 0.836947 4.78545 0.796119 4.61539C0.750069 4.42357 0.750069 4.21975 0.750069 3.8121V2.08333C0.750069 1.61662 0.750069 1.38327 0.840897 1.20501C0.920791 1.04821 1.04827 0.920722 1.20508 0.840828C1.38334 0.75 1.61669 0.75 2.0834 0.75Z",
@@ -4213,7 +4215,7 @@ const config$3 = {
4213
4215
  })
4214
4216
  };
4215
4217
 
4216
- const config$2 = {
4218
+ const config$1 = {
4217
4219
  viewBox: "0 0 17 19",
4218
4220
  children: /*#__PURE__*/jsxRuntime.jsx("path", {
4219
4221
  d: "M15.75 7.41667H0.75M15.75 9.5V6.41667C15.75 5.01654 15.75 4.31647 15.4775 3.78169C15.2378 3.31129 14.8554 2.92883 14.385 2.68915C13.8502 2.41667 13.1501 2.41667 11.75 2.41667H4.75C3.34987 2.41667 2.6498 2.41667 2.11502 2.68915C1.64462 2.92883 1.26217 3.31129 1.02248 3.78169C0.75 4.31647 0.75 5.01654 0.75 6.41667V13.4167C0.75 14.8168 0.75 15.5169 1.02248 16.0516C1.26217 16.522 1.64462 16.9045 2.11502 17.1442C2.6498 17.4167 3.34987 17.4167 4.75 17.4167H8.25M11.5833 0.75V4.08333M4.91667 0.75V4.08333M10.3333 14.9167L12 16.5833L15.75 12.8333",
@@ -4224,227 +4226,227 @@ const config$2 = {
4224
4226
  })
4225
4227
  };
4226
4228
 
4227
- const config$1 = {
4228
- AppAdmin: config$8,
4229
- Onboarding: config$7,
4230
- Right: config$1y,
4231
- ApplicationForm: config$1B,
4232
- Alert: config$2x,
4233
- Enter: config$3t,
4234
- NavToggle: config$2G,
4235
- Close: config$2M,
4236
- Close02: config$2L,
4237
- CloseCircle: config$2K,
4238
- Filters: config$2H,
4239
- Monitor: config$2J,
4240
- SupplyChain: config$2I,
4241
- BrokeUp: config$2E,
4242
- Filter: config$2D,
4243
- PmeIcon: config$2C,
4244
- CaddIcon: config$2B,
4245
- Delete: config$2A,
4246
- Edit: config$2z,
4247
- EditPen: config$2y,
4248
- Publish: config$2w,
4249
- Globe: config$2v,
4250
- RedDelete: config$2u,
4251
- BlueAdd: config$2t,
4252
- Warning: config$2q,
4253
- More: config$2r,
4254
- Search: config$2p,
4255
- Upload: config$N,
4256
- Event: config$2o,
4257
- Source: config$2n,
4258
- DashboardDashboard: config$2m,
4259
- DashboardDocuments: config$2l,
4260
- DashboardEvents: config$2k,
4261
- DashboardLocations: config$2j,
4262
- DashboardOwnOrg: config$2i,
4263
- DashboardStakeholder: config$2h,
4264
- DashboardWallet: config$2g,
4265
- Discord: config$2f,
4266
- Twitter: config$2c,
4267
- Youtube: config$2e,
4268
- Linkedin: config$2d,
4269
- ReportIncidents: config$3k,
4270
- MoreCustom: config$2b,
4271
- Settings: config$2a,
4272
- CheckDone: config$29,
4273
- NotificationText: config$24,
4274
- AdminIcon: config$25,
4275
- LogOut: config$2N,
4276
- Subjects: config$28,
4277
- Users: config$27,
4278
- TifDashboard: config$23,
4279
- DDSystems: config$1Y,
4280
- MineSites: config$1X,
4281
- ProductionReports: config$1V,
4282
- Equipment: config$1U,
4283
- MineOperators: config$1T,
4284
- ESGPerformance: config$1S,
4285
- KYC: config$1R,
4286
- ChevronRight: config$1Q,
4287
- Check: config$1P,
4288
- TifLegacyRegistered: config$22,
4289
- TifManagers: config$21,
4290
- TifMercuryFocus: config$20,
4291
- TifPartnerSince: config$1$,
4292
- TifSafety: config$1_,
4293
- TifStrongGrowth: config$1Z,
4294
- AddComment: config$1O,
4295
- NotApplicable: config$1M,
4296
- NotAvailable: config$1N,
4297
- Comment: config$1L,
4298
- Versions: config$1K,
4299
- Sources: config$1J,
4300
- Programs: config$1I,
4301
- Query: config$1G,
4302
- DataStore: config$1H,
4303
- View: config$1F,
4304
- TifAmp: config$1E,
4305
- Calendar: config$1D,
4306
- InformationChannels: config$1p,
4307
- MineProfile: config$1x,
4308
- OwnershipKYC: config$1A,
4309
- LinkedSubjects: config$1z,
4310
- Link: config$2O,
4311
- MineSite: config$1W,
4312
- ArrowUpRight: config$1C,
4313
- Add: config$2s,
4314
- LinkNewTab: config$2F,
4315
- ClipboardCheck: config$2Q,
4316
- Share: config$2P,
4317
- UsersCheck: config$26,
4318
- Flag05: config$1w,
4319
- Award01: config$1u,
4320
- Target04: config$1v,
4321
- Handshake: config$1q,
4322
- Lock04: config$1t,
4323
- Key01: config$1s,
4324
- PMESmallLogo: config$1o,
4325
- TazamaSmallLogo: config$1n,
4326
- TifSmallLogo: config$1i,
4327
- DatastakeSmallLogo: config$2R,
4328
- DataFlow: config$2S,
4329
- CorrectiveAction: config$2T,
4330
- Pencil: config$1r,
4331
- ProjectLocation: config$1g,
4332
- ProjectEvents: config$1f,
4333
- ProjectNetwork: config$1e,
4334
- ProjectStakeholders: config$19,
4335
- ProjectDueDilligence: config$18,
4336
- Annotation: config$2U,
4337
- Placeholder: config$2V,
4338
- SBGSmallLogo: config$1m,
4339
- PlaySquare: config$2W,
4340
- ManageSuppliers: config$2X,
4341
- ManageProjects: config$2Y,
4342
- FilePlus: config$31,
4343
- FileSearch: config$30,
4344
- FileAttach: config$2$,
4345
- BarChartSquare: config$2_,
4346
- GlobeOutlined: config$32,
4347
- ChartBreakoutSquare: config$2Z,
4348
- UserEdit: config$33,
4349
- Transfer: config$36,
4350
- UserRemove: config$35,
4351
- Worker: config$3a,
4352
- MainInformation: config$3c,
4353
- EsgPerformance2: config$1d,
4354
- Watchlist: config$1c,
4355
- SelfAssessment: config$1b,
4356
- ManagementSystems: config$1a,
4357
- Speedometer: config$39,
4358
- QuerySquare: config$38,
4359
- ArrowSquareRight: config$37,
4360
- PlusSquare: config$17,
4361
- UserSquare: config$16,
4362
- User: config$p,
4363
- CheckSquare: config$15,
4364
- InfoCircle: config$3b,
4365
- CheckVerified: config$34,
4366
- AlertSquare: config$3d,
4367
- KotaSmallLogo: config$1j,
4368
- Kobo: config$1h,
4369
- Download: config$3e,
4370
- NashirikiSmallLogo: config$1l,
4371
- CheckCircle: config$3f,
4372
- AlertCircle: config$3g,
4373
- Refresh05: config$3h,
4374
- Flag06: config$3j,
4375
- FileX03: config$3i,
4376
- Arms: config$3l,
4377
- Peace: config$3m,
4378
- Tree: config$3n,
4379
- Truck01: config$3r,
4380
- Globe04: config$3q,
4381
- Smelter: config$3p,
4382
- Factory: config$3o,
4383
- Building: config$3s,
4384
- GenderFemale: config$13,
4385
- Overview: config$$,
4386
- GenderMale: config$14,
4387
- DataPoints: config$11,
4388
- DataFlow02: config$12,
4389
- FileEdit: config$10,
4390
- CukuraSmallLogo: config$1k,
4391
- Earth: config$_,
4392
- Hedera: config$Z,
4393
- Leaf: config$X,
4394
- InfromationFile: config$V,
4395
- Organisation: config$W,
4396
- HandHoldingHeart: config$Y,
4397
- Pin: config$U,
4398
- AddEvent: config$T,
4399
- AddNew: config$S,
4400
- UploadDocument: config$R,
4401
- Monitoring: config$Q,
4402
- Clipboard: config$M,
4403
- UserCircle: config$L,
4404
- CoinsHand: config$K,
4405
- PercentCircle: config$J,
4406
- Eye: config$I,
4407
- Search02: config$P,
4408
- CivilSociety: config$O,
4409
- Submit: config$H,
4410
- Save: config$G,
4411
- PresentationChart: config$F,
4412
- MapPinMarker: config$E,
4413
- RadarOutlined: config$D,
4414
- BalanceScaleOutlined: config$C,
4415
- AimOutlined: config$B,
4416
- CalculatorOutlined: config$A,
4417
- SmileOutlined: config$z,
4418
- Chain: config$y,
4419
- Image: config$x,
4420
- Restoration: config$w,
4421
- Lock: config$v,
4422
- Merge: config$u,
4423
- Organisation02: config$t,
4424
- Package: config$s,
4425
- UpDownArrow: config$r,
4426
- Clear: config$q,
4427
- Integration: config$o,
4428
- Ant: config$n,
4429
- Bird: config$m,
4430
- Fish: config$l,
4431
- WaterDrop: config$k,
4432
- SchoolHat: config$j,
4433
- Briefcase: config$i,
4434
- Certificate: config$h,
4435
- LinkChain: config$g,
4436
- Robot: config$f,
4437
- Hedera01: config$e,
4438
- Records: config$d,
4439
- Lightning: config$c,
4440
- MagicWand: config$b,
4441
- Straatos: config$a,
4442
- ArcGis: config$9,
4443
- UnderDev: config$6,
4444
- userIcon: config$5,
4445
- partnerIcon: config$4,
4446
- LifeCycle: config$3,
4447
- EventCalendar: config$2
4229
+ const config = {
4230
+ AppAdmin: config$7,
4231
+ Onboarding: config$6,
4232
+ Right: config$1x,
4233
+ ApplicationForm: config$1A,
4234
+ Alert: config$2w,
4235
+ Enter: config$3s,
4236
+ NavToggle: config$2F,
4237
+ Close: config$2L,
4238
+ Close02: config$2K,
4239
+ CloseCircle: config$2J,
4240
+ Filters: config$2G,
4241
+ Monitor: config$2I,
4242
+ SupplyChain: config$2H,
4243
+ BrokeUp: config$2D,
4244
+ Filter: config$2C,
4245
+ PmeIcon: config$2B,
4246
+ CaddIcon: config$2A,
4247
+ Delete: config$2z,
4248
+ Edit: config$2y,
4249
+ EditPen: config$2x,
4250
+ Publish: config$2v,
4251
+ Globe: config$2u,
4252
+ RedDelete: config$2t,
4253
+ BlueAdd: config$2s,
4254
+ Warning: config$2p,
4255
+ More: config$2q,
4256
+ Search: config$2o,
4257
+ Upload: config$M,
4258
+ Event: config$2n,
4259
+ Source: config$2m,
4260
+ DashboardDashboard: config$2l,
4261
+ DashboardDocuments: config$2k,
4262
+ DashboardEvents: config$2j,
4263
+ DashboardLocations: config$2i,
4264
+ DashboardOwnOrg: config$2h,
4265
+ DashboardStakeholder: config$2g,
4266
+ DashboardWallet: config$2f,
4267
+ Discord: config$2e,
4268
+ Twitter: config$2b,
4269
+ Youtube: config$2d,
4270
+ Linkedin: config$2c,
4271
+ ReportIncidents: config$3j,
4272
+ MoreCustom: config$2a,
4273
+ Settings: config$29,
4274
+ CheckDone: config$28,
4275
+ NotificationText: config$23,
4276
+ AdminIcon: config$24,
4277
+ LogOut: config$2M,
4278
+ Subjects: config$27,
4279
+ Users: config$26,
4280
+ TifDashboard: config$22,
4281
+ DDSystems: config$1X,
4282
+ MineSites: config$1W,
4283
+ ProductionReports: config$1U,
4284
+ Equipment: config$1T,
4285
+ MineOperators: config$1S,
4286
+ ESGPerformance: config$1R,
4287
+ KYC: config$1Q,
4288
+ ChevronRight: config$1P,
4289
+ Check: config$1O,
4290
+ TifLegacyRegistered: config$21,
4291
+ TifManagers: config$20,
4292
+ TifMercuryFocus: config$1$,
4293
+ TifPartnerSince: config$1_,
4294
+ TifSafety: config$1Z,
4295
+ TifStrongGrowth: config$1Y,
4296
+ AddComment: config$1N,
4297
+ NotApplicable: config$1L,
4298
+ NotAvailable: config$1M,
4299
+ Comment: config$1K,
4300
+ Versions: config$1J,
4301
+ Sources: config$1I,
4302
+ Programs: config$1H,
4303
+ Query: config$1F,
4304
+ DataStore: config$1G,
4305
+ View: config$1E,
4306
+ TifAmp: config$1D,
4307
+ Calendar: config$1C,
4308
+ InformationChannels: config$1o,
4309
+ MineProfile: config$1w,
4310
+ OwnershipKYC: config$1z,
4311
+ LinkedSubjects: config$1y,
4312
+ Link: config$2N,
4313
+ MineSite: config$1V,
4314
+ ArrowUpRight: config$1B,
4315
+ Add: config$2r,
4316
+ LinkNewTab: config$2E,
4317
+ ClipboardCheck: config$2P,
4318
+ Share: config$2O,
4319
+ UsersCheck: config$25,
4320
+ Flag05: config$1v,
4321
+ Award01: config$1t,
4322
+ Target04: config$1u,
4323
+ Handshake: config$1p,
4324
+ Lock04: config$1s,
4325
+ Key01: config$1r,
4326
+ PMESmallLogo: config$1n,
4327
+ TazamaSmallLogo: config$1m,
4328
+ TifSmallLogo: config$1h,
4329
+ DatastakeSmallLogo: config$2Q,
4330
+ DataFlow: config$2R,
4331
+ CorrectiveAction: config$2S,
4332
+ Pencil: config$1q,
4333
+ ProjectLocation: config$1f,
4334
+ ProjectEvents: config$1e,
4335
+ ProjectNetwork: config$1d,
4336
+ ProjectStakeholders: config$18,
4337
+ ProjectDueDilligence: config$17,
4338
+ Annotation: config$2T,
4339
+ Placeholder: config$2U,
4340
+ SBGSmallLogo: config$1l,
4341
+ PlaySquare: config$2V,
4342
+ ManageSuppliers: config$2W,
4343
+ ManageProjects: config$2X,
4344
+ FilePlus: config$30,
4345
+ FileSearch: config$2$,
4346
+ FileAttach: config$2_,
4347
+ BarChartSquare: config$2Z,
4348
+ GlobeOutlined: config$31,
4349
+ ChartBreakoutSquare: config$2Y,
4350
+ UserEdit: config$32,
4351
+ Transfer: config$35,
4352
+ UserRemove: config$34,
4353
+ Worker: config$39,
4354
+ MainInformation: config$3b,
4355
+ EsgPerformance2: config$1c,
4356
+ Watchlist: config$1b,
4357
+ SelfAssessment: config$1a,
4358
+ ManagementSystems: config$19,
4359
+ Speedometer: config$38,
4360
+ QuerySquare: config$37,
4361
+ ArrowSquareRight: config$36,
4362
+ PlusSquare: config$16,
4363
+ UserSquare: config$15,
4364
+ User: config$o,
4365
+ CheckSquare: config$14,
4366
+ InfoCircle: config$3a,
4367
+ CheckVerified: config$33,
4368
+ AlertSquare: config$3c,
4369
+ KotaSmallLogo: config$1i,
4370
+ Kobo: config$1g,
4371
+ Download: config$3d,
4372
+ NashirikiSmallLogo: config$1k,
4373
+ CheckCircle: config$3e,
4374
+ AlertCircle: config$3f,
4375
+ Refresh05: config$3g,
4376
+ Flag06: config$3i,
4377
+ FileX03: config$3h,
4378
+ Arms: config$3k,
4379
+ Peace: config$3l,
4380
+ Tree: config$3m,
4381
+ Truck01: config$3q,
4382
+ Globe04: config$3p,
4383
+ Smelter: config$3o,
4384
+ Factory: config$3n,
4385
+ Building: config$3r,
4386
+ GenderFemale: config$12,
4387
+ Overview: config$_,
4388
+ GenderMale: config$13,
4389
+ DataPoints: config$10,
4390
+ DataFlow02: config$11,
4391
+ FileEdit: config$$,
4392
+ CukuraSmallLogo: config$1j,
4393
+ Earth: config$Z,
4394
+ Hedera: config$Y,
4395
+ Leaf: config$W,
4396
+ InfromationFile: config$U,
4397
+ Organisation: config$V,
4398
+ HandHoldingHeart: config$X,
4399
+ Pin: config$T,
4400
+ AddEvent: config$S,
4401
+ AddNew: config$R,
4402
+ UploadDocument: config$Q,
4403
+ Monitoring: config$P,
4404
+ Clipboard: config$L,
4405
+ UserCircle: config$K,
4406
+ CoinsHand: config$J,
4407
+ PercentCircle: config$I,
4408
+ Eye: config$H,
4409
+ Search02: config$O,
4410
+ CivilSociety: config$N,
4411
+ Submit: config$G,
4412
+ Save: config$F,
4413
+ PresentationChart: config$E,
4414
+ MapPinMarker: config$D,
4415
+ RadarOutlined: config$C,
4416
+ BalanceScaleOutlined: config$B,
4417
+ AimOutlined: config$A,
4418
+ CalculatorOutlined: config$z,
4419
+ SmileOutlined: config$y,
4420
+ Chain: config$x,
4421
+ Image: config$w,
4422
+ Restoration: config$v,
4423
+ Lock: config$u,
4424
+ Merge: config$t,
4425
+ Organisation02: config$s,
4426
+ Package: config$r,
4427
+ UpDownArrow: config$q,
4428
+ Clear: config$p,
4429
+ Integration: config$n,
4430
+ Ant: config$m,
4431
+ Bird: config$l,
4432
+ Fish: config$k,
4433
+ WaterDrop: config$j,
4434
+ SchoolHat: config$i,
4435
+ Briefcase: config$h,
4436
+ Certificate: config$g,
4437
+ LinkChain: config$f,
4438
+ Robot: config$e,
4439
+ Hedera01: config$d,
4440
+ Records: config$c,
4441
+ Lightning: config$b,
4442
+ MagicWand: config$a,
4443
+ Straatos: config$9,
4444
+ ArcGis: config$8,
4445
+ UnderDev: config$5,
4446
+ userIcon: config$4,
4447
+ partnerIcon: config$3,
4448
+ LifeCycle: config$2,
4449
+ EventCalendar: config$1
4448
4450
  };
4449
4451
 
4450
4452
  /* eslint-disable react/prop-types */
@@ -4456,7 +4458,7 @@ const CustomIcon = ({
4456
4458
  fill = "none",
4457
4459
  ...props
4458
4460
  }) => {
4459
- const conf = config$1[name];
4461
+ const conf = config[name];
4460
4462
  if (conf) {
4461
4463
  return /*#__PURE__*/jsxRuntime.jsx("svg", {
4462
4464
  ...props,
@@ -4527,7 +4529,7 @@ function SidenavMenu({
4527
4529
  impactAndBenefitItems,
4528
4530
  integrationItems,
4529
4531
  activityItems
4530
- } = o.useMemo(() => {
4532
+ } = React.useMemo(() => {
4531
4533
  const allItems = filteredItems.filter(it => !it.isDashboard && !it.isWallet && !it.isSettings && !it.isModule && !it.isAnalysis && !it.isSpecifications && !it.isOperations && !it.isProjectData && !it.isSettings && !it.isCore && !it.isImplementation && !it.isMonitoring && !it.isImpactAndBenefit && !it.isIntegration && !it.isActivity);
4532
4534
  const dashboardItems = filteredItems.filter(it => it.isDashboard);
4533
4535
  const walletItems = filteredItems.filter(it => it.isWallet);
@@ -4561,7 +4563,7 @@ function SidenavMenu({
4561
4563
  activityItems
4562
4564
  };
4563
4565
  }, [filteredItems]);
4564
- const [openKeys, setOpenKeys] = o.useState([]);
4566
+ const [openKeys, setOpenKeys] = React.useState([]);
4565
4567
  const renderSubMenu = (item, i) => ({
4566
4568
  key: i,
4567
4569
  disabled: item.isDisabled,
@@ -4625,7 +4627,7 @@ function SidenavMenu({
4625
4627
  })
4626
4628
  }))].filter(v => !!v)
4627
4629
  });
4628
- o.useEffect(() => {
4630
+ React.useEffect(() => {
4629
4631
  const first = selectedKeys[0];
4630
4632
  if (first) {
4631
4633
  const ind = moduleItems.findIndex(it => (it.items || []).find(subitem => first.includes(subitem.path) || (subitem.subPath || []).find(p => matchPath(p, selectedKeys[0]))));
@@ -5319,20 +5321,20 @@ const Sidenav = ({
5319
5321
  selectedProject,
5320
5322
  logoVariant = "white"
5321
5323
  }) => {
5322
- const hoverDiv = o.useRef();
5323
- const hoverDivSecond = o.useRef();
5324
- const items = o.useMemo(() => sidenavConfig[module] || [], [sidenavConfig, module]);
5325
- const [selectedKeys, setSelectedKeys] = o.useState([]);
5326
- const [topHover, setTopHover] = o.useState(-100);
5327
- const [topHoverSecond, setTopHoverSecond] = o.useState(-100);
5328
- const [widthHoverSecond, setWidthHoverSecond] = o.useState(DEFAULT_WIDTH);
5329
- const [hoverOpen, setHoverOpen] = o.useState(false);
5330
- const [hoverItem, setHoverItem] = o.useState(null);
5331
- const [hoverItemSecond, setHoverItemSecond] = o.useState(null);
5324
+ const hoverDiv = React.useRef();
5325
+ const hoverDivSecond = React.useRef();
5326
+ const items = React.useMemo(() => sidenavConfig[module] || [], [sidenavConfig, module]);
5327
+ const [selectedKeys, setSelectedKeys] = React.useState([]);
5328
+ const [topHover, setTopHover] = React.useState(-100);
5329
+ const [topHoverSecond, setTopHoverSecond] = React.useState(-100);
5330
+ const [widthHoverSecond, setWidthHoverSecond] = React.useState(DEFAULT_WIDTH);
5331
+ const [hoverOpen, setHoverOpen] = React.useState(false);
5332
+ const [hoverItem, setHoverItem] = React.useState(null);
5333
+ const [hoverItemSecond, setHoverItemSecond] = React.useState(null);
5332
5334
  const {
5333
5335
  pathname
5334
5336
  } = location || {};
5335
- o.useMemo(() => module, [module, user]);
5337
+ React.useMemo(() => module, [module, user]);
5336
5338
  const checkPath = i => {
5337
5339
  if (!matchPath || !pathname) return false;
5338
5340
  return matchPath({
@@ -5343,7 +5345,7 @@ const Sidenav = ({
5343
5345
  exact: true
5344
5346
  }, pathname)).length ? true : false;
5345
5347
  };
5346
- o.useEffect(() => {
5348
+ React.useEffect(() => {
5347
5349
  setHoverItem(null);
5348
5350
  setHoverOpen(false);
5349
5351
  setHoverItemSecond(null);
@@ -5402,7 +5404,7 @@ const Sidenav = ({
5402
5404
  hoverItemSecond,
5403
5405
  isDev
5404
5406
  });
5405
- const filteredItems = o.useMemo(() => {
5407
+ const filteredItems = React.useMemo(() => {
5406
5408
  const mapItems = item => {
5407
5409
  const isDisabled = typeof item.isDisabled === 'function' ? item.isDisabled(user) : item.isDisabled || false;
5408
5410
  if (item.items) {
@@ -5425,7 +5427,7 @@ const Sidenav = ({
5425
5427
  return res;
5426
5428
  }).map(mapItems);
5427
5429
  }, [items, user, pathname]);
5428
- o.useEffect(() => {
5430
+ React.useEffect(() => {
5429
5431
  const selectedItem = filteredItems.filter(d => !d.isDisabled).find(i => i.items ? i.items.filter(ii => !ii.isDisabled && checkPath(ii)).length > 0 : checkPath(i));
5430
5432
  if (selectedItem) {
5431
5433
  if (selectedItem.items) {
@@ -5440,8 +5442,8 @@ const Sidenav = ({
5440
5442
  setSelectedKeys([pathname]);
5441
5443
  }
5442
5444
  }, [pathname]);
5443
- o.useMemo(() => module, [user, module]);
5444
- return /*#__PURE__*/jsxRuntime.jsxs(o__default["default"].Fragment, {
5445
+ React.useMemo(() => module, [user, module]);
5446
+ return /*#__PURE__*/jsxRuntime.jsxs(React__default["default"].Fragment, {
5445
5447
  children: [renderModule({
5446
5448
  isCollapsed,
5447
5449
  onClick: () => checkOnClick({
@@ -5486,356 +5488,13 @@ const Sidenav = ({
5486
5488
  });
5487
5489
  };
5488
5490
 
5489
- var global$1 = (typeof global !== "undefined" ? global :
5490
- typeof self !== "undefined" ? self :
5491
- typeof window !== "undefined" ? window : {});
5492
-
5493
- // shim for using process in browser
5494
- // based off https://github.com/defunctzombie/node-process/blob/master/browser.js
5495
-
5496
- function defaultSetTimout() {
5497
- throw new Error('setTimeout has not been defined');
5498
- }
5499
- function defaultClearTimeout () {
5500
- throw new Error('clearTimeout has not been defined');
5501
- }
5502
- var cachedSetTimeout = defaultSetTimout;
5503
- var cachedClearTimeout = defaultClearTimeout;
5504
- if (typeof global$1.setTimeout === 'function') {
5505
- cachedSetTimeout = setTimeout;
5506
- }
5507
- if (typeof global$1.clearTimeout === 'function') {
5508
- cachedClearTimeout = clearTimeout;
5509
- }
5510
-
5511
- function runTimeout(fun) {
5512
- if (cachedSetTimeout === setTimeout) {
5513
- //normal enviroments in sane situations
5514
- return setTimeout(fun, 0);
5515
- }
5516
- // if setTimeout wasn't available but was latter defined
5517
- if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
5518
- cachedSetTimeout = setTimeout;
5519
- return setTimeout(fun, 0);
5520
- }
5521
- try {
5522
- // when when somebody has screwed with setTimeout but no I.E. maddness
5523
- return cachedSetTimeout(fun, 0);
5524
- } catch(e){
5525
- try {
5526
- // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
5527
- return cachedSetTimeout.call(null, fun, 0);
5528
- } catch(e){
5529
- // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
5530
- return cachedSetTimeout.call(this, fun, 0);
5531
- }
5532
- }
5533
-
5534
-
5535
- }
5536
- function runClearTimeout(marker) {
5537
- if (cachedClearTimeout === clearTimeout) {
5538
- //normal enviroments in sane situations
5539
- return clearTimeout(marker);
5540
- }
5541
- // if clearTimeout wasn't available but was latter defined
5542
- if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
5543
- cachedClearTimeout = clearTimeout;
5544
- return clearTimeout(marker);
5545
- }
5546
- try {
5547
- // when when somebody has screwed with setTimeout but no I.E. maddness
5548
- return cachedClearTimeout(marker);
5549
- } catch (e){
5550
- try {
5551
- // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
5552
- return cachedClearTimeout.call(null, marker);
5553
- } catch (e){
5554
- // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
5555
- // Some versions of I.E. have different rules for clearTimeout vs setTimeout
5556
- return cachedClearTimeout.call(this, marker);
5557
- }
5558
- }
5559
-
5560
-
5561
-
5562
- }
5563
- var queue = [];
5564
- var draining = false;
5565
- var currentQueue;
5566
- var queueIndex = -1;
5567
-
5568
- function cleanUpNextTick() {
5569
- if (!draining || !currentQueue) {
5570
- return;
5571
- }
5572
- draining = false;
5573
- if (currentQueue.length) {
5574
- queue = currentQueue.concat(queue);
5575
- } else {
5576
- queueIndex = -1;
5577
- }
5578
- if (queue.length) {
5579
- drainQueue();
5580
- }
5581
- }
5582
-
5583
- function drainQueue() {
5584
- if (draining) {
5585
- return;
5586
- }
5587
- var timeout = runTimeout(cleanUpNextTick);
5588
- draining = true;
5589
-
5590
- var len = queue.length;
5591
- while(len) {
5592
- currentQueue = queue;
5593
- queue = [];
5594
- while (++queueIndex < len) {
5595
- if (currentQueue) {
5596
- currentQueue[queueIndex].run();
5597
- }
5598
- }
5599
- queueIndex = -1;
5600
- len = queue.length;
5601
- }
5602
- currentQueue = null;
5603
- draining = false;
5604
- runClearTimeout(timeout);
5605
- }
5606
- function nextTick(fun) {
5607
- var args = new Array(arguments.length - 1);
5608
- if (arguments.length > 1) {
5609
- for (var i = 1; i < arguments.length; i++) {
5610
- args[i - 1] = arguments[i];
5611
- }
5612
- }
5613
- queue.push(new Item(fun, args));
5614
- if (queue.length === 1 && !draining) {
5615
- runTimeout(drainQueue);
5616
- }
5617
- }
5618
- // v8 likes predictible objects
5619
- function Item(fun, array) {
5620
- this.fun = fun;
5621
- this.array = array;
5622
- }
5623
- Item.prototype.run = function () {
5624
- this.fun.apply(null, this.array);
5625
- };
5626
- var title = 'browser';
5627
- var platform = 'browser';
5628
- var browser = true;
5629
- var env = {};
5630
- var argv = [];
5631
- var version = ''; // empty string to avoid regexp issues
5632
- var versions = {};
5633
- var release = {};
5634
- var config = {};
5635
-
5636
- function noop() {}
5637
-
5638
- var on = noop;
5639
- var addListener = noop;
5640
- var once = noop;
5641
- var off = noop;
5642
- var removeListener = noop;
5643
- var removeAllListeners = noop;
5644
- var emit = noop;
5645
-
5646
- function binding(name) {
5647
- throw new Error('process.binding is not supported');
5648
- }
5649
-
5650
- function cwd () { return '/' }
5651
- function chdir (dir) {
5652
- throw new Error('process.chdir is not supported');
5653
- }function umask() { return 0; }
5654
-
5655
- // from https://github.com/kumavis/browser-process-hrtime/blob/master/index.js
5656
- var performance = global$1.performance || {};
5657
- var performanceNow =
5658
- performance.now ||
5659
- performance.mozNow ||
5660
- performance.msNow ||
5661
- performance.oNow ||
5662
- performance.webkitNow ||
5663
- function(){ return (new Date()).getTime() };
5664
-
5665
- // generate timestamp or delta
5666
- // see http://nodejs.org/api/process.html#process_process_hrtime
5667
- function hrtime(previousTimestamp){
5668
- var clocktime = performanceNow.call(performance)*1e-3;
5669
- var seconds = Math.floor(clocktime);
5670
- var nanoseconds = Math.floor((clocktime%1)*1e9);
5671
- if (previousTimestamp) {
5672
- seconds = seconds - previousTimestamp[0];
5673
- nanoseconds = nanoseconds - previousTimestamp[1];
5674
- if (nanoseconds<0) {
5675
- seconds--;
5676
- nanoseconds += 1e9;
5677
- }
5678
- }
5679
- return [seconds,nanoseconds]
5680
- }
5681
-
5682
- var startTime = new Date();
5683
- function uptime() {
5684
- var currentTime = new Date();
5685
- var dif = currentTime - startTime;
5686
- return dif / 1000;
5687
- }
5688
-
5689
- var browser$1 = {
5690
- nextTick: nextTick,
5691
- title: title,
5692
- browser: browser,
5693
- env: env,
5694
- argv: argv,
5695
- version: version,
5696
- versions: versions,
5697
- on: on,
5698
- addListener: addListener,
5699
- once: once,
5700
- off: off,
5701
- removeListener: removeListener,
5702
- removeAllListeners: removeAllListeners,
5703
- emit: emit,
5704
- binding: binding,
5705
- cwd: cwd,
5706
- chdir: chdir,
5707
- umask: umask,
5708
- hrtime: hrtime,
5709
- platform: platform,
5710
- release: release,
5711
- config: config,
5712
- uptime: uptime
5713
- };
5714
-
5715
- var process = browser$1;
5716
-
5717
- /******************************************************************************
5718
- Copyright (c) Microsoft Corporation.
5719
-
5720
- Permission to use, copy, modify, and/or distribute this software for any
5721
- purpose with or without fee is hereby granted.
5722
-
5723
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
5724
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
5725
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
5726
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
5727
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
5728
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
5729
- PERFORMANCE OF THIS SOFTWARE.
5730
- ***************************************************************************** */
5731
-
5732
- var __assign = function() {
5733
- __assign = Object.assign || function __assign(t) {
5734
- for (var s, i = 1, n = arguments.length; i < n; i++) {
5735
- s = arguments[i];
5736
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
5737
- }
5738
- return t;
5739
- };
5740
- return __assign.apply(this, arguments);
5741
- };
5742
-
5743
- function __spreadArray(to, from, pack) {
5744
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
5745
- if (ar || !(i in from)) {
5746
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
5747
- ar[i] = from[i];
5748
- }
5749
- }
5750
- return to.concat(ar || Array.prototype.slice.call(from));
5751
- }
5752
-
5753
- typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
5754
- var e = new Error(message);
5755
- return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
5756
- };
5757
-
5758
- function memoize(fn) {
5759
- var cache = Object.create(null);
5760
- return function (arg) {
5761
- if (cache[arg] === undefined) cache[arg] = fn(arg);
5762
- return cache[arg];
5763
- };
5764
- }
5765
-
5766
- var reactPropsRegex = /^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/; // https://esbench.com/bench/5bfee68a4cd7e6009ef61d23
5767
-
5768
- var isPropValid = /* #__PURE__ */memoize(function (prop) {
5769
- return reactPropsRegex.test(prop) || prop.charCodeAt(0) === 111
5770
- /* o */
5771
- && prop.charCodeAt(1) === 110
5772
- /* n */
5773
- && prop.charCodeAt(2) < 91;
5774
- }
5775
- /* Z+1 */
5776
- );
5777
-
5778
- var e="-ms-";var r="-moz-";var a="-webkit-";var n="comm";var c="rule";var s="decl";var i="@import";var h="@keyframes";var g$1="@layer";var $$1=Math.abs;var m$1=String.fromCharCode;var x$1=Object.assign;function y$1(e,r){return A$1(e,0)^45?(((r<<2^A$1(e,0))<<2^A$1(e,1))<<2^A$1(e,2))<<2^A$1(e,3):0}function j$1(e){return e.trim()}function z$1(e,r){return (e=r.exec(e))?e[0]:e}function C$1(e,r,a){return e.replace(r,a)}function O$1(e,r,a){return e.indexOf(r,a)}function A$1(e,r){return e.charCodeAt(r)|0}function M$1(e,r,a){return e.slice(r,a)}function S$1(e){return e.length}function q$1(e){return e.length}function B$1(e,r){return r.push(e),e}function D$1(e,r){return e.map(r).join("")}function E$1(e,r){return e.filter((function(e){return !z$1(e,r)}))}var F$1=1;var G$1=1;var H$1=0;var I$1=0;var J$1=0;var K$1="";function L$1(e,r,a,n,c,s,t,u){return {value:e,root:r,parent:a,type:n,props:c,children:s,line:F$1,column:G$1,length:t,return:"",siblings:u}}function N$1(e,r){return x$1(L$1("",null,null,"",null,null,0,e.siblings),e,{length:-e.length},r)}function P$1(e){while(e.root)e=N$1(e.root,{children:[e]});B$1(e,e.siblings);}function Q$1(){return J$1}function R$1(){J$1=I$1>0?A$1(K$1,--I$1):0;if(G$1--,J$1===10)G$1=1,F$1--;return J$1}function T$1(){J$1=I$1<H$1?A$1(K$1,I$1++):0;if(G$1++,J$1===10)G$1=1,F$1++;return J$1}function U$1(){return A$1(K$1,I$1)}function V$1(){return I$1}function W$1(e,r){return M$1(K$1,e,r)}function X$1(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Y$1(e){return F$1=G$1=1,H$1=S$1(K$1=e),I$1=0,[]}function Z$1(e){return K$1="",e}function _$1(e){return j$1(W$1(I$1-1,ce$1(e===91?e+2:e===40?e+1:e)))}function re$1(e){while(J$1=U$1())if(J$1<33)T$1();else break;return X$1(e)>2||X$1(J$1)>3?"":" "}function ne$1(e,r){while(--r&&T$1())if(J$1<48||J$1>102||J$1>57&&J$1<65||J$1>70&&J$1<97)break;return W$1(e,V$1()+(r<6&&U$1()==32&&T$1()==32))}function ce$1(e){while(T$1())switch(J$1){case e:return I$1;case 34:case 39:if(e!==34&&e!==39)ce$1(J$1);break;case 40:if(e===41)ce$1(e);break;case 92:T$1();break}return I$1}function se$1(e,r){while(T$1())if(e+J$1===47+10)break;else if(e+J$1===42+42&&U$1()===47)break;return "/*"+W$1(r,I$1-1)+"*"+m$1(e===47?e:T$1())}function te$1(e){while(!X$1(U$1()))T$1();return W$1(e,I$1)}function ue$1(e){return Z$1(ie$1("",null,null,null,[""],e=Y$1(e),0,[0],e))}function ie$1(e,r,a,n,c,s,t,u,i){var f=0;var o=0;var l=t;var v=0;var p=0;var h=0;var b=1;var w=1;var d=1;var g=0;var k="";var x=c;var y=s;var j=n;var z=k;while(w)switch(h=g,g=T$1()){case 40:if(h!=108&&A$1(z,l-1)==58){if(O$1(z+=C$1(_$1(g),"&","&\f"),"&\f",$$1(f?u[f-1]:0))!=-1)d=-1;break}case 34:case 39:case 91:z+=_$1(g);break;case 9:case 10:case 13:case 32:z+=re$1(h);break;case 92:z+=ne$1(V$1()-1,7);continue;case 47:switch(U$1()){case 42:case 47:B$1(oe$1(se$1(T$1(),V$1()),r,a,i),i);break;default:z+="/";}break;case 123*b:u[f++]=S$1(z)*d;case 125*b:case 59:case 0:switch(g){case 0:case 125:w=0;case 59+o:if(d==-1)z=C$1(z,/\f/g,"");if(p>0&&S$1(z)-l)B$1(p>32?le$1(z+";",n,a,l-1,i):le$1(C$1(z," ","")+";",n,a,l-2,i),i);break;case 59:z+=";";default:B$1(j=fe$1(z,r,a,f,o,c,u,k,x=[],y=[],l,s),s);if(g===123)if(o===0)ie$1(z,r,j,j,x,s,l,u,y);else switch(v===99&&A$1(z,3)===110?100:v){case 100:case 108:case 109:case 115:ie$1(e,j,j,n&&B$1(fe$1(e,j,j,0,0,c,u,k,c,x=[],l,y),y),c,y,l,u,n?x:y);break;default:ie$1(z,j,j,j,[""],y,0,u,y);}}f=o=p=0,b=d=1,k=z="",l=t;break;case 58:l=1+S$1(z),p=h;default:if(b<1)if(g==123)--b;else if(g==125&&b++==0&&R$1()==125)continue;switch(z+=m$1(g),g*b){case 38:d=o>0?1:(z+="\f",-1);break;case 44:u[f++]=(S$1(z)-1)*d,d=1;break;case 64:if(U$1()===45)z+=_$1(T$1());v=U$1(),o=l=S$1(k=z+=te$1(V$1())),g++;break;case 45:if(h===45&&S$1(z)==2)b=0;}}return s}function fe$1(e,r,a,n,s,t,u,i,f,o,l,v){var p=s-1;var h=s===0?t:[""];var b=q$1(h);for(var w=0,d=0,g=0;w<n;++w)for(var k=0,m=M$1(e,p+1,p=$$1(d=u[w])),x=e;k<b;++k)if(x=j$1(d>0?h[k]+" "+m:C$1(m,/&\f/g,h[k])))f[g++]=x;return L$1(e,r,a,s===0?c:i,f,o,l,v)}function oe$1(e,r,a,c){return L$1(e,r,a,n,m$1(Q$1()),M$1(e,2,-2),0,c)}function le$1(e,r,a,n,c){return L$1(e,r,a,s,M$1(e,0,n),M$1(e,n+1,-1),n,c)}function ve$1(n,c,s){switch(y$1(n,c)){case 5103:return a+"print-"+n+n;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return a+n+n;case 4789:return r+n+n;case 5349:case 4246:case 4810:case 6968:case 2756:return a+n+r+n+e+n+n;case 5936:switch(A$1(n,c+11)){case 114:return a+n+e+C$1(n,/[svh]\w+-[tblr]{2}/,"tb")+n;case 108:return a+n+e+C$1(n,/[svh]\w+-[tblr]{2}/,"tb-rl")+n;case 45:return a+n+e+C$1(n,/[svh]\w+-[tblr]{2}/,"lr")+n}case 6828:case 4268:case 2903:return a+n+e+n+n;case 6165:return a+n+e+"flex-"+n+n;case 5187:return a+n+C$1(n,/(\w+).+(:[^]+)/,a+"box-$1$2"+e+"flex-$1$2")+n;case 5443:return a+n+e+"flex-item-"+C$1(n,/flex-|-self/g,"")+(!z$1(n,/flex-|baseline/)?e+"grid-row-"+C$1(n,/flex-|-self/g,""):"")+n;case 4675:return a+n+e+"flex-line-pack"+C$1(n,/align-content|flex-|-self/g,"")+n;case 5548:return a+n+e+C$1(n,"shrink","negative")+n;case 5292:return a+n+e+C$1(n,"basis","preferred-size")+n;case 6060:return a+"box-"+C$1(n,"-grow","")+a+n+e+C$1(n,"grow","positive")+n;case 4554:return a+C$1(n,/([^-])(transform)/g,"$1"+a+"$2")+n;case 6187:return C$1(C$1(C$1(n,/(zoom-|grab)/,a+"$1"),/(image-set)/,a+"$1"),n,"")+n;case 5495:case 3959:return C$1(n,/(image-set\([^]*)/,a+"$1"+"$`$1");case 4968:return C$1(C$1(n,/(.+:)(flex-)?(.*)/,a+"box-pack:$3"+e+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+a+n+n;case 4200:if(!z$1(n,/flex-|baseline/))return e+"grid-column-align"+M$1(n,c)+n;break;case 2592:case 3360:return e+C$1(n,"template-","")+n;case 4384:case 3616:if(s&&s.some((function(e,r){return c=r,z$1(e.props,/grid-\w+-end/)}))){return ~O$1(n+(s=s[c].value),"span",0)?n:e+C$1(n,"-start","")+n+e+"grid-row-span:"+(~O$1(s,"span",0)?z$1(s,/\d+/):+z$1(s,/\d+/)-+z$1(n,/\d+/))+";"}return e+C$1(n,"-start","")+n;case 4896:case 4128:return s&&s.some((function(e){return z$1(e.props,/grid-\w+-start/)}))?n:e+C$1(C$1(n,"-end","-span"),"span ","")+n;case 4095:case 3583:case 4068:case 2532:return C$1(n,/(.+)-inline(.+)/,a+"$1$2")+n;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(S$1(n)-1-c>6)switch(A$1(n,c+1)){case 109:if(A$1(n,c+4)!==45)break;case 102:return C$1(n,/(.+:)(.+)-([^]+)/,"$1"+a+"$2-$3"+"$1"+r+(A$1(n,c+3)==108?"$3":"$2-$3"))+n;case 115:return ~O$1(n,"stretch",0)?ve$1(C$1(n,"stretch","fill-available"),c,s)+n:n}break;case 5152:case 5920:return C$1(n,/(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/,(function(r,a,c,s,t,u,i){return e+a+":"+c+i+(s?e+a+"-span:"+(t?u:+u-+c)+i:"")+n}));case 4949:if(A$1(n,c+6)===121)return C$1(n,":",":"+a)+n;break;case 6444:switch(A$1(n,A$1(n,14)===45?18:11)){case 120:return C$1(n,/(.+:)([^;\s!]+)(;|(\s+)?!.+)?/,"$1"+a+(A$1(n,14)===45?"inline-":"")+"box$3"+"$1"+a+"$2$3"+"$1"+e+"$2box$3")+n;case 100:return C$1(n,":",":"+e)+n}break;case 5719:case 2647:case 2135:case 3927:case 2391:return C$1(n,"scroll-","scroll-snap-")+n}return n}function pe$1(e,r){var a="";for(var n=0;n<e.length;n++)a+=r(e[n],n,e,r)||"";return a}function he$1(e,r,a,t){switch(e.type){case g$1:if(e.children.length)break;case i:case s:return e.return=e.return||e.value;case n:return "";case h:return e.return=e.value+"{"+pe$1(e.children,t)+"}";case c:if(!S$1(e.value=e.props.join(",")))return ""}return S$1(a=pe$1(e.children,t))?e.return=e.value+"{"+a+"}":""}function be$1(e){var r=q$1(e);return function(a,n,c,s){var t="";for(var u=0;u<r;u++)t+=e[u](a,n,c,s)||"";return t}}function we$1(e){return function(r){if(!r.root)if(r=r.return)e(r);}}function de$1(n,t,u,i){if(n.length>-1)if(!n.return)switch(n.type){case s:n.return=ve$1(n.value,n.length,u);return;case h:return pe$1([N$1(n,{value:C$1(n.value,"@","@"+a)})],i);case c:if(n.length)return D$1(u=n.props,(function(c){switch(z$1(c,i=/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":P$1(N$1(n,{props:[C$1(c,/:(read-\w+)/,":"+r+"$1")]}));P$1(N$1(n,{props:[c]}));x$1(n,{props:E$1(u,i)});break;case"::placeholder":P$1(N$1(n,{props:[C$1(c,/:(plac\w+)/,":"+a+"input-$1")]}));P$1(N$1(n,{props:[C$1(c,/:(plac\w+)/,":"+r+"$1")]}));P$1(N$1(n,{props:[C$1(c,/:(plac\w+)/,e+"input-$1")]}));P$1(N$1(n,{props:[c]}));x$1(n,{props:E$1(u,i)});break}return ""}))}}
5779
-
5780
- var unitlessKeys = {
5781
- animationIterationCount: 1,
5782
- aspectRatio: 1,
5783
- borderImageOutset: 1,
5784
- borderImageSlice: 1,
5785
- borderImageWidth: 1,
5786
- boxFlex: 1,
5787
- boxFlexGroup: 1,
5788
- boxOrdinalGroup: 1,
5789
- columnCount: 1,
5790
- columns: 1,
5791
- flex: 1,
5792
- flexGrow: 1,
5793
- flexPositive: 1,
5794
- flexShrink: 1,
5795
- flexNegative: 1,
5796
- flexOrder: 1,
5797
- gridRow: 1,
5798
- gridRowEnd: 1,
5799
- gridRowSpan: 1,
5800
- gridRowStart: 1,
5801
- gridColumn: 1,
5802
- gridColumnEnd: 1,
5803
- gridColumnSpan: 1,
5804
- gridColumnStart: 1,
5805
- msGridRow: 1,
5806
- msGridRowSpan: 1,
5807
- msGridColumn: 1,
5808
- msGridColumnSpan: 1,
5809
- fontWeight: 1,
5810
- lineHeight: 1,
5811
- opacity: 1,
5812
- order: 1,
5813
- orphans: 1,
5814
- tabSize: 1,
5815
- widows: 1,
5816
- zIndex: 1,
5817
- zoom: 1,
5818
- WebkitLineClamp: 1,
5819
- // SVG-related properties
5820
- fillOpacity: 1,
5821
- floodOpacity: 1,
5822
- stopOpacity: 1,
5823
- strokeDasharray: 1,
5824
- strokeDashoffset: 1,
5825
- strokeMiterlimit: 1,
5826
- strokeOpacity: 1,
5827
- strokeWidth: 1
5828
- };
5829
-
5830
- var f="undefined"!=typeof process&&void 0!==process.env&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",m="active",y="data-styled-version",v="6.1.12",g="/*!sc*/\n",S="undefined"!=typeof window&&"HTMLElement"in window,w=Boolean("boolean"==typeof SC_DISABLE_SPEEDY?SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env&&void 0!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&""!==process.env.REACT_APP_SC_DISABLE_SPEEDY?"false"!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&process.env.REACT_APP_SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env&&void 0!==process.env.SC_DISABLE_SPEEDY&&""!==process.env.SC_DISABLE_SPEEDY?"false"!==process.env.SC_DISABLE_SPEEDY&&process.env.SC_DISABLE_SPEEDY:"production"!==process.env.NODE_ENV),b={},E=/invalid hook call/i,N=new Set,P=function(t,n){if("production"!==process.env.NODE_ENV){var o$1=n?' with the id of "'.concat(n,'"'):"",s="The component ".concat(t).concat(o$1," has been created dynamically.\n")+"You may see this warning because you've called styled inside another component.\nTo resolve this only create new StyledComponents outside of any render method and function component.",i=console.error;try{var a=!0;console.error=function(t){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];E.test(t)?(a=!1,N.delete(s)):i.apply(void 0,__spreadArray([t],n,!1));},o.useRef(),a&&!N.has(s)&&(console.warn(s),N.add(s));}catch(e){E.test(e.message)&&N.delete(s);}finally{console.error=i;}}},_=Object.freeze([]),C=Object.freeze({});function I(e,t,n){return void 0===n&&(n=C),e.theme!==n.theme&&e.theme||t||n.theme}var A=new Set(["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","track","u","ul","use","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"]),O=/[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g,D=/(^-|-$)/g;function R(e){return e.replace(O,"-").replace(D,"")}var T=/(a)(d)/gi,k=52,j=function(e){return String.fromCharCode(e+(e>25?39:97))};function x(e){var t,n="";for(t=Math.abs(e);t>k;t=t/k|0)n=j(t%k)+n;return (j(t%k)+n).replace(T,"$1-$2")}var V,F=5381,M=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},z=function(e){return M(F,e)};function $(e){return x(z(e)>>>0)}function B(e){return "production"!==process.env.NODE_ENV&&"string"==typeof e&&e||e.displayName||e.name||"Component"}function L(e){return "string"==typeof e&&("production"===process.env.NODE_ENV||e.charAt(0)===e.charAt(0).toLowerCase())}var G="function"==typeof Symbol&&Symbol.for,Y=G?Symbol.for("react.memo"):60115,W=G?Symbol.for("react.forward_ref"):60112,q={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},H={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},U={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},J=((V={})[W]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},V[Y]=U,V);function X(e){return ("type"in(t=e)&&t.type.$$typeof)===Y?U:"$$typeof"in e?J[e.$$typeof]:q;var t;}var Z=Object.defineProperty,K=Object.getOwnPropertyNames,Q=Object.getOwnPropertySymbols,ee=Object.getOwnPropertyDescriptor,te=Object.getPrototypeOf,ne=Object.prototype;function oe(e,t,n){if("string"!=typeof t){if(ne){var o=te(t);o&&o!==ne&&oe(e,o,n);}var r=K(t);Q&&(r=r.concat(Q(t)));for(var s=X(e),i=X(t),a=0;a<r.length;++a){var c=r[a];if(!(c in H||n&&n[c]||i&&c in i||s&&c in s)){var l=ee(t,c);try{Z(e,c,l);}catch(e){}}}}return e}function re(e){return "function"==typeof e}function se(e){return "object"==typeof e&&"styledComponentId"in e}function ie(e,t){return e&&t?"".concat(e," ").concat(t):e||t||""}function ae(e,t){if(0===e.length)return "";for(var n=e[0],o=1;o<e.length;o++)n+=t?t+e[o]:e[o];return n}function ce(e){return null!==e&&"object"==typeof e&&e.constructor.name===Object.name&&!("props"in e&&e.$$typeof)}function le(e,t,n){if(void 0===n&&(n=!1),!n&&!ce(e)&&!Array.isArray(e))return t;if(Array.isArray(t))for(var o=0;o<t.length;o++)e[o]=le(e[o],t[o]);else if(ce(t))for(var o in t)e[o]=le(e[o],t[o]);return e}function ue(e,t){Object.defineProperty(e,"toString",{value:t});}var pe="production"!==process.env.NODE_ENV?{1:"Cannot create styled-component for component: %s.\n\n",2:"Can't collect styles once you've consumed a `ServerStyleSheet`'s styles! `ServerStyleSheet` is a one off instance for each server-side render cycle.\n\n- Are you trying to reuse it across renders?\n- Are you accidentally calling collectStyles twice?\n\n",3:"Streaming SSR is only supported in a Node.js environment; Please do not try to call this method in the browser.\n\n",4:"The `StyleSheetManager` expects a valid target or sheet prop!\n\n- Does this error occur on the client and is your target falsy?\n- Does this error occur on the server and is the sheet falsy?\n\n",5:"The clone method cannot be used on the client!\n\n- Are you running in a client-like environment on the server?\n- Are you trying to run SSR on the client?\n\n",6:"Trying to insert a new style tag, but the given Node is unmounted!\n\n- Are you using a custom target that isn't mounted?\n- Does your document not have a valid head element?\n- Have you accidentally removed a style tag manually?\n\n",7:'ThemeProvider: Please return an object from your "theme" prop function, e.g.\n\n```js\ntheme={() => ({})}\n```\n\n',8:'ThemeProvider: Please make your "theme" prop an object.\n\n',9:"Missing document `<head>`\n\n",10:"Cannot find a StyleSheet instance. Usually this happens if there are multiple copies of styled-components loaded at once. Check out this issue for how to troubleshoot and fix the common cases where this situation can happen: https://github.com/styled-components/styled-components/issues/1941#issuecomment-417862021\n\n",11:"_This error was replaced with a dev-time warning, it will be deleted for v4 final._ [createGlobalStyle] received children which will not be rendered. Please use the component without passing children elements.\n\n",12:"It seems you are interpolating a keyframe declaration (%s) into an untagged string. This was supported in styled-components v3, but is not longer supported in v4 as keyframes are now injected on-demand. Please wrap your string in the css\\`\\` helper which ensures the styles are injected correctly. See https://www.styled-components.com/docs/api#css\n\n",13:"%s is not a styled component and cannot be referred to via component selector. See https://www.styled-components.com/docs/advanced#referring-to-other-components for more details.\n\n",14:'ThemeProvider: "theme" prop is required.\n\n',15:"A stylis plugin has been supplied that is not named. We need a name for each plugin to be able to prevent styling collisions between different stylis configurations within the same app. Before you pass your plugin to `<StyleSheetManager stylisPlugins={[]}>`, please make sure each plugin is uniquely-named, e.g.\n\n```js\nObject.defineProperty(importedPlugin, 'name', { value: 'some-unique-name' });\n```\n\n",16:"Reached the limit of how many styled components may be created at group %s.\nYou may only create up to 1,073,741,824 components. If you're creating components dynamically,\nas for instance in your render method then you may be running into this limitation.\n\n",17:"CSSStyleSheet could not be found on HTMLStyleElement.\nHas styled-components' style tag been unmounted or altered by another script?\n",18:"ThemeProvider: Please make sure your useTheme hook is within a `<ThemeProvider>`"}:{};function de(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n=e[0],o=[],r=1,s=e.length;r<s;r+=1)o.push(e[r]);return o.forEach(function(e){n=n.replace(/%[a-z]/,e);}),n}function he(t){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];return "production"===process.env.NODE_ENV?new Error("An error occurred. See https://github.com/styled-components/styled-components/blob/main/packages/styled-components/src/utils/errors.md#".concat(t," for more information.").concat(n.length>0?" Args: ".concat(n.join(", ")):"")):new Error(de.apply(void 0,__spreadArray([pe[t]],n,!1)).trim())}var fe=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e;}return e.prototype.indexOfGroup=function(e){for(var t=0,n=0;n<e;n++)t+=this.groupSizes[n];return t},e.prototype.insertRules=function(e,t){if(e>=this.groupSizes.length){for(var n=this.groupSizes,o=n.length,r=o;e>=r;)if((r<<=1)<0)throw he(16,"".concat(e));this.groupSizes=new Uint32Array(r),this.groupSizes.set(n),this.length=r;for(var s=o;s<r;s++)this.groupSizes[s]=0;}for(var i=this.indexOfGroup(e+1),a=(s=0,t.length);s<a;s++)this.tag.insertRule(i,t[s])&&(this.groupSizes[e]++,i++);},e.prototype.clearGroup=function(e){if(e<this.length){var t=this.groupSizes[e],n=this.indexOfGroup(e),o=n+t;this.groupSizes[e]=0;for(var r=n;r<o;r++)this.tag.deleteRule(n);}},e.prototype.getGroup=function(e){var t="";if(e>=this.length||0===this.groupSizes[e])return t;for(var n=this.groupSizes[e],o=this.indexOfGroup(e),r=o+n,s=o;s<r;s++)t+="".concat(this.tag.getRule(s)).concat(g);return t},e}(),me=1<<30,ye=new Map,ve=new Map,ge=1,Se=function(e){if(ye.has(e))return ye.get(e);for(;ve.has(ge);)ge++;var t=ge++;if("production"!==process.env.NODE_ENV&&((0|t)<0||t>me))throw he(16,"".concat(t));return ye.set(e,t),ve.set(t,e),t},we=function(e,t){ge=t+1,ye.set(e,t),ve.set(t,e);},be="style[".concat(f,"][").concat(y,'="').concat(v,'"]'),Ee=new RegExp("^".concat(f,'\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)')),Ne=function(e,t,n){for(var o,r=n.split(","),s=0,i=r.length;s<i;s++)(o=r[s])&&e.registerName(t,o);},Pe=function(e,t){for(var n,o=(null!==(n=t.textContent)&&void 0!==n?n:"").split(g),r=[],s=0,i=o.length;s<i;s++){var a=o[s].trim();if(a){var c=a.match(Ee);if(c){var l=0|parseInt(c[1],10),u=c[2];0!==l&&(we(u,l),Ne(e,u,c[3]),e.getTag().insertRules(l,r)),r.length=0;}else r.push(a);}}},_e=function(e){for(var t=document.querySelectorAll(be),n=0,o=t.length;n<o;n++){var r=t[n];r&&r.getAttribute(f)!==m&&(Pe(e,r),r.parentNode&&r.parentNode.removeChild(r));}};function Ce(){return "undefined"!=typeof __webpack_nonce__?__webpack_nonce__:null}var Ie=function(e){var t=document.head,n=e||t,o=document.createElement("style"),r=function(e){var t=Array.from(e.querySelectorAll("style[".concat(f,"]")));return t[t.length-1]}(n),s=void 0!==r?r.nextSibling:null;o.setAttribute(f,m),o.setAttribute(y,v);var i=Ce();return i&&o.setAttribute("nonce",i),n.insertBefore(o,s),o},Ae=function(){function e(e){this.element=Ie(e),this.element.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,n=0,o=t.length;n<o;n++){var r=t[n];if(r.ownerNode===e)return r}throw he(17)}(this.element),this.length=0;}return e.prototype.insertRule=function(e,t){try{return this.sheet.insertRule(t,e),this.length++,!0}catch(e){return !1}},e.prototype.deleteRule=function(e){this.sheet.deleteRule(e),this.length--;},e.prototype.getRule=function(e){var t=this.sheet.cssRules[e];return t&&t.cssText?t.cssText:""},e}(),Oe=function(){function e(e){this.element=Ie(e),this.nodes=this.element.childNodes,this.length=0;}return e.prototype.insertRule=function(e,t){if(e<=this.length&&e>=0){var n=document.createTextNode(t);return this.element.insertBefore(n,this.nodes[e]||null),this.length++,!0}return !1},e.prototype.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--;},e.prototype.getRule=function(e){return e<this.length?this.nodes[e].textContent:""},e}(),De=function(){function e(e){this.rules=[],this.length=0;}return e.prototype.insertRule=function(e,t){return e<=this.length&&(this.rules.splice(e,0,t),this.length++,!0)},e.prototype.deleteRule=function(e){this.rules.splice(e,1),this.length--;},e.prototype.getRule=function(e){return e<this.length?this.rules[e]:""},e}(),Re=S,Te={isServer:!S,useCSSOMInjection:!w},ke=function(){function e(e,n,o){void 0===e&&(e=C),void 0===n&&(n={});var r=this;this.options=__assign(__assign({},Te),e),this.gs=n,this.names=new Map(o),this.server=!!e.isServer,!this.server&&S&&Re&&(Re=!1,_e(this)),ue(this,function(){return function(e){for(var t=e.getTag(),n=t.length,o="",r=function(n){var r=function(e){return ve.get(e)}(n);if(void 0===r)return "continue";var s=e.names.get(r),i=t.getGroup(n);if(void 0===s||!s.size||0===i.length)return "continue";var a="".concat(f,".g").concat(n,'[id="').concat(r,'"]'),c="";void 0!==s&&s.forEach(function(e){e.length>0&&(c+="".concat(e,","));}),o+="".concat(i).concat(a,'{content:"').concat(c,'"}').concat(g);},s=0;s<n;s++)r(s);return o}(r)});}return e.registerId=function(e){return Se(e)},e.prototype.rehydrate=function(){!this.server&&S&&_e(this);},e.prototype.reconstructWithOptions=function(n,o){return void 0===o&&(o=!0),new e(__assign(__assign({},this.options),n),this.gs,o&&this.names||void 0)},e.prototype.allocateGSInstance=function(e){return this.gs[e]=(this.gs[e]||0)+1},e.prototype.getTag=function(){return this.tag||(this.tag=(e=function(e){var t=e.useCSSOMInjection,n=e.target;return e.isServer?new De(n):t?new Ae(n):new Oe(n)}(this.options),new fe(e)));var e;},e.prototype.hasNameForId=function(e,t){return this.names.has(e)&&this.names.get(e).has(t)},e.prototype.registerName=function(e,t){if(Se(e),this.names.has(e))this.names.get(e).add(t);else {var n=new Set;n.add(t),this.names.set(e,n);}},e.prototype.insertRules=function(e,t,n){this.registerName(e,t),this.getTag().insertRules(Se(e),n);},e.prototype.clearNames=function(e){this.names.has(e)&&this.names.get(e).clear();},e.prototype.clearRules=function(e){this.getTag().clearGroup(Se(e)),this.clearNames(e);},e.prototype.clearTag=function(){this.tag=void 0;},e}(),je=/&/g,xe=/^\s*\/\/.*$/gm;function Ve(e,t){return e.map(function(e){return "rule"===e.type&&(e.value="".concat(t," ").concat(e.value),e.value=e.value.replaceAll(",",",".concat(t," ")),e.props=e.props.map(function(e){return "".concat(t," ").concat(e)})),Array.isArray(e.children)&&"@keyframes"!==e.type&&(e.children=Ve(e.children,t)),e})}function Fe(e){var t,n,o,r=void 0===e?C:e,s=r.options,i=void 0===s?C:s,a=r.plugins,c$1=void 0===a?_:a,l=function(e,o,r){return r.startsWith(n)&&r.endsWith(n)&&r.replaceAll(n,"").length>0?".".concat(t):e},u=c$1.slice();u.push(function(e){e.type===c&&e.value.includes("&")&&(e.props[0]=e.props[0].replace(je,n).replace(o,l));}),i.prefix&&u.push(de$1),u.push(he$1);var p=function(e,r,s,a){void 0===r&&(r=""),void 0===s&&(s=""),void 0===a&&(a="&"),t=a,n=r,o=new RegExp("\\".concat(n,"\\b"),"g");var c=e.replace(xe,""),l=ue$1(s||r?"".concat(s," ").concat(r," { ").concat(c," }"):c);i.namespace&&(l=Ve(l,i.namespace));var p=[];return pe$1(l,be$1(u.concat(we$1(function(e){return p.push(e)})))),p};return p.hash=c$1.length?c$1.reduce(function(e,t){return t.name||he(15),M(e,t.name)},F).toString():"",p}var Me=new ke,ze=Fe(),$e=o__default["default"].createContext({shouldForwardProp:void 0,styleSheet:Me,stylis:ze});$e.Consumer;o__default["default"].createContext(void 0);function Ge(){return o.useContext($e)}var We=function(){function e(e,t){var n=this;this.inject=function(e,t){void 0===t&&(t=ze);var o=n.name+t.hash;e.hasNameForId(n.id,o)||e.insertRules(n.id,o,t(n.rules,o,"@keyframes"));},this.name=e,this.id="sc-keyframes-".concat(e),this.rules=t,ue(this,function(){throw he(12,String(n.name))});}return e.prototype.getName=function(e){return void 0===e&&(e=ze),this.name+e.hash},e}(),qe=function(e){return e>="A"&&e<="Z"};function He(e){for(var t="",n=0;n<e.length;n++){var o=e[n];if(1===n&&"-"===o&&"-"===e[0])return e;qe(o)?t+="-"+o.toLowerCase():t+=o;}return t.startsWith("ms-")?"-"+t:t}var Ue=function(e){return null==e||!1===e||""===e},Je=function(t){var n,o,r=[];for(var s in t){var i=t[s];t.hasOwnProperty(s)&&!Ue(i)&&(Array.isArray(i)&&i.isCss||re(i)?r.push("".concat(He(s),":"),i,";"):ce(i)?r.push.apply(r,__spreadArray(__spreadArray(["".concat(s," {")],Je(i),!1),["}"],!1)):r.push("".concat(He(s),": ").concat((n=s,null==(o=i)||"boolean"==typeof o||""===o?"":"number"!=typeof o||0===o||n in unitlessKeys||n.startsWith("--")?String(o).trim():"".concat(o,"px")),";")));}return r};function Xe(e,t,n,o){if(Ue(e))return [];if(se(e))return [".".concat(e.styledComponentId)];if(re(e)){if(!re(s=e)||s.prototype&&s.prototype.isReactComponent||!t)return [e];var r=e(t);return "production"===process.env.NODE_ENV||"object"!=typeof r||Array.isArray(r)||r instanceof We||ce(r)||null===r||console.error("".concat(B(e)," is not a styled component and cannot be referred to via component selector. See https://www.styled-components.com/docs/advanced#referring-to-other-components for more details.")),Xe(r,t,n,o)}var s;return e instanceof We?n?(e.inject(n,o),[e.getName(o)]):[e]:ce(e)?Je(e):Array.isArray(e)?Array.prototype.concat.apply(_,e.map(function(e){return Xe(e,t,n,o)})):[e.toString()]}function Ze(e){for(var t=0;t<e.length;t+=1){var n=e[t];if(re(n)&&!se(n))return !1}return !0}var Ke=z(v),Qe=function(){function e(e,t,n){this.rules=e,this.staticRulesId="",this.isStatic="production"===process.env.NODE_ENV&&(void 0===n||n.isStatic)&&Ze(e),this.componentId=t,this.baseHash=M(Ke,t),this.baseStyle=n,ke.registerId(t);}return e.prototype.generateAndInjectStyles=function(e,t,n){var o=this.baseStyle?this.baseStyle.generateAndInjectStyles(e,t,n):"";if(this.isStatic&&!n.hash)if(this.staticRulesId&&t.hasNameForId(this.componentId,this.staticRulesId))o=ie(o,this.staticRulesId);else {var r=ae(Xe(this.rules,e,t,n)),s=x(M(this.baseHash,r)>>>0);if(!t.hasNameForId(this.componentId,s)){var i=n(r,".".concat(s),void 0,this.componentId);t.insertRules(this.componentId,s,i);}o=ie(o,s),this.staticRulesId=s;}else {for(var a=M(this.baseHash,n.hash),c="",l=0;l<this.rules.length;l++){var u=this.rules[l];if("string"==typeof u)c+=u,"production"!==process.env.NODE_ENV&&(a=M(a,u));else if(u){var p=ae(Xe(u,e,t,n));a=M(a,p+l),c+=p;}}if(c){var d=x(a>>>0);t.hasNameForId(this.componentId,d)||t.insertRules(this.componentId,d,n(c,".".concat(d),void 0,this.componentId)),o=ie(o,d);}}return o},e}(),et=o__default["default"].createContext(void 0);et.Consumer;var rt={},st=new Set;function it(e,r,s){var i=se(e),a=e,c=!L(e),p=r.attrs,d=void 0===p?_:p,h=r.componentId,f=void 0===h?function(e,t){var n="string"!=typeof e?"sc":R(e);rt[n]=(rt[n]||0)+1;var o="".concat(n,"-").concat($(v+n+rt[n]));return t?"".concat(t,"-").concat(o):o}(r.displayName,r.parentComponentId):h,m=r.displayName,y=void 0===m?function(e){return L(e)?"styled.".concat(e):"Styled(".concat(B(e),")")}(e):m,g=r.displayName&&r.componentId?"".concat(R(r.displayName),"-").concat(r.componentId):r.componentId||f,S=i&&a.attrs?a.attrs.concat(d).filter(Boolean):d,w=r.shouldForwardProp;if(i&&a.shouldForwardProp){var b=a.shouldForwardProp;if(r.shouldForwardProp){var E=r.shouldForwardProp;w=function(e,t){return b(e,t)&&E(e,t)};}else w=b;}var N=new Qe(s,g,i?a.componentStyle:void 0);function O(e,r){return function(e,r,s){var i=e.attrs,a=e.componentStyle,c=e.defaultProps,p=e.foldedComponentIds,d=e.styledComponentId,h=e.target,f=o__default["default"].useContext(et),m=Ge(),y=e.shouldForwardProp||m.shouldForwardProp;"production"!==process.env.NODE_ENV&&o.useDebugValue(d);var v=I(r,f,c)||C,g=function(e,n,o){for(var r,s=__assign(__assign({},n),{className:void 0,theme:o}),i=0;i<e.length;i+=1){var a=re(r=e[i])?r(s):r;for(var c in a)s[c]="className"===c?ie(s[c],a[c]):"style"===c?__assign(__assign({},s[c]),a[c]):a[c];}return n.className&&(s.className=ie(s.className,n.className)),s}(i,r,v),S=g.as||h,w={};for(var b in g)void 0===g[b]||"$"===b[0]||"as"===b||"theme"===b&&g.theme===v||("forwardedAs"===b?w.as=g.forwardedAs:y&&!y(b,S)||(w[b]=g[b],y||"development"!==process.env.NODE_ENV||isPropValid(b)||st.has(b)||!A.has(S)||(st.add(b),console.warn('styled-components: it looks like an unknown prop "'.concat(b,'" is being sent through to the DOM, which will likely trigger a React console error. If you would like automatic filtering of unknown props, you can opt-into that behavior via `<StyleSheetManager shouldForwardProp={...}>` (connect an API like `@emotion/is-prop-valid`) or consider using transient props (`$` prefix for automatic filtering.)')))));var E=function(e,t){var n=Ge(),o$1=e.generateAndInjectStyles(t,n.styleSheet,n.stylis);return "production"!==process.env.NODE_ENV&&o.useDebugValue(o$1),o$1}(a,g);"production"!==process.env.NODE_ENV&&e.warnTooManyClasses&&e.warnTooManyClasses(E);var N=ie(p,d);return E&&(N+=" "+E),g.className&&(N+=" "+g.className),w[L(S)&&!A.has(S)?"class":"className"]=N,w.ref=s,o.createElement(S,w)}(D,e,r)}O.displayName=y;var D=o__default["default"].forwardRef(O);return D.attrs=S,D.componentStyle=N,D.displayName=y,D.shouldForwardProp=w,D.foldedComponentIds=i?ie(a.foldedComponentIds,a.styledComponentId):"",D.styledComponentId=g,D.target=i?a.target:e,Object.defineProperty(D,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(e){this._foldedDefaultProps=i?function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];for(var o=0,r=t;o<r.length;o++)le(e,r[o],!0);return e}({},a.defaultProps,e):e;}}),"production"!==process.env.NODE_ENV&&(P(y,g),D.warnTooManyClasses=function(e,t){var n={},o=!1;return function(r){if(!o&&(n[r]=!0,Object.keys(n).length>=200)){var s=t?' with the id of "'.concat(t,'"'):"";console.warn("Over ".concat(200," classes were generated for component ").concat(e).concat(s,".\n")+"Consider using the attrs method, together with a style object for frequently changed styles.\nExample:\n const Component = styled.div.attrs(props => ({\n style: {\n background: props.background,\n },\n }))`width: 100%;`\n\n <Component />"),o=!0,n={};}}}(y,g)),ue(D,function(){return ".".concat(D.styledComponentId)}),c&&oe(D,e,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0}),D}function at(e,t){for(var n=[e[0]],o=0,r=t.length;o<r;o+=1)n.push(t[o],e[o+1]);return n}var ct=function(e){return Object.assign(e,{isCss:!0})};function lt(t){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];if(re(t)||ce(t))return ct(Xe(at(_,__spreadArray([t],n,!0))));var r=t;return 0===n.length&&1===r.length&&"string"==typeof r[0]?Xe(r):ct(Xe(at(r,n)))}function ut(n,o,r){if(void 0===r&&(r=C),!o)throw he(1,o);var s=function(t){for(var s=[],i=1;i<arguments.length;i++)s[i-1]=arguments[i];return n(o,r,lt.apply(void 0,__spreadArray([t],s,!1)))};return s.attrs=function(e){return ut(n,o,__assign(__assign({},r),{attrs:Array.prototype.concat(r.attrs,e).filter(Boolean)}))},s.withConfig=function(e){return ut(n,o,__assign(__assign({},r),e))},s}var pt=function(e){return ut(it,e)},dt=pt;A.forEach(function(e){dt[e]=pt(e);});var ht=function(){function e(e,t){this.rules=e,this.componentId=t,this.isStatic=Ze(e),ke.registerId(this.componentId+1);}return e.prototype.createStyles=function(e,t,n,o){var r=o(ae(Xe(this.rules,t,n,o)),""),s=this.componentId+e;n.insertRules(s,s,r);},e.prototype.removeStyles=function(e,t){t.clearRules(this.componentId+e);},e.prototype.renderStyles=function(e,t,n,o){e>2&&ke.registerId(this.componentId+e),this.removeStyles(e,n),this.createStyles(e,t,n,o);},e}();function ft(n){for(var r=[],s=1;s<arguments.length;s++)r[s-1]=arguments[s];var i=lt.apply(void 0,__spreadArray([n],r,!1)),a="sc-global-".concat($(JSON.stringify(i))),c=new ht(i,a);"production"!==process.env.NODE_ENV&&P(a);var l=function(e){var t=Ge(),n=o__default["default"].useContext(et),r=o__default["default"].useRef(t.styleSheet.allocateGSInstance(a)).current;return "production"!==process.env.NODE_ENV&&o__default["default"].Children.count(e.children)&&console.warn("The global style component ".concat(a," was given child JSX. createGlobalStyle does not render children.")),"production"!==process.env.NODE_ENV&&i.some(function(e){return "string"==typeof e&&-1!==e.indexOf("@import")})&&console.warn("Please do not use @import CSS syntax in createGlobalStyle at this time, as the CSSOM APIs we use in production do not handle it well. Instead, we recommend using a library such as react-helmet to inject a typical <link> meta tag to the stylesheet, or simply embedding it manually in your index.html <head> section for a simpler app."),t.styleSheet.server&&u(r,e,t.styleSheet,n,t.stylis),o__default["default"].useLayoutEffect(function(){if(!t.styleSheet.server)return u(r,e,t.styleSheet,n,t.stylis),function(){return c.removeStyles(r,t.styleSheet)}},[r,e,t.styleSheet,n,t.stylis]),null};function u(e,n,o,r,s){if(c.isStatic)c.renderStyles(e,b,o,s);else {var i=__assign(__assign({},n),{theme:I(n,r,l.defaultProps)});c.renderStyles(e,i,o,s);}}return o__default["default"].memo(l)}"production"!==process.env.NODE_ENV&&"undefined"!=typeof navigator&&"ReactNative"===navigator.product&&console.warn("It looks like you've imported 'styled-components' on React Native.\nPerhaps you're looking to import 'styled-components/native'?\nRead more about this at https://www.styled-components.com/docs/basics#react-native");var St="__sc-".concat(f,"__");"production"!==process.env.NODE_ENV&&"test"!==process.env.NODE_ENV&&"undefined"!=typeof window&&(window[St]||(window[St]=0),1===window[St]&&console.warn("It looks like there are several instances of 'styled-components' initialized in this application. This may cause dynamic styles to not render properly, errors during the rehydration process, a missing theme prop, and makes your application bigger without good reason.\n\nSee https://s-c.sh/2BAXzed for more info."),window[St]+=1);
5831
-
5832
- const MOBILE_W$1 = 850;
5833
- const TABLET_W$1 = 1280;
5834
- const MOBILE_WIDTH$1 = `max-width: ${MOBILE_W$1}px`;
5835
- const TABLET_WIDTH$1 = `max-width: ${TABLET_W$1}px`;
5491
+ const MOBILE_W = 850;
5492
+ const TABLET_W = 1280;
5493
+ const MOBILE_WIDTH = `max-width: ${MOBILE_W}px`;
5494
+ const TABLET_WIDTH = `max-width: ${TABLET_W}px`;
5836
5495
 
5837
5496
  /* eslint-disable react/prop-types */
5838
- const Style$6 = dt.div`
5497
+ const Style$6 = styled__default["default"].div`
5839
5498
  display: flex;
5840
5499
  cursor: pointer;
5841
5500
 
@@ -5879,7 +5538,7 @@ const Style$6 = dt.div`
5879
5538
  justify-content: center;
5880
5539
  }
5881
5540
 
5882
- @media (${MOBILE_WIDTH$1}) {
5541
+ @media (${MOBILE_WIDTH}) {
5883
5542
  .desktop {
5884
5543
  display: none;
5885
5544
  }
@@ -5933,7 +5592,7 @@ function UserIcon({
5933
5592
  });
5934
5593
  }
5935
5594
 
5936
- const Style$5 = dt.div`
5595
+ const Style$5 = styled__default["default"].div`
5937
5596
  position: fixed;
5938
5597
  background: rgba(0, 0, 0, 0.4);
5939
5598
  width: 100dvw;
@@ -6043,8 +5702,8 @@ function MobileDrawer({
6043
5702
  selectedProject,
6044
5703
  theme = {}
6045
5704
  }) {
6046
- const items = o.useMemo(() => sidenavConfig[mod] || [], [sidenavConfig, mod]);
6047
- const canViewPartners = o.useMemo(() => mod === 'tazama', [mod]);
5705
+ const items = React.useMemo(() => sidenavConfig[mod] || [], [sidenavConfig, mod]);
5706
+ const canViewPartners = React.useMemo(() => mod === 'tazama', [mod]);
6048
5707
  const canViewProjects = checkPermission({
6049
5708
  permission: 'projects.canView',
6050
5709
  permissions: user?.role?.permissions
@@ -6057,8 +5716,8 @@ function MobileDrawer({
6057
5716
  permission: 'settings.canView',
6058
5717
  permissions: user?.role?.permissions
6059
5718
  });
6060
- const hasMultipleApps = o.useMemo(() => Object.keys(user?.modules || {}).filter(k => user.modules[k].status === 'approved').length > 1, [user]);
6061
- const handleLogOut = o.useCallback(() => {
5719
+ const hasMultipleApps = React.useMemo(() => Object.keys(user?.modules || {}).filter(k => user.modules[k].status === 'approved').length > 1, [user]);
5720
+ const handleLogOut = React.useCallback(() => {
6062
5721
  const hasPrevious = localStorage.getItem('previous');
6063
5722
  sessionStorage.removeItem('notifications');
6064
5723
  if (hasPrevious) {
@@ -6069,7 +5728,7 @@ function MobileDrawer({
6069
5728
  }
6070
5729
  logOut?.();
6071
5730
  }, [logOut]);
6072
- const filteredItems = o.useMemo(() => {
5731
+ const filteredItems = React.useMemo(() => {
6073
5732
  const mapItems = item => {
6074
5733
  const isDisabled = typeof item.isDisabled === 'function' ? item.isDisabled(user, selectedProject, selectedProject) : item.isDisabled || false;
6075
5734
  if (item.items) {
@@ -6212,11 +5871,11 @@ const UserDropdownMenu = ({
6212
5871
  const {
6213
5872
  userIsAdmin
6214
5873
  } = userHelpers;
6215
- const isAdmin = o.useMemo(() => userIsAdmin?.(user), [user, userIsAdmin]);
5874
+ const isAdmin = React.useMemo(() => userIsAdmin?.(user), [user, userIsAdmin]);
6216
5875
 
6217
5876
  // Add fallback for windowWidth
6218
5877
  const actualWidth = windowWidth || (typeof window !== 'undefined' ? window.innerWidth : 1920);
6219
- const isMobile = o.useMemo(() => actualWidth <= MOBILE_W$1, [actualWidth]);
5878
+ const isMobile = React.useMemo(() => actualWidth <= MOBILE_W, [actualWidth]);
6220
5879
  const canViewUsers = checkPermission({
6221
5880
  permission: 'users.canView',
6222
5881
  permissions: user?.role?.permissions
@@ -6225,7 +5884,7 @@ const UserDropdownMenu = ({
6225
5884
  permission: 'settings.canView',
6226
5885
  permissions: user?.role?.permissions
6227
5886
  });
6228
- const companyLogo = o.useMemo(() => {
5887
+ const companyLogo = React.useMemo(() => {
6229
5888
  const _arr = Array.isArray(user?.company?.logo) ? user?.company?.logo : user?.company?.logo?.fileList && Array.isArray(user?.company?.logo?.fileList) ? user?.company?.logo?.fileList.map(v => v.response ? v.response : v) : [];
6230
5889
  return Array.isArray(_arr) && _arr[0] ? _arr[0].url : null;
6231
5890
  }, [user]);
@@ -6315,7 +5974,7 @@ const UserDropdownMenu = ({
6315
5974
  });
6316
5975
  };
6317
5976
 
6318
- const NotificationsStyle = dt.div`
5977
+ const NotificationsStyle = styled__default["default"].div`
6319
5978
  display: flex;
6320
5979
  flex-direction: column;
6321
5980
 
@@ -6382,16 +6041,16 @@ const useNotifications = ({
6382
6041
  markAsRead,
6383
6042
  markAllAsRead
6384
6043
  }) => {
6385
- const [loading, setLoading] = o.useState(false);
6386
- const [notifications, setNotifications] = o.useState([]);
6387
- const [total, setTotal] = o.useState(0);
6388
- const [page, setPage] = o.useState(0);
6389
- const [hasMore, setHasMore] = o.useState(true);
6390
- const isFetching = o.useRef(false);
6391
- const _notifications = o.useMemo(() => {
6044
+ const [loading, setLoading] = React.useState(false);
6045
+ const [notifications, setNotifications] = React.useState([]);
6046
+ const [total, setTotal] = React.useState(0);
6047
+ const [page, setPage] = React.useState(0);
6048
+ const [hasMore, setHasMore] = React.useState(true);
6049
+ const isFetching = React.useRef(false);
6050
+ const _notifications = React.useMemo(() => {
6392
6051
  return notifications.filter(n => !n.read);
6393
6052
  }, [notifications]);
6394
- const _fetch = o.useCallback(async () => {
6053
+ const _fetch = React.useCallback(async () => {
6395
6054
  if (!fetchNotifications || isFetching.current || !hasMore || loading) {
6396
6055
  return;
6397
6056
  }
@@ -6418,7 +6077,7 @@ const useNotifications = ({
6418
6077
  isFetching.current = false;
6419
6078
  }
6420
6079
  }, [fetchNotifications, page, status, hasMore, loading]);
6421
- const removeNotification = o.useCallback(async id => {
6080
+ const removeNotification = React.useCallback(async id => {
6422
6081
  try {
6423
6082
  if (markAsRead) {
6424
6083
  await markAsRead(id);
@@ -6432,7 +6091,7 @@ const useNotifications = ({
6432
6091
  console.error('Error removing notification:', err);
6433
6092
  }
6434
6093
  }, [markAsRead]);
6435
- const clearAll = o.useCallback(async () => {
6094
+ const clearAll = React.useCallback(async () => {
6436
6095
  try {
6437
6096
  if (markAllAsRead) {
6438
6097
  await markAllAsRead();
@@ -6446,13 +6105,13 @@ const useNotifications = ({
6446
6105
  console.error('Error clearing notifications:', err);
6447
6106
  }
6448
6107
  }, [markAllAsRead]);
6449
- const addNotification = o.useCallback(notification => {
6108
+ const addNotification = React.useCallback(notification => {
6450
6109
  setNotifications(prev => [notification, ...prev]);
6451
6110
  setTotal(t => t + 1);
6452
6111
  }, []);
6453
6112
 
6454
6113
  // Initial fetch
6455
- o.useEffect(() => {
6114
+ React.useEffect(() => {
6456
6115
  if (user) {
6457
6116
  _fetch();
6458
6117
  }
@@ -6470,7 +6129,7 @@ const useNotifications = ({
6470
6129
 
6471
6130
  /* eslint-disable react/prop-types */
6472
6131
  const status = 'unread';
6473
- const NotificationsContext = /*#__PURE__*/o.createContext({
6132
+ const NotificationsContext = /*#__PURE__*/React.createContext({
6474
6133
  loading: false,
6475
6134
  _notifications: [],
6476
6135
  _fetch: () => {},
@@ -6507,7 +6166,7 @@ const NotificationsProvider = ({
6507
6166
  clearAll,
6508
6167
  removeNotification
6509
6168
  };
6510
- const onMessage = o.useCallback(notification => {
6169
+ const onMessage = React.useCallback(notification => {
6511
6170
  let data = {};
6512
6171
  try {
6513
6172
  data = JSON.parse(notification.data?.data);
@@ -6535,7 +6194,7 @@ const NotificationsProvider = ({
6535
6194
  });
6536
6195
  };
6537
6196
  const useNotificationsContext = () => {
6538
- const value = o.useContext(NotificationsContext);
6197
+ const value = React.useContext(NotificationsContext);
6539
6198
  return value;
6540
6199
  };
6541
6200
 
@@ -6567,7 +6226,7 @@ const Notification = ({
6567
6226
  });
6568
6227
  };
6569
6228
 
6570
- var Style$4 = dt.div`
6229
+ var Style$4 = styled__default["default"].div`
6571
6230
  .noti-list {
6572
6231
  height: 50vh;
6573
6232
  max-height: 500px;
@@ -6641,7 +6300,7 @@ function Tags({
6641
6300
  }, `tag-${i}`)), !!otherTags.length && /*#__PURE__*/jsxRuntime.jsx(antd.Tooltip, {
6642
6301
  placement: "bottom",
6643
6302
  title: /*#__PURE__*/jsxRuntime.jsx("div", {
6644
- children: otherTags.map((t, i) => /*#__PURE__*/jsxRuntime.jsxs(o__default["default"].Fragment, {
6303
+ children: otherTags.map((t, i) => /*#__PURE__*/jsxRuntime.jsxs(React__default["default"].Fragment, {
6645
6304
  children: [t.label, i !== otherTags.length - 1 && /*#__PURE__*/jsxRuntime.jsx("br", {})]
6646
6305
  }, `other-tags-p-${i}`))
6647
6306
  }),
@@ -6659,8 +6318,8 @@ function Buttons({
6659
6318
  actionButtons = [],
6660
6319
  extraButtons = []
6661
6320
  }) {
6662
- const [minWidth, setMinWidth] = o.useState(0);
6663
- o.useEffect(() => {
6321
+ const [minWidth, setMinWidth] = React.useState(0);
6322
+ React.useEffect(() => {
6664
6323
  let _minWidth = minWidth;
6665
6324
  actionButtons.forEach((_, i) => {
6666
6325
  const _btn = document.getElementById(`header-btn-${i}`);
@@ -6748,7 +6407,7 @@ const CustomSelect = ({
6748
6407
  filters,
6749
6408
  config = {}
6750
6409
  }) => {
6751
- const filteredOptions = o.useMemo(() => {
6410
+ const filteredOptions = React.useMemo(() => {
6752
6411
  if (typeof config.filterOptions === 'function') {
6753
6412
  return options.filter(option => config.filterOptions({
6754
6413
  option,
@@ -6757,7 +6416,7 @@ const CustomSelect = ({
6757
6416
  }
6758
6417
  return options;
6759
6418
  }, [config, filters, options]);
6760
- o.useEffect(() => {
6419
+ React.useEffect(() => {
6761
6420
  if (value) {
6762
6421
  filteredOptions.find(o => o.value === value);
6763
6422
  }
@@ -7119,21 +6778,21 @@ const AjaxSelect = ({
7119
6778
  placeholder = "",
7120
6779
  apiUrl
7121
6780
  }) => {
7122
- const [model, setModel] = o.useState([]);
7123
- const [initFetch, setInitFetch] = o.useState(false);
7124
- const filterValues = o.useMemo(() => typeof config.filters === "function" ? config.filters(filters) : {}, [config, filters]);
7125
- const [lastFilterValues, setLastFilterValues] = o.useState(filterValues);
6781
+ const [model, setModel] = React.useState([]);
6782
+ const [initFetch, setInitFetch] = React.useState(false);
6783
+ const filterValues = React.useMemo(() => typeof config.filters === "function" ? config.filters(filters) : {}, [config, filters]);
6784
+ const [lastFilterValues, setLastFilterValues] = React.useState(filterValues);
7126
6785
  const isFilter = config?.isOnFilter || false;
7127
- const disabled = o.useMemo(() => typeof config.disabled === "function" ? config.disabled(filters) : true, [config, filters]);
7128
- const value = o.useMemo(() => filters[k] || null, [k, filters]);
7129
- const label = o.useMemo(() => {
6786
+ const disabled = React.useMemo(() => typeof config.disabled === "function" ? config.disabled(filters) : true, [config, filters]);
6787
+ const value = React.useMemo(() => filters[k] || null, [k, filters]);
6788
+ const label = React.useMemo(() => {
7130
6789
  const v = model.find(m => m.value === value);
7131
6790
  if (v) {
7132
6791
  return v.label;
7133
6792
  }
7134
6793
  return "";
7135
6794
  }, [model, value]);
7136
- o.useEffect(() => {
6795
+ React.useEffect(() => {
7137
6796
  if (Object.keys(lastFilterValues) && !disabled) {
7138
6797
  getAjaxData({
7139
6798
  apiUrl: isFilter ? config.filtersConfig?.apiUrl : apiUrl,
@@ -7147,12 +6806,12 @@ const AjaxSelect = ({
7147
6806
  setInitFetch(true);
7148
6807
  }
7149
6808
  }, [lastFilterValues]);
7150
- o.useEffect(() => {
6809
+ React.useEffect(() => {
7151
6810
  if (!model.find(m => m.value === value) && initFetch) {
7152
6811
  setValue(undefined);
7153
6812
  }
7154
6813
  }, [model]);
7155
- o.useEffect(() => {
6814
+ React.useEffect(() => {
7156
6815
  const changedPath = Object.keys(lastFilterValues).reduce((all, key) => {
7157
6816
  const now = filterValues[key];
7158
6817
  const old = lastFilterValues[key];
@@ -7213,8 +6872,8 @@ const SelectFilters = ({
7213
6872
  type = 'default',
7214
6873
  isHeader = false
7215
6874
  }) => {
7216
- const [filters, setFilters] = o.useState(selectedFilters || {});
7217
- const [initFilters, setInitFilters] = o.useState(selectedFilters || {});
6875
+ const [filters, setFilters] = React.useState(selectedFilters || {});
6876
+ const [initFilters, setInitFilters] = React.useState(selectedFilters || {});
7218
6877
  const getClearLabel = () => {
7219
6878
  switch (type) {
7220
6879
  case 'small':
@@ -7231,7 +6890,7 @@ const SelectFilters = ({
7231
6890
  return 'Apply Filters';
7232
6891
  }
7233
6892
  };
7234
- const hasChanges = o.useMemo(() => {
6893
+ const hasChanges = React.useMemo(() => {
7235
6894
  let _hasChanges = false;
7236
6895
  const activeFiltersKeys = Object.keys(filters);
7237
6896
  if (activeFiltersKeys.length !== Object.keys(initFilters).length) {
@@ -7404,10 +7063,10 @@ const useHeader = ({
7404
7063
  isViewMode = false,
7405
7064
  filtersConfig = {}
7406
7065
  }) => {
7407
- const hasActiveFilterValues = o.useMemo(() => checkHasActiveFilterValues(filtersConfig), [filtersConfig?.filtersConfig, filtersConfig?.selectedFilters]);
7408
- const [showFilters, setShowFilters] = o.useState(() => checkHasActiveFilterValues(filtersConfig));
7066
+ const hasActiveFilterValues = React.useMemo(() => checkHasActiveFilterValues(filtersConfig), [filtersConfig?.filtersConfig, filtersConfig?.selectedFilters]);
7067
+ const [showFilters, setShowFilters] = React.useState(() => checkHasActiveFilterValues(filtersConfig));
7409
7068
  const hasFilters = filtersConfig && Object.keys(filtersConfig).length > 0;
7410
- o.useEffect(() => {
7069
+ React.useEffect(() => {
7411
7070
  if (hasActiveFilterValues) {
7412
7071
  setShowFilters(true);
7413
7072
  }
@@ -7442,14 +7101,14 @@ const useHeader = ({
7442
7101
  }];
7443
7102
  const actionButtons = onDownload && _actionButtons.length < 3 ? [..._actionButtons, ...(hasFilters ? filterButton : []), downloadButton] : [..._actionButtons, ...(hasFilters ? filterButton : [])];
7444
7103
  const extraButtons = onDownload && _actionButtons.length >= 3 ? [..._extraButtons, downloadButtonAction] : [..._extraButtons];
7445
- const mainCont = o.useRef();
7446
- const buttonCont = o.useRef();
7447
- const [mainContWidth, setMainContWidth] = o.useState(600);
7448
- const [buttonContWidth, setButtonContWidth] = o.useState(0);
7104
+ const mainCont = React.useRef();
7105
+ const buttonCont = React.useRef();
7106
+ const [mainContWidth, setMainContWidth] = React.useState(600);
7107
+ const [buttonContWidth, setButtonContWidth] = React.useState(0);
7449
7108
  const hasSupportText = !!supportText?.length;
7450
7109
  const hasTags = !!tags?.length;
7451
- const hasButtons = o.useMemo(() => !!(actionButtons?.length || extraButtons?.length), [actionButtons, extraButtons]);
7452
- o.useEffect(() => {
7110
+ const hasButtons = React.useMemo(() => !!(actionButtons?.length || extraButtons?.length), [actionButtons, extraButtons]);
7111
+ React.useEffect(() => {
7453
7112
  const mainContObserver = new ResizeObserver(entries => {
7454
7113
  const _mainEntry = entries[0];
7455
7114
  if (_mainEntry) {
@@ -7478,7 +7137,7 @@ const useHeader = ({
7478
7137
  }
7479
7138
  };
7480
7139
  }, [hasButtons, buttonCont.current]);
7481
- const maxWidth = o.useMemo(
7140
+ const maxWidth = React.useMemo(
7482
7141
  //? DONT CHANGE THE MAX TO AVOID NEGATIVE VALUES WHEN BUTTON CONT WIDTH IS 0
7483
7142
  () => mainContWidth - Math.max(0, buttonContWidth) - 24, [mainContWidth, buttonContWidth]);
7484
7143
  const renderMainCont = () => /*#__PURE__*/jsxRuntime.jsxs("div", {
@@ -7702,7 +7361,7 @@ function NotificationHistory({
7702
7361
  _fetch,
7703
7362
  total
7704
7363
  } = useNotificationsHistoryContext();
7705
- const groupped = o.useMemo(() => _notifications.reduce((all, item) => {
7364
+ const groupped = React.useMemo(() => _notifications.reduce((all, item) => {
7706
7365
  const _key = renderDateFormatted(item.createdAt, 'MMMM YYYY');
7707
7366
  if (all[_key]) {
7708
7367
  all[_key].items.push(item);
@@ -7779,7 +7438,7 @@ function Notifications({
7779
7438
  useNotificationsHistoryContext = () => {},
7780
7439
  useNotificationsContext = () => {}
7781
7440
  }) {
7782
- const [historyVisible, setHistoryVisible] = o.useState(false);
7441
+ const [historyVisible, setHistoryVisible] = React.useState(false);
7783
7442
  const {
7784
7443
  loading,
7785
7444
  _notifications,
@@ -7877,7 +7536,7 @@ function Notifications({
7877
7536
  });
7878
7537
  }
7879
7538
 
7880
- var Style$3 = dt.div`
7539
+ var Style$3 = styled__default["default"].div`
7881
7540
  &.popup {
7882
7541
  h2 {
7883
7542
  margin-bottom: 8px;
@@ -7902,7 +7561,7 @@ var Style$3 = dt.div`
7902
7561
  }
7903
7562
  `;
7904
7563
 
7905
- const Style$2 = dt.div`
7564
+ const Style$2 = styled__default["default"].div`
7906
7565
  .ant-btn {
7907
7566
  border-radius: 100px 100px 100px 0;
7908
7567
  padding: 10px;
@@ -7912,7 +7571,7 @@ const Style$2 = dt.div`
7912
7571
  font-weight: 400;
7913
7572
  width: 100%;
7914
7573
 
7915
- @media (${MOBILE_WIDTH$1}) {
7574
+ @media (${MOBILE_WIDTH}) {
7916
7575
  padding: 0.8rem 2.625rem;
7917
7576
  }
7918
7577
 
@@ -7980,8 +7639,8 @@ function LoginPopup({
7980
7639
  firebaseToken
7981
7640
  }) {
7982
7641
  const [form] = antd.Form.useForm();
7983
- const [formErrors, setFormErrors] = o.useState(null);
7984
- o.useEffect(() => {
7642
+ const [formErrors, setFormErrors] = React.useState(null);
7643
+ React.useEffect(() => {
7985
7644
  form.setFieldsValue({
7986
7645
  username: user?.email
7987
7646
  });
@@ -8207,11 +7866,11 @@ function AppLayout({
8207
7866
  // Children
8208
7867
  children
8209
7868
  }) {
8210
- const [userPreferences, setUserPreferences] = o.useState(null);
7869
+ const [userPreferences, setUserPreferences] = React.useState(null);
8211
7870
  const isAppNavigation = module === 'app';
8212
- const [drawerOpened, setDrawerOpened] = o.useState(false);
8213
- const [settingsDrawerOpened, setSettingsDrawerOpened] = o.useState(false);
8214
- const [hasPrevious, setPrevious] = o.useState(false);
7871
+ const [drawerOpened, setDrawerOpened] = React.useState(false);
7872
+ const [settingsDrawerOpened, setSettingsDrawerOpened] = React.useState(false);
7873
+ const [hasPrevious, setPrevious] = React.useState(false);
8215
7874
  const {
8216
7875
  logOutPopupVisible = false
8217
7876
  } = generalContext;
@@ -8219,7 +7878,7 @@ function AppLayout({
8219
7878
  permission: 'notifications.canView',
8220
7879
  permissions: user?.role?.permissions
8221
7880
  }) && !isAppNavigation;
8222
- o.useEffect(() => {
7881
+ React.useEffect(() => {
8223
7882
  const _fetchPreferences = async () => {
8224
7883
  try {
8225
7884
  if (getUserPreference) {
@@ -8232,7 +7891,9 @@ function AppLayout({
8232
7891
  console.log(err);
8233
7892
  }
8234
7893
  };
8235
- _fetchPreferences();
7894
+ if (!userPreferences) {
7895
+ _fetchPreferences();
7896
+ }
8236
7897
  }, [getUserPreference]);
8237
7898
  const setIsCollapse = (val = false) => {
8238
7899
  localStorage.setItem('is_collapsed', val ? 'true' : 'false');
@@ -8250,18 +7911,18 @@ function AppLayout({
8250
7911
  logout?.();
8251
7912
  };
8252
7913
  const isUserApproved = user?.modules && user?.modules[module] && user?.modules[module].status === 'approved';
8253
- o.useEffect(() => {
7914
+ React.useEffect(() => {
8254
7915
  if (localStorage.getItem('previous')) {
8255
7916
  setPrevious(true);
8256
7917
  }
8257
7918
  }, [user?.language]);
8258
- o.useEffect(() => {
7919
+ React.useEffect(() => {
8259
7920
  if (getUserOptions) {
8260
7921
  getUserOptions(user?.language);
8261
7922
  }
8262
7923
  }, [user?.language, getUserOptions]);
8263
- const collapsedAppLogo = o.useMemo(() => appLogos.collapsed, [appLogos]);
8264
- const appLogo = o.useMemo(() => {
7924
+ const collapsedAppLogo = React.useMemo(() => appLogos.collapsed, [appLogos]);
7925
+ const appLogo = React.useMemo(() => {
8265
7926
  return isCollapsed ? collapsedAppLogo : appLogos.expanded;
8266
7927
  }, [isCollapsed, collapsedAppLogo, appLogos]);
8267
7928
  const toggleSettingsDrawer = () => {
@@ -8358,7 +8019,7 @@ function AppLayout({
8358
8019
  className: "d-flex left-sidebar right-sidebar",
8359
8020
  children: [/*#__PURE__*/jsxRuntime.jsx("div", {
8360
8021
  className: "desktop",
8361
- children: isAppNavigation ? null : /*#__PURE__*/o__default["default"].createElement(isCollapsed ? icons.MenuUnfoldOutlined : icons.MenuFoldOutlined, {
8022
+ children: isAppNavigation ? null : /*#__PURE__*/React__default["default"].createElement(isCollapsed ? icons.MenuUnfoldOutlined : icons.MenuFoldOutlined, {
8362
8023
  className: 'trigger',
8363
8024
  onClick: () => {
8364
8025
  const newValue = !isCollapsed;
@@ -8426,9 +8087,11 @@ function AppLayout({
8426
8087
  height: '30px'
8427
8088
  },
8428
8089
  defaultValue: StorageManager$1.get('datastakeLng') || 'en',
8429
- bordered: false,
8090
+ variant: "borderless",
8430
8091
  onChange: lng => updateLanguage?.(lng),
8431
- popupClassName: formatClassname(['dark-select-popup language-select', appName, theme.customHeaderColor && 'custom']),
8092
+ classNames: {
8093
+ popup: formatClassname(['dark-select-popup language-select', appName, theme.customHeaderColor && 'custom'])
8094
+ },
8432
8095
  children: languageConfig.map(lang => /*#__PURE__*/jsxRuntime.jsx(antd.Select.Option, {
8433
8096
  value: lang.value,
8434
8097
  children: /*#__PURE__*/jsxRuntime.jsxs("div", {
@@ -8511,7 +8174,7 @@ function AppLayout({
8511
8174
  }
8512
8175
 
8513
8176
  // Global styles for portaled elements (dropdowns, modals, etc.)
8514
- ft`
8177
+ styled.createGlobalStyle`
8515
8178
  .language-select-popup {
8516
8179
  .ant-select-dropdown {
8517
8180
  padding: 4px;
@@ -8565,7 +8228,7 @@ ft`
8565
8228
  }
8566
8229
  }
8567
8230
  `;
8568
- const style = dt.div`
8231
+ const style = styled__default["default"].div`
8569
8232
  font-family: Outfit;
8570
8233
 
8571
8234
  .btns {
@@ -8582,7 +8245,7 @@ const style = dt.div`
8582
8245
  width: 85vw;
8583
8246
  }
8584
8247
 
8585
- @media (${TABLET_WIDTH$1}) {
8248
+ @media (${TABLET_WIDTH}) {
8586
8249
  width: calc(100vw - 4.6rem);
8587
8250
  }
8588
8251
  }
@@ -8609,11 +8272,11 @@ const style = dt.div`
8609
8272
  display: flex;
8610
8273
  align-items: center;
8611
8274
 
8612
- @media (${TABLET_WIDTH$1}) {
8275
+ @media (${TABLET_WIDTH}) {
8613
8276
  height: 72px;
8614
8277
  }
8615
8278
 
8616
- @media (${MOBILE_WIDTH$1}) {
8279
+ @media (${MOBILE_WIDTH}) {
8617
8280
  height: 64px;
8618
8281
  }
8619
8282
 
@@ -8629,11 +8292,11 @@ const style = dt.div`
8629
8292
  padding: 0 32px;
8630
8293
  }
8631
8294
 
8632
- @media (${TABLET_WIDTH$1}) {
8295
+ @media (${TABLET_WIDTH}) {
8633
8296
  padding: 0 24px;
8634
8297
  }
8635
8298
 
8636
- @media (${MOBILE_WIDTH$1}) {
8299
+ @media (${MOBILE_WIDTH}) {
8637
8300
  padding: 0 16px;
8638
8301
  }
8639
8302
 
@@ -8648,7 +8311,7 @@ const style = dt.div`
8648
8311
  width: auto;
8649
8312
  object-fit: contain;
8650
8313
 
8651
- @media (${MOBILE_WIDTH$1}) {
8314
+ @media (${MOBILE_WIDTH}) {
8652
8315
  height: 32px;
8653
8316
  }
8654
8317
  }
@@ -8659,7 +8322,7 @@ const style = dt.div`
8659
8322
  width: auto;
8660
8323
  object-fit: contain;
8661
8324
 
8662
- @media (${MOBILE_WIDTH$1}) {
8325
+ @media (${MOBILE_WIDTH}) {
8663
8326
  height: 32px;
8664
8327
  }
8665
8328
  }
@@ -8721,7 +8384,7 @@ const style = dt.div`
8721
8384
  text-align: center;
8722
8385
  width: 70px;
8723
8386
 
8724
- @media (${MOBILE_WIDTH$1}) {
8387
+ @media (${MOBILE_WIDTH}) {
8725
8388
  padding: 3px 0;
8726
8389
  }
8727
8390
  }
@@ -8746,7 +8409,7 @@ const style = dt.div`
8746
8409
  display: none;
8747
8410
  }
8748
8411
 
8749
- @media (${MOBILE_WIDTH$1}) {
8412
+ @media (${MOBILE_WIDTH}) {
8750
8413
  &.mobile {
8751
8414
  display: flex;
8752
8415
  }
@@ -8784,13 +8447,7 @@ const languages = [{
8784
8447
  label: '🇪🇸 ES'
8785
8448
  }];
8786
8449
 
8787
- const MOBILE_W = 850;
8788
- const TABLET_W = 1280;
8789
-
8790
- const MOBILE_WIDTH = `max-width: ${MOBILE_W}px`;
8791
- const TABLET_WIDTH = `max-width: ${TABLET_W}px`;
8792
-
8793
- const Style$1 = dt.div`
8450
+ const Style$1 = styled__default["default"].div`
8794
8451
  display: flex;
8795
8452
  flex-direction: column;
8796
8453
  justify-content: center;
@@ -8928,7 +8585,7 @@ function useOutsideAlerter({
8928
8585
  secondRef,
8929
8586
  onOutside = () => {}
8930
8587
  }) {
8931
- o.useEffect(() => {
8588
+ React.useEffect(() => {
8932
8589
  function handleClickOutside(event) {
8933
8590
  if (ref.current && !ref.current.contains(event.target) && secondRef.current && !secondRef.current.contains(event.target)) {
8934
8591
  onOutside();
@@ -8948,7 +8605,7 @@ const Options = ({
8948
8605
  toggled = false,
8949
8606
  secondRef = {}
8950
8607
  }) => {
8951
- const ref = o.useRef();
8608
+ const ref = React.useRef();
8952
8609
  useOutsideAlerter({
8953
8610
  ref,
8954
8611
  secondRef,
@@ -8971,14 +8628,14 @@ const Select = ({
8971
8628
  defaultValue = '',
8972
8629
  onChange = () => {}
8973
8630
  }) => {
8974
- const ref = o.useRef();
8975
- const [value, setValue] = o.useState(defaultValue);
8976
- const [toggled, setToggled] = o.useState(false);
8977
- const [visible, setVisible] = o.useState(false);
8978
- o.useEffect(() => {
8631
+ const ref = React.useRef();
8632
+ const [value, setValue] = React.useState(defaultValue);
8633
+ const [toggled, setToggled] = React.useState(false);
8634
+ const [visible, setVisible] = React.useState(false);
8635
+ React.useEffect(() => {
8979
8636
  setValue(defaultValue);
8980
8637
  }, [defaultValue]);
8981
- const valueLabel = o.useMemo(() => {
8638
+ const valueLabel = React.useMemo(() => {
8982
8639
  if (value === 'en') {
8983
8640
  return /*#__PURE__*/jsxRuntime.jsxs("div", {
8984
8641
  className: "country-cont flex-r",
@@ -9029,7 +8686,7 @@ const Select = ({
9029
8686
  })]
9030
8687
  });
9031
8688
  }, [values, value]);
9032
- o.useEffect(() => {
8689
+ React.useEffect(() => {
9033
8690
  if (toggled) {
9034
8691
  setVisible(true);
9035
8692
  } else {
@@ -9147,7 +8804,7 @@ const AuthNavbar = ({
9147
8804
  });
9148
8805
  };
9149
8806
 
9150
- const Style = dt.div`
8807
+ const Style = styled__default["default"].div`
9151
8808
  .errors-cont {
9152
8809
  margin-top: var(--size-lg);
9153
8810