enjanga-components-library 1.0.19 → 1.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -4,9 +4,19 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
5
  var __getProtoOf = Object.getPrototypeOf;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __commonJS = (cb, mod) => function __require() {
7
+ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
8
+ get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
9
+ }) : x)(function(x) {
10
+ if (typeof require !== "undefined") return require.apply(this, arguments);
11
+ throw Error('Dynamic require of "' + x + '" is not supported');
12
+ });
13
+ var __commonJS = (cb, mod) => function __require2() {
8
14
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
9
15
  };
16
+ var __export = (target, all) => {
17
+ for (var name in all)
18
+ __defProp(target, name, { get: all[name], enumerable: true });
19
+ };
10
20
  var __copyProps = (to, from, except, desc) => {
11
21
  if (from && typeof from === "object" || typeof from === "function") {
12
22
  for (let key of __getOwnPropNames(from))
@@ -15,6 +25,7 @@ var __copyProps = (to, from, except, desc) => {
15
25
  }
16
26
  return to;
17
27
  };
28
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
18
29
  var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
19
30
  // If the importer is in node compatibility mode or this is not an ESM
20
31
  // file that has been converted to a CommonJS file using a Babel-
@@ -865,286 +876,6 @@ var require_parser = __commonJS({
865
876
  }
866
877
  });
867
878
 
868
- // node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js
869
- var require_react_is_production_min = __commonJS({
870
- "node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js"(exports) {
871
- "use strict";
872
- var b = "function" === typeof Symbol && Symbol.for;
873
- var c = b ? Symbol.for("react.element") : 60103;
874
- var d = b ? Symbol.for("react.portal") : 60106;
875
- var e = b ? Symbol.for("react.fragment") : 60107;
876
- var f = b ? Symbol.for("react.strict_mode") : 60108;
877
- var g = b ? Symbol.for("react.profiler") : 60114;
878
- var h = b ? Symbol.for("react.provider") : 60109;
879
- var k = b ? Symbol.for("react.context") : 60110;
880
- var l = b ? Symbol.for("react.async_mode") : 60111;
881
- var m = b ? Symbol.for("react.concurrent_mode") : 60111;
882
- var n = b ? Symbol.for("react.forward_ref") : 60112;
883
- var p = b ? Symbol.for("react.suspense") : 60113;
884
- var q = b ? Symbol.for("react.suspense_list") : 60120;
885
- var r = b ? Symbol.for("react.memo") : 60115;
886
- var t = b ? Symbol.for("react.lazy") : 60116;
887
- var v = b ? Symbol.for("react.block") : 60121;
888
- var w = b ? Symbol.for("react.fundamental") : 60117;
889
- var x = b ? Symbol.for("react.responder") : 60118;
890
- var y = b ? Symbol.for("react.scope") : 60119;
891
- function z(a) {
892
- if ("object" === typeof a && null !== a) {
893
- var u = a.$$typeof;
894
- switch (u) {
895
- case c:
896
- switch (a = a.type, a) {
897
- case l:
898
- case m:
899
- case e:
900
- case g:
901
- case f:
902
- case p:
903
- return a;
904
- default:
905
- switch (a = a && a.$$typeof, a) {
906
- case k:
907
- case n:
908
- case t:
909
- case r:
910
- case h:
911
- return a;
912
- default:
913
- return u;
914
- }
915
- }
916
- case d:
917
- return u;
918
- }
919
- }
920
- }
921
- function A(a) {
922
- return z(a) === m;
923
- }
924
- exports.AsyncMode = l;
925
- exports.ConcurrentMode = m;
926
- exports.ContextConsumer = k;
927
- exports.ContextProvider = h;
928
- exports.Element = c;
929
- exports.ForwardRef = n;
930
- exports.Fragment = e;
931
- exports.Lazy = t;
932
- exports.Memo = r;
933
- exports.Portal = d;
934
- exports.Profiler = g;
935
- exports.StrictMode = f;
936
- exports.Suspense = p;
937
- exports.isAsyncMode = function(a) {
938
- return A(a) || z(a) === l;
939
- };
940
- exports.isConcurrentMode = A;
941
- exports.isContextConsumer = function(a) {
942
- return z(a) === k;
943
- };
944
- exports.isContextProvider = function(a) {
945
- return z(a) === h;
946
- };
947
- exports.isElement = function(a) {
948
- return "object" === typeof a && null !== a && a.$$typeof === c;
949
- };
950
- exports.isForwardRef = function(a) {
951
- return z(a) === n;
952
- };
953
- exports.isFragment = function(a) {
954
- return z(a) === e;
955
- };
956
- exports.isLazy = function(a) {
957
- return z(a) === t;
958
- };
959
- exports.isMemo = function(a) {
960
- return z(a) === r;
961
- };
962
- exports.isPortal = function(a) {
963
- return z(a) === d;
964
- };
965
- exports.isProfiler = function(a) {
966
- return z(a) === g;
967
- };
968
- exports.isStrictMode = function(a) {
969
- return z(a) === f;
970
- };
971
- exports.isSuspense = function(a) {
972
- return z(a) === p;
973
- };
974
- exports.isValidElementType = function(a) {
975
- return "string" === typeof a || "function" === typeof a || a === e || a === m || a === g || a === f || a === p || a === q || "object" === typeof a && null !== a && (a.$$typeof === t || a.$$typeof === r || a.$$typeof === h || a.$$typeof === k || a.$$typeof === n || a.$$typeof === w || a.$$typeof === x || a.$$typeof === y || a.$$typeof === v);
976
- };
977
- exports.typeOf = z;
978
- }
979
- });
980
-
981
- // node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js
982
- var require_react_is_development = __commonJS({
983
- "node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js"(exports) {
984
- "use strict";
985
- if (process.env.NODE_ENV !== "production") {
986
- (function() {
987
- "use strict";
988
- var hasSymbol = typeof Symbol === "function" && Symbol.for;
989
- var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for("react.element") : 60103;
990
- var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for("react.portal") : 60106;
991
- var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for("react.fragment") : 60107;
992
- var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for("react.strict_mode") : 60108;
993
- var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for("react.profiler") : 60114;
994
- var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for("react.provider") : 60109;
995
- var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for("react.context") : 60110;
996
- var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for("react.async_mode") : 60111;
997
- var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for("react.concurrent_mode") : 60111;
998
- var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for("react.forward_ref") : 60112;
999
- var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for("react.suspense") : 60113;
1000
- var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for("react.suspense_list") : 60120;
1001
- var REACT_MEMO_TYPE = hasSymbol ? Symbol.for("react.memo") : 60115;
1002
- var REACT_LAZY_TYPE = hasSymbol ? Symbol.for("react.lazy") : 60116;
1003
- var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for("react.block") : 60121;
1004
- var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for("react.fundamental") : 60117;
1005
- var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for("react.responder") : 60118;
1006
- var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for("react.scope") : 60119;
1007
- function isValidElementType(type) {
1008
- return typeof type === "string" || typeof type === "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
1009
- type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === "object" && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
1010
- }
1011
- function typeOf(object) {
1012
- if (typeof object === "object" && object !== null) {
1013
- var $$typeof = object.$$typeof;
1014
- switch ($$typeof) {
1015
- case REACT_ELEMENT_TYPE:
1016
- var type = object.type;
1017
- switch (type) {
1018
- case REACT_ASYNC_MODE_TYPE:
1019
- case REACT_CONCURRENT_MODE_TYPE:
1020
- case REACT_FRAGMENT_TYPE:
1021
- case REACT_PROFILER_TYPE:
1022
- case REACT_STRICT_MODE_TYPE:
1023
- case REACT_SUSPENSE_TYPE:
1024
- return type;
1025
- default:
1026
- var $$typeofType = type && type.$$typeof;
1027
- switch ($$typeofType) {
1028
- case REACT_CONTEXT_TYPE:
1029
- case REACT_FORWARD_REF_TYPE:
1030
- case REACT_LAZY_TYPE:
1031
- case REACT_MEMO_TYPE:
1032
- case REACT_PROVIDER_TYPE:
1033
- return $$typeofType;
1034
- default:
1035
- return $$typeof;
1036
- }
1037
- }
1038
- case REACT_PORTAL_TYPE:
1039
- return $$typeof;
1040
- }
1041
- }
1042
- return void 0;
1043
- }
1044
- var AsyncMode = REACT_ASYNC_MODE_TYPE;
1045
- var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
1046
- var ContextConsumer = REACT_CONTEXT_TYPE;
1047
- var ContextProvider = REACT_PROVIDER_TYPE;
1048
- var Element = REACT_ELEMENT_TYPE;
1049
- var ForwardRef = REACT_FORWARD_REF_TYPE;
1050
- var Fragment8 = REACT_FRAGMENT_TYPE;
1051
- var Lazy = REACT_LAZY_TYPE;
1052
- var Memo = REACT_MEMO_TYPE;
1053
- var Portal = REACT_PORTAL_TYPE;
1054
- var Profiler = REACT_PROFILER_TYPE;
1055
- var StrictMode = REACT_STRICT_MODE_TYPE;
1056
- var Suspense = REACT_SUSPENSE_TYPE;
1057
- var hasWarnedAboutDeprecatedIsAsyncMode = false;
1058
- function isAsyncMode(object) {
1059
- {
1060
- if (!hasWarnedAboutDeprecatedIsAsyncMode) {
1061
- hasWarnedAboutDeprecatedIsAsyncMode = true;
1062
- console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.");
1063
- }
1064
- }
1065
- return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
1066
- }
1067
- function isConcurrentMode(object) {
1068
- return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
1069
- }
1070
- function isContextConsumer(object) {
1071
- return typeOf(object) === REACT_CONTEXT_TYPE;
1072
- }
1073
- function isContextProvider(object) {
1074
- return typeOf(object) === REACT_PROVIDER_TYPE;
1075
- }
1076
- function isElement(object) {
1077
- return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
1078
- }
1079
- function isForwardRef(object) {
1080
- return typeOf(object) === REACT_FORWARD_REF_TYPE;
1081
- }
1082
- function isFragment(object) {
1083
- return typeOf(object) === REACT_FRAGMENT_TYPE;
1084
- }
1085
- function isLazy(object) {
1086
- return typeOf(object) === REACT_LAZY_TYPE;
1087
- }
1088
- function isMemo(object) {
1089
- return typeOf(object) === REACT_MEMO_TYPE;
1090
- }
1091
- function isPortal(object) {
1092
- return typeOf(object) === REACT_PORTAL_TYPE;
1093
- }
1094
- function isProfiler(object) {
1095
- return typeOf(object) === REACT_PROFILER_TYPE;
1096
- }
1097
- function isStrictMode(object) {
1098
- return typeOf(object) === REACT_STRICT_MODE_TYPE;
1099
- }
1100
- function isSuspense(object) {
1101
- return typeOf(object) === REACT_SUSPENSE_TYPE;
1102
- }
1103
- exports.AsyncMode = AsyncMode;
1104
- exports.ConcurrentMode = ConcurrentMode;
1105
- exports.ContextConsumer = ContextConsumer;
1106
- exports.ContextProvider = ContextProvider;
1107
- exports.Element = Element;
1108
- exports.ForwardRef = ForwardRef;
1109
- exports.Fragment = Fragment8;
1110
- exports.Lazy = Lazy;
1111
- exports.Memo = Memo;
1112
- exports.Portal = Portal;
1113
- exports.Profiler = Profiler;
1114
- exports.StrictMode = StrictMode;
1115
- exports.Suspense = Suspense;
1116
- exports.isAsyncMode = isAsyncMode;
1117
- exports.isConcurrentMode = isConcurrentMode;
1118
- exports.isContextConsumer = isContextConsumer;
1119
- exports.isContextProvider = isContextProvider;
1120
- exports.isElement = isElement;
1121
- exports.isForwardRef = isForwardRef;
1122
- exports.isFragment = isFragment;
1123
- exports.isLazy = isLazy;
1124
- exports.isMemo = isMemo;
1125
- exports.isPortal = isPortal;
1126
- exports.isProfiler = isProfiler;
1127
- exports.isStrictMode = isStrictMode;
1128
- exports.isSuspense = isSuspense;
1129
- exports.isValidElementType = isValidElementType;
1130
- exports.typeOf = typeOf;
1131
- })();
1132
- }
1133
- }
1134
- });
1135
-
1136
- // node_modules/prop-types/node_modules/react-is/index.js
1137
- var require_react_is = __commonJS({
1138
- "node_modules/prop-types/node_modules/react-is/index.js"(exports, module) {
1139
- "use strict";
1140
- if (process.env.NODE_ENV === "production") {
1141
- module.exports = require_react_is_production_min();
1142
- } else {
1143
- module.exports = require_react_is_development();
1144
- }
1145
- }
1146
- });
1147
-
1148
879
  // node_modules/object-assign/index.js
1149
880
  var require_object_assign = __commonJS({
1150
881
  "node_modules/object-assign/index.js"(exports, module) {
@@ -1302,7 +1033,7 @@ var require_checkPropTypes = __commonJS({
1302
1033
  var require_factoryWithTypeCheckers = __commonJS({
1303
1034
  "node_modules/prop-types/factoryWithTypeCheckers.js"(exports, module) {
1304
1035
  "use strict";
1305
- var ReactIs = require_react_is();
1036
+ var ReactIs = __require("react-is");
1306
1037
  var assign = require_object_assign();
1307
1038
  var ReactPropTypesSecret = require_ReactPropTypesSecret();
1308
1039
  var has = require_has();
@@ -1802,7 +1533,7 @@ var require_prop_types = __commonJS({
1802
1533
  "node_modules/prop-types/index.js"(exports, module) {
1803
1534
  "use strict";
1804
1535
  if (process.env.NODE_ENV !== "production") {
1805
- ReactIs = require_react_is();
1536
+ ReactIs = __require("react-is");
1806
1537
  throwOnDirectAccess = true;
1807
1538
  module.exports = require_factoryWithTypeCheckers()(ReactIs.isElement, throwOnDirectAccess);
1808
1539
  } else {
@@ -1824,7 +1555,19 @@ import {
1824
1555
  SideNav,
1825
1556
  HeaderSideNavItems
1826
1557
  } from "@carbon/react";
1827
- import { Link } from "enjanga-core-setup/next";
1558
+
1559
+ // node_modules/enjanga-core-setup/dist/next.mjs
1560
+ var next_exports = {};
1561
+ __export(next_exports, {
1562
+ Image: () => default3,
1563
+ Link: () => default2
1564
+ });
1565
+ __reExport(next_exports, navigation_star);
1566
+ import { default as default2 } from "next/link";
1567
+ import { default as default3 } from "next/image";
1568
+ import * as navigation_star from "next/navigation";
1569
+
1570
+ // src/components/AppHeader/AppHeader.tsx
1828
1571
  import { jsx, jsxs } from "react/jsx-runtime";
1829
1572
  var AppHeader = ({
1830
1573
  brand,
@@ -1847,7 +1590,7 @@ var AppHeader = ({
1847
1590
  isActive: isSideNavExpanded
1848
1591
  }
1849
1592
  ),
1850
- /* @__PURE__ */ jsx(HeaderName, { prefix: "", as: Link, href: brandRoute, passHref: true, children: brand }),
1593
+ /* @__PURE__ */ jsx(HeaderName, { prefix: "", as: default2, href: brandRoute, passHref: true, children: brand }),
1851
1594
  /* @__PURE__ */ jsx(HeaderNavigation, { "aria-label": brandLabel, children: navigation }),
1852
1595
  /* @__PURE__ */ jsx(
1853
1596
  SideNav,
@@ -23432,183 +23175,3228 @@ if (process.env.NODE_ENV !== "production") {
23432
23175
  IntentRequestInactive.propTypes = iconPropTypes;
23433
23176
  }
23434
23177
 
23435
- // node_modules/@carbon/icons-react/es/index.js
23436
- import "react";
23437
-
23438
- // src/components/ContactModal/ContactModal.tsx
23439
- import {
23440
- Modal,
23441
- TextInput,
23442
- TextArea,
23443
- Form,
23444
- FormGroup,
23445
- Stack
23446
- } from "@carbon/react";
23447
- import { jsx as jsx11, jsxs as jsxs5 } from "react/jsx-runtime";
23448
- var ContactModal = ({
23449
- isOpen,
23450
- setIsOpen,
23451
- modalLabel,
23452
- modalHeading,
23453
- modalSubHeading,
23454
- modalPrimaryButtonText,
23455
- modalSecondaryButtonText
23456
- }) => {
23457
- return /* @__PURE__ */ jsxs5(
23458
- Modal,
23459
- {
23460
- open: isOpen,
23461
- modalLabel,
23462
- modalHeading,
23463
- primaryButtonText: modalPrimaryButtonText,
23464
- secondaryButtonText: modalSecondaryButtonText,
23465
- onRequestClose: () => setIsOpen(false),
23466
- onRequestSubmit: () => {
23467
- console.log("Form submitted");
23468
- setIsOpen(false);
23469
- },
23470
- children: [
23471
- /* @__PURE__ */ jsx11("p", { style: { marginBottom: "1rem" }, children: modalSubHeading }),
23472
- /* @__PURE__ */ jsx11(Form, { children: /* @__PURE__ */ jsxs5(Stack, { gap: 5, children: [
23473
- /* @__PURE__ */ jsx11(FormGroup, { legendText: "", children: /* @__PURE__ */ jsx11(
23474
- TextInput,
23475
- {
23476
- id: "name",
23477
- labelText: "Name",
23478
- placeholder: "Enter your name",
23479
- required: true
23480
- }
23481
- ) }),
23482
- /* @__PURE__ */ jsx11(FormGroup, { legendText: "", children: /* @__PURE__ */ jsx11(
23483
- TextInput,
23484
- {
23485
- id: "email",
23486
- labelText: "Email",
23487
- placeholder: "Enter your email",
23488
- required: true,
23489
- type: "email"
23490
- }
23491
- ) }),
23492
- /* @__PURE__ */ jsx11(FormGroup, { legendText: "", children: /* @__PURE__ */ jsx11(
23493
- TextArea,
23494
- {
23495
- id: "message",
23496
- labelText: "Message",
23497
- placeholder: "Enter your message",
23498
- required: true,
23499
- rows: 4
23500
- }
23501
- ) })
23502
- ] }) })
23503
- ]
23504
- }
23505
- );
23506
- };
23507
- var ContactModal_default = ContactModal;
23508
-
23509
- // src/components/ContactButton/ContactButton.tsx
23510
- import { Fragment as Fragment3, jsx as jsx12, jsxs as jsxs6 } from "react/jsx-runtime";
23511
- var iconComponents = {
23512
- Email,
23513
- Chat,
23514
- CustomerService,
23515
- CommunicationUnified
23516
- };
23517
- var ContactButton = ({
23518
- btnText = "Contact",
23519
- btnIcon = "Email",
23520
- btnKind = "primary",
23521
- btnSize = "md",
23522
- modalLabel = "Contact",
23523
- modalHeading = "Hello",
23524
- modalSubHeading = "...",
23525
- modalPrimaryButtonText = "Submit",
23526
- modalSecondaryButtonText = "Cancel"
23527
- }) => {
23528
- const [isOpen, setIsOpen] = useState2(false);
23529
- const IconComponent = iconComponents[btnIcon];
23530
- return /* @__PURE__ */ jsxs6(Fragment3, { children: [
23531
- /* @__PURE__ */ jsx12(
23532
- Button,
23533
- {
23534
- renderIcon: IconComponent,
23535
- kind: btnKind,
23536
- size: btnSize,
23537
- onClick: () => setIsOpen(true),
23538
- children: btnText
23539
- }
23540
- ),
23541
- /* @__PURE__ */ jsx12(
23542
- ContactModal_default,
23543
- {
23544
- isOpen,
23545
- setIsOpen,
23546
- modalLabel,
23547
- modalHeading,
23548
- modalSubHeading,
23549
- modalPrimaryButtonText,
23550
- modalSecondaryButtonText
23551
- }
23552
- )
23553
- ] });
23554
- };
23555
- var ContactButton_default = ContactButton;
23556
-
23557
- // src/components/CustomPictogram/CustomPictogram.tsx
23558
- import clsx6 from "clsx";
23559
-
23560
- // node_modules/@carbon/pictograms-react/es/Icon.js
23561
- var import_prop_types3 = __toESM(require_prop_types());
23178
+ // node_modules/@carbon/icons-react/es/generated/bucket-14.js
23562
23179
  import React9 from "react";
23563
- var Icon3 = /* @__PURE__ */ React9.forwardRef(function Icon4({
23564
- className,
23180
+ var _path279;
23181
+ var _path280;
23182
+ var _path320;
23183
+ var _path420;
23184
+ var _path520;
23185
+ var _path620;
23186
+ var _path720;
23187
+ var _path820;
23188
+ var _path920;
23189
+ var _path07;
23190
+ var _path1120;
23191
+ var _path1020;
23192
+ var _path1121;
23193
+ var _path1220;
23194
+ var _path1320;
23195
+ var _path1420;
23196
+ var _path1520;
23197
+ var _path1620;
23198
+ var _path1720;
23199
+ var _path1819;
23200
+ var _path1919;
23201
+ var _path2017;
23202
+ var _path2116;
23203
+ var _path2214;
23204
+ var _path2314;
23205
+ var _path2414;
23206
+ var _path2514;
23207
+ var _path2613;
23208
+ var _path2710;
23209
+ var _path287;
23210
+ var _path297;
23211
+ var _path307;
23212
+ var _path3110;
23213
+ var _circle60;
23214
+ var _circle217;
23215
+ var _circle316;
23216
+ var _path327;
23217
+ var _path337;
23218
+ var _circle416;
23219
+ var _circle511;
23220
+ var _circle67;
23221
+ var _path347;
23222
+ var _path357;
23223
+ var _path367;
23224
+ var _path377;
23225
+ var _path387;
23226
+ var _path397;
23227
+ var _path407;
23228
+ var _path4110;
23229
+ var _path427;
23230
+ var _circle77;
23231
+ var _circle87;
23232
+ var _circle96;
23233
+ var _circle06;
23234
+ var _circle118;
23235
+ var _path437;
23236
+ var _path447;
23237
+ var _path457;
23238
+ var _path467;
23239
+ var _path477;
23240
+ var _path487;
23241
+ var _path497;
23242
+ var _path507;
23243
+ var _path5110;
23244
+ var _path527;
23245
+ var _path537;
23246
+ var _path547;
23247
+ var _path557;
23248
+ var _circle106;
23249
+ var _circle119;
23250
+ var _circle126;
23251
+ var _circle136;
23252
+ var _circle146;
23253
+ var _circle156;
23254
+ var _circle166;
23255
+ var _circle176;
23256
+ var _path567;
23257
+ var _path577;
23258
+ var _path587;
23259
+ var _path597;
23260
+ var _path607;
23261
+ var _path6110;
23262
+ var _path627;
23263
+ var _path637;
23264
+ var _path647;
23265
+ var _path657;
23266
+ var _path667;
23267
+ var _path677;
23268
+ var _path687;
23269
+ var _path697;
23270
+ var _path707;
23271
+ var _circle186;
23272
+ var _path7110;
23273
+ var _path727;
23274
+ var _path737;
23275
+ var _path747;
23276
+ var _path757;
23277
+ var _path767;
23278
+ var _path777;
23279
+ var _path787;
23280
+ var _path797;
23281
+ var _path807;
23282
+ var _path8110;
23283
+ var _path827;
23284
+ var _path837;
23285
+ var _path847;
23286
+ var _path857;
23287
+ var _path867;
23288
+ var _path877;
23289
+ var _path887;
23290
+ var _path897;
23291
+ var _path907;
23292
+ var _path9110;
23293
+ var _path927;
23294
+ var _path937;
23295
+ var _path947;
23296
+ var _path957;
23297
+ var _path967;
23298
+ var _path977;
23299
+ var _path987;
23300
+ var _path997;
23301
+ var _path1007;
23302
+ var _circle196;
23303
+ var _path10110;
23304
+ var _path1027;
23305
+ var _path1037;
23306
+ var _path1047;
23307
+ var _path1057;
23308
+ var _path1067;
23309
+ var _path1077;
23310
+ var _circle206;
23311
+ var _path1087;
23312
+ var _path1097;
23313
+ var _path11010;
23314
+ var _path11110;
23315
+ var _path1127;
23316
+ var _path1137;
23317
+ var _path1147;
23318
+ var _path1157;
23319
+ var _path1167;
23320
+ var _path1177;
23321
+ var _path1187;
23322
+ var _path1197;
23323
+ var _path1207;
23324
+ var _path12110;
23325
+ var _path1227;
23326
+ var _path1237;
23327
+ var _path1247;
23328
+ var _path1257;
23329
+ var _path1267;
23330
+ var _path1277;
23331
+ var _path1287;
23332
+ var _path1297;
23333
+ var _path1307;
23334
+ var _path13110;
23335
+ var _path1327;
23336
+ var _path1337;
23337
+ var _path1347;
23338
+ var _path1357;
23339
+ var _path1367;
23340
+ var _path1377;
23341
+ var _path1387;
23342
+ var _path1397;
23343
+ var _path1407;
23344
+ var _path14110;
23345
+ var _path1427;
23346
+ var _path1437;
23347
+ var _path1447;
23348
+ var _path1457;
23349
+ var _path1467;
23350
+ var _path1477;
23351
+ var _path1487;
23352
+ var _path1497;
23353
+ var _path1507;
23354
+ var _path15110;
23355
+ var _path1527;
23356
+ var _path1537;
23357
+ var _path1547;
23358
+ var _path1557;
23359
+ var _path1567;
23360
+ var _path1577;
23361
+ var _path1587;
23362
+ var _circle218;
23363
+ var _path1597;
23364
+ var _path1607;
23365
+ var _path16110;
23366
+ var _path1627;
23367
+ var _path1637;
23368
+ var _path1647;
23369
+ var _path1657;
23370
+ var _path1667;
23371
+ var _path1677;
23372
+ var _path1687;
23373
+ var _path1697;
23374
+ var _path1707;
23375
+ var _path17110;
23376
+ var _path1727;
23377
+ var _path1737;
23378
+ var _path1747;
23379
+ var _path1757;
23380
+ var _path1767;
23381
+ var _path1777;
23382
+ var _path1787;
23383
+ var _path1796;
23384
+ var _path1806;
23385
+ var _path18110;
23386
+ var _path1826;
23387
+ var _path1836;
23388
+ var _path1846;
23389
+ var _path1856;
23390
+ var _path1866;
23391
+ var _path1876;
23392
+ var _path1886;
23393
+ var _path1896;
23394
+ var _path1906;
23395
+ var _path19110;
23396
+ var _path1926;
23397
+ var _path1936;
23398
+ var _path1946;
23399
+ var _path1956;
23400
+ var _path1966;
23401
+ var _path1976;
23402
+ var _path1986;
23403
+ var _circle226;
23404
+ var _path1996;
23405
+ var _path2006;
23406
+ var _path2018;
23407
+ var _path2026;
23408
+ var _path2035;
23409
+ var _path2045;
23410
+ var _path2055;
23411
+ var _path2065;
23412
+ var PowerVirtualServerDisasterRecoveryAutomation = /* @__PURE__ */ React9.forwardRef(function PowerVirtualServerDisasterRecoveryAutomation2({
23565
23413
  children,
23566
- tabIndex,
23567
- xmlns = "http://www.w3.org/2000/svg",
23568
- preserveAspectRatio = "xMidYMid meet",
23414
+ size = 16,
23569
23415
  ...rest
23570
23416
  }, ref) {
23571
- const {
23572
- tabindex,
23573
- ...attrs
23574
- } = getAttributes({
23575
- ...rest,
23576
- tabindex: tabIndex
23577
- });
23578
- const props = attrs;
23579
- if (className) {
23580
- props.className = className;
23581
- }
23582
- if (tabindex !== void 0 && tabindex !== null) {
23583
- if (typeof tabindex === "number") {
23584
- props.tabIndex = tabindex;
23585
- } else {
23586
- props.tabIndex = Number(tabIndex);
23587
- }
23588
- }
23589
- if (ref) {
23590
- props.ref = ref;
23591
- }
23592
- if (xmlns) {
23593
- props.xmlns = xmlns;
23594
- }
23595
- if (preserveAspectRatio) {
23596
- props.preserveAspectRatio = preserveAspectRatio;
23597
- }
23598
- return /* @__PURE__ */ React9.createElement("svg", props, children);
23417
+ return /* @__PURE__ */ React9.createElement(Icon, {
23418
+ width: size,
23419
+ height: size,
23420
+ ref,
23421
+ xmlns: "http://www.w3.org/2000/svg",
23422
+ viewBox: "0 0 32 32",
23423
+ fill: "currentColor",
23424
+ ...rest
23425
+ }, _path279 || (_path279 = /* @__PURE__ */ React9.createElement("path", {
23426
+ d: "M9,16h0c0,.3369.024.6749.0714,1.006l-1.9795.2832c-.061-.4238-.0919-.858-.0919-1.2892,0-4.9629,4.0376-9,9-9,2.0435,0,4.0444.7041,5.6348,1.9814l-1.2529,1.5596c-1.2544-1.0083-2.7696-1.541-4.3819-1.541-3.8599,0-6.9999,3.1401-6.9999,7.0001h-.0001ZM8,20c0,.5522.4478,1,1,1s1-.4478,1-1-.4478-1-1-1-1,.4478-1,1ZM16,4c6.6166,0,12,5.3833,12,12h2c0-7.7197-6.2803-14-14-14-1.6431,0-3.2529.2822-4.7846.8389l.6836,1.8799c1.3115-.4771,2.6913-.7188,4.101-.7188ZM22,12c0,.5522.4478,1,1,1s1-.4478,1-1-.4478-1-1-1-1,.4478-1,1ZM9,6c.5522,0,1-.4478,1-1s-.4478-1-1-1-1,.4478-1,1,.4478,1,1,1ZM4,16h0c0-3.2051,1.2481-6.2188,3.5147-8.4854l-1.4141-1.4141c-2.6445,2.6445-4.1006,6.1603-4.1006,9.8995,0,7.7197,6.2803,14,14,14v-2c-6.6166,0-12-5.3832-12-12ZM28.5,25.5c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-.4617.1135-.8942.3006-1.2853l-5.5153-5.5153c-.3911.1871-.8236.3006-1.2853.3006-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3c0,.4617-.1135.8942-.3006,1.2853l5.5153,5.5153c.3911-.1871.8236-.3006,1.2853-.3006,1.6543,0,3,1.3456,3,2.9999h0ZM16,17c.5513,0,1-.4487,1-1s-.4487-1-1-1-1,.4487-1,1,.4487,1,1,1ZM26.5,25.5c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1Z"
23427
+ })), children);
23599
23428
  });
23600
- Icon3.displayName = "Icon";
23601
- Icon3.propTypes = {
23602
- "aria-hidden": import_prop_types3.default.oneOfType([import_prop_types3.default.bool, import_prop_types3.default.oneOf(["true", "false"])]),
23603
- "aria-label": import_prop_types3.default.string,
23604
- "aria-labelledby": import_prop_types3.default.string,
23605
- children: import_prop_types3.default.node,
23606
- className: import_prop_types3.default.string,
23607
- height: import_prop_types3.default.oneOfType([import_prop_types3.default.number, import_prop_types3.default.string]),
23608
- preserveAspectRatio: import_prop_types3.default.string,
23609
- tabIndex: import_prop_types3.default.oneOfType([import_prop_types3.default.number, import_prop_types3.default.string]),
23610
- viewBox: import_prop_types3.default.string,
23611
- width: import_prop_types3.default.oneOfType([import_prop_types3.default.number, import_prop_types3.default.string]),
23429
+ if (process.env.NODE_ENV !== "production") {
23430
+ PowerVirtualServerDisasterRecoveryAutomation.propTypes = iconPropTypes;
23431
+ }
23432
+ var Ppt = /* @__PURE__ */ React9.forwardRef(function Ppt2({
23433
+ children,
23434
+ size = 16,
23435
+ ...rest
23436
+ }, ref) {
23437
+ return /* @__PURE__ */ React9.createElement(Icon, {
23438
+ width: size,
23439
+ height: size,
23440
+ ref,
23441
+ xmlns: "http://www.w3.org/2000/svg",
23442
+ viewBox: "0 0 32 32",
23443
+ fill: "currentColor",
23444
+ ...rest
23445
+ }, _path280 || (_path280 = /* @__PURE__ */ React9.createElement("path", {
23446
+ d: "M22 11L25 11 25 23 27 23 27 11 30 11 30 9 22 9 22 11zM14 23H12V9h6a2.002 2.002 0 012 2v5a2.002 2.002 0 01-2 2H14zm0-7h4V10.9985H14zM4 23H2V9H8a2.002 2.002 0 012 2v5a2.002 2.002 0 01-2 2H4zm0-7H8V10.9985H4z"
23447
+ })), children);
23448
+ });
23449
+ if (process.env.NODE_ENV !== "production") {
23450
+ Ppt.propTypes = iconPropTypes;
23451
+ }
23452
+ var PresentationFile = /* @__PURE__ */ React9.forwardRef(function PresentationFile2({
23453
+ children,
23454
+ size = 16,
23455
+ ...rest
23456
+ }, ref) {
23457
+ return /* @__PURE__ */ React9.createElement(Icon, {
23458
+ width: size,
23459
+ height: size,
23460
+ ref,
23461
+ xmlns: "http://www.w3.org/2000/svg",
23462
+ viewBox: "0 0 32 32",
23463
+ fill: "currentColor",
23464
+ ...rest
23465
+ }, _path320 || (_path320 = /* @__PURE__ */ React9.createElement("path", {
23466
+ d: "M15 10H17V18H15zM20 14H22V18H20zM10 12H12V18H10z"
23467
+ })), _path420 || (_path420 = /* @__PURE__ */ React9.createElement("path", {
23468
+ d: "M25,4H17V2H15V4H7A2,2,0,0,0,5,6V20a2,2,0,0,0,2,2h8v6H11v2H21V28H17V22h8a2,2,0,0,0,2-2V6A2,2,0,0,0,25,4Zm0,16H7V6H25Z"
23469
+ })), children);
23470
+ });
23471
+ if (process.env.NODE_ENV !== "production") {
23472
+ PresentationFile.propTypes = iconPropTypes;
23473
+ }
23474
+ var Pressure = /* @__PURE__ */ React9.forwardRef(function Pressure2({
23475
+ children,
23476
+ size = 16,
23477
+ ...rest
23478
+ }, ref) {
23479
+ return /* @__PURE__ */ React9.createElement(Icon, {
23480
+ width: size,
23481
+ height: size,
23482
+ ref,
23483
+ xmlns: "http://www.w3.org/2000/svg",
23484
+ viewBox: "0 0 32 32",
23485
+ fill: "currentColor",
23486
+ ...rest
23487
+ }, _path520 || (_path520 = /* @__PURE__ */ React9.createElement("path", {
23488
+ d: "M17.5053,16l8.1591-7.2529A1,1,0,0,0,25,7H22V2H20V9h2.37L16,14.6621,9.63,9H12V2H10V7H7a1,1,0,0,0-.6646,1.7471L14.4945,16,6.3353,23.2529A1,1,0,0,0,7,25h3v5h2V23H9.63L16,17.3379,22.37,23H20v7h2V25h3a1,1,0,0,0,.6645-1.7471Z"
23489
+ })), children);
23490
+ });
23491
+ if (process.env.NODE_ENV !== "production") {
23492
+ Pressure.propTypes = iconPropTypes;
23493
+ }
23494
+ var PressureFilled = /* @__PURE__ */ React9.forwardRef(function PressureFilled2({
23495
+ children,
23496
+ size = 16,
23497
+ ...rest
23498
+ }, ref) {
23499
+ return /* @__PURE__ */ React9.createElement(Icon, {
23500
+ width: size,
23501
+ height: size,
23502
+ ref,
23503
+ xmlns: "http://www.w3.org/2000/svg",
23504
+ viewBox: "0 0 32 32",
23505
+ fill: "currentColor",
23506
+ ...rest
23507
+ }, _path620 || (_path620 = /* @__PURE__ */ React9.createElement("path", {
23508
+ d: "M22 30H10V25H6l10-9 10 9H22zM16 16L6 7h4V2H22V7h4z"
23509
+ })), children);
23510
+ });
23511
+ if (process.env.NODE_ENV !== "production") {
23512
+ PressureFilled.propTypes = iconPropTypes;
23513
+ }
23514
+ var PreviousFilled = /* @__PURE__ */ React9.forwardRef(function PreviousFilled2({
23515
+ children,
23516
+ size = 16,
23517
+ ...rest
23518
+ }, ref) {
23519
+ return /* @__PURE__ */ React9.createElement(Icon, {
23520
+ width: size,
23521
+ height: size,
23522
+ ref,
23523
+ xmlns: "http://www.w3.org/2000/svg",
23524
+ viewBox: "0 0 32 32",
23525
+ fill: "currentColor",
23526
+ ...rest
23527
+ }, _path720 || (_path720 = /* @__PURE__ */ React9.createElement("path", {
23528
+ d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm8,15H11.85l5.58,5.5728L16,24,8,16l8-8,1.43,1.3926L11.85,15H24Z"
23529
+ })), _path820 || (_path820 = /* @__PURE__ */ React9.createElement("path", {
23530
+ fill: "none",
23531
+ d: "M16 8L17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z",
23532
+ "data-icon-path": "inner-path"
23533
+ })), children);
23534
+ });
23535
+ if (process.env.NODE_ENV !== "production") {
23536
+ PreviousFilled.propTypes = iconPropTypes;
23537
+ }
23538
+ var PreviousOutline = /* @__PURE__ */ React9.forwardRef(function PreviousOutline2({
23539
+ children,
23540
+ size = 16,
23541
+ ...rest
23542
+ }, ref) {
23543
+ return /* @__PURE__ */ React9.createElement(Icon, {
23544
+ width: size,
23545
+ height: size,
23546
+ ref,
23547
+ xmlns: "http://www.w3.org/2000/svg",
23548
+ viewBox: "0 0 32 32",
23549
+ fill: "currentColor",
23550
+ ...rest
23551
+ }, _path920 || (_path920 = /* @__PURE__ */ React9.createElement("path", {
23552
+ d: "M16 8L17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z"
23553
+ })), _path07 || (_path07 = /* @__PURE__ */ React9.createElement("path", {
23554
+ d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"
23555
+ })), children);
23556
+ });
23557
+ if (process.env.NODE_ENV !== "production") {
23558
+ PreviousOutline.propTypes = iconPropTypes;
23559
+ }
23560
+ var PricingConsumption = /* @__PURE__ */ React9.forwardRef(function PricingConsumption2({
23561
+ children,
23562
+ size = 16,
23563
+ ...rest
23564
+ }, ref) {
23565
+ return /* @__PURE__ */ React9.createElement(Icon, {
23566
+ width: size,
23567
+ height: size,
23568
+ ref,
23569
+ xmlns: "http://www.w3.org/2000/svg",
23570
+ viewBox: "0 0 32 32",
23571
+ fill: "currentColor",
23572
+ ...rest
23573
+ }, _path1120 || (_path1120 = /* @__PURE__ */ React9.createElement("path", {
23574
+ strokeWidth: "0",
23575
+ d: "M16 2v2c6.63 0 12 5.37 12 12s-5.37 12-12 12v2c7.73 0 14-6.27 14-14S23.73 2 16 2zM8.24 25.14l-1.29 1.53c1.23 1.04 2.64 1.87 4.18 2.44l.68-1.88c-1.32-.49-2.53-1.2-3.58-2.09h.01zM4.19 18l-1.97.41c.28 1.63.84 3.16 1.64 4.54l1.73-.95c-.68-1.18-1.16-2.61-1.4-4zM5.59 10l-1.73-1c-.79 1.38-1.35 2.96-1.64 4.59l1.97.35c.24-1.39.72-2.75 1.4-3.93v-.01zM11.82 4.76l-.68-1.88c-1.54.57-2.95 1.4-4.18 2.44l1.29 1.53c1.05-.89 2.26-1.6 3.58-2.09h-.01z"
23576
+ })), _path1020 || (_path1020 = /* @__PURE__ */ React9.createElement("path", {
23577
+ strokeWidth: "0",
23578
+ d: "m21,12v-2h-4v-3h-2v3h-2c-1.103,0-2,.897-2,2v3c0,1.103.897,2,2,2h6v3h-8v2h4v3h2v-3h2c1.103,0,2-.8975,2-2v-3c0-1.103-.897-2-2-2h-6v-3h8Z"
23579
+ })), children);
23580
+ });
23581
+ if (process.env.NODE_ENV !== "production") {
23582
+ PricingConsumption.propTypes = iconPropTypes;
23583
+ }
23584
+ var PricingContainer = /* @__PURE__ */ React9.forwardRef(function PricingContainer2({
23585
+ children,
23586
+ size = 16,
23587
+ ...rest
23588
+ }, ref) {
23589
+ return /* @__PURE__ */ React9.createElement(Icon, {
23590
+ width: size,
23591
+ height: size,
23592
+ ref,
23593
+ xmlns: "http://www.w3.org/2000/svg",
23594
+ viewBox: "0 0 32 32",
23595
+ fill: "currentColor",
23596
+ ...rest
23597
+ }, _path1121 || (_path1121 = /* @__PURE__ */ React9.createElement("path", {
23598
+ strokeWidth: "0",
23599
+ d: "M28 2h-5v2h5v24h-5v2h5c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM23 20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71 0-2.39 2.51-3.24 4.65-3.24 2.32 0 4.14.86 5.57 2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6 2.26-6 5.22 0 4.73 3.83 5.26 6.91 5.69 3.25.45 5.09.84 5.09 3.58 0 3.03-3.13 3.48-5 3.48-3.43 0-4.88-.96-6.22-2.63l-1.56 1.26c1.77 2.19 3.73 3.17 6.78 3.34v3.04h2v-3.04c3.73-.3 6-2.33 6-5.44z"
23600
+ })), _path1220 || (_path1220 = /* @__PURE__ */ React9.createElement("path", {
23601
+ strokeWidth: "0",
23602
+ d: "m4,4h5V2H4c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h5v-2H4V4Z"
23603
+ })), children);
23604
+ });
23605
+ if (process.env.NODE_ENV !== "production") {
23606
+ PricingContainer.propTypes = iconPropTypes;
23607
+ }
23608
+ var PricingQuickProposal = /* @__PURE__ */ React9.forwardRef(function PricingQuickProposal2({
23609
+ children,
23610
+ size = 16,
23611
+ ...rest
23612
+ }, ref) {
23613
+ return /* @__PURE__ */ React9.createElement(Icon, {
23614
+ width: size,
23615
+ height: size,
23616
+ ref,
23617
+ xmlns: "http://www.w3.org/2000/svg",
23618
+ viewBox: "0 0 32 32",
23619
+ fill: "currentColor",
23620
+ ...rest
23621
+ }, _path1320 || (_path1320 = /* @__PURE__ */ React9.createElement("path", {
23622
+ strokeWidth: "0",
23623
+ d: "M29 20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71 0-2.39 2.51-3.24 4.65-3.24 2.32 0 4.14.86 5.57 2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6 2.26-6 5.22 0 4.73 3.83 5.26 6.91 5.69 3.25.45 5.09.84 5.09 3.58 0 3.03-3.13 3.48-5 3.48-3.43 0-4.88-.96-6.22-2.63l-1.56 1.26c1.77 2.19 3.73 3.17 6.78 3.34v3.04h2v-3.04c3.73-.3 6-2.33 6-5.44zM3 11H11V13H3zM3 19H11V21H3zM5 15H13V17H5z"
23624
+ })), children);
23625
+ });
23626
+ if (process.env.NODE_ENV !== "production") {
23627
+ PricingQuickProposal.propTypes = iconPropTypes;
23628
+ }
23629
+ var PricingTailored = /* @__PURE__ */ React9.forwardRef(function PricingTailored2({
23630
+ children,
23631
+ size = 16,
23632
+ ...rest
23633
+ }, ref) {
23634
+ return /* @__PURE__ */ React9.createElement(Icon, {
23635
+ width: size,
23636
+ height: size,
23637
+ ref,
23638
+ xmlns: "http://www.w3.org/2000/svg",
23639
+ viewBox: "0 0 32 32",
23640
+ fill: "currentColor",
23641
+ ...rest
23642
+ }, _path1420 || (_path1420 = /* @__PURE__ */ React9.createElement("path", {
23643
+ strokeWidth: "0",
23644
+ d: "M27 21h-2c0-2.8226 0-7.0881-10.0903-8.0042l.1807-1.9917c11.9097 1.0811 11.9097 6.8802 11.9097 9.9958zM16.9097 20.9958c-11.9097-1.0811-11.9097-6.8802-11.9097-9.9958h2c0 2.8226 0 7.0881 10.0903 8.0042l-.1807 1.9917z"
23645
+ })), _path1520 || (_path1520 = /* @__PURE__ */ React9.createElement("path", {
23646
+ strokeWidth: "0",
23647
+ d: "m23,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"
23648
+ })), children);
23649
+ });
23650
+ if (process.env.NODE_ENV !== "production") {
23651
+ PricingTailored.propTypes = iconPropTypes;
23652
+ }
23653
+ var PricingTraditional = /* @__PURE__ */ React9.forwardRef(function PricingTraditional2({
23654
+ children,
23655
+ size = 16,
23656
+ ...rest
23657
+ }, ref) {
23658
+ return /* @__PURE__ */ React9.createElement(Icon, {
23659
+ width: size,
23660
+ height: size,
23661
+ ref,
23662
+ xmlns: "http://www.w3.org/2000/svg",
23663
+ viewBox: "0 0 32 32",
23664
+ fill: "currentColor",
23665
+ ...rest
23666
+ }, _path1620 || (_path1620 = /* @__PURE__ */ React9.createElement("path", {
23667
+ strokeWidth: "0",
23668
+ d: "m17,15.0698v-6.9536c1.6909.2793,3.084,1.1021,4.2219,2.5117l1.5562-1.2559c-1.5195-1.8823-3.4619-2.9736-5.7781-3.2759v-3.0962h-2v3.022c-3.6152.2192-6,2.2603-6,5.2202,0,4.2739,3.1265,5.1191,6,5.5586v7.1616c-2.7192-.1777-4.0186-1.1001-5.2219-2.5903l-1.5562,1.2559c1.7703,2.1934,3.7332,3.168,6.7781,3.3369v3.0352h2v-3.0449c3.7256-.3042,6-2.3271,6-5.4399,0-4.209-3.1428-5.0156-6-5.4453Zm-6-3.8276c0-2.1533,2.0293-3.0537,4-3.2134v6.7466c-2.5696-.4238-4-1.043-4-3.5332Zm6,12.71v-6.8574c2.5669.4155,4,1.0044,4,3.4204,0,2.5361-2.1902,3.2656-4,3.437Z"
23669
+ })), children);
23670
+ });
23671
+ if (process.env.NODE_ENV !== "production") {
23672
+ PricingTraditional.propTypes = iconPropTypes;
23673
+ }
23674
+ var Printer = /* @__PURE__ */ React9.forwardRef(function Printer2({
23675
+ children,
23676
+ size = 16,
23677
+ ...rest
23678
+ }, ref) {
23679
+ return /* @__PURE__ */ React9.createElement(Icon, {
23680
+ width: size,
23681
+ height: size,
23682
+ ref,
23683
+ xmlns: "http://www.w3.org/2000/svg",
23684
+ viewBox: "0 0 32 32",
23685
+ fill: "currentColor",
23686
+ ...rest
23687
+ }, _path1720 || (_path1720 = /* @__PURE__ */ React9.createElement("path", {
23688
+ d: "M28,9H25V3H7V9H4a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2H7v6H25V23h3a2,2,0,0,0,2-2V11A2,2,0,0,0,28,9ZM9,5H23V9H9ZM23,27H9V17H23Zm5-6H25V15H7v6H4V11H28Z"
23689
+ })), children);
23690
+ });
23691
+ if (process.env.NODE_ENV !== "production") {
23692
+ Printer.propTypes = iconPropTypes;
23693
+ }
23694
+ var Process = /* @__PURE__ */ React9.forwardRef(function Process2({
23695
+ children,
23696
+ size = 16,
23697
+ ...rest
23698
+ }, ref) {
23699
+ return /* @__PURE__ */ React9.createElement(Icon, {
23700
+ width: size,
23701
+ height: size,
23702
+ ref,
23703
+ xmlns: "http://www.w3.org/2000/svg",
23704
+ viewBox: "0 0 32 32",
23705
+ fill: "currentColor",
23706
+ ...rest
23707
+ }, _path1819 || (_path1819 = /* @__PURE__ */ React9.createElement("path", {
23708
+ d: "M12 25c-.7383 0-1.3762.4048-1.7227 1h-5.6301l2.6479-5.0923c.2273.0552.4609.0923.7048.0923 1.6543 0 3-1.3457 3-3s-1.3457-3-3-3-3 1.3457-3 3c0 .6787.2349 1.2979.6162 1.8013l-3.5034 6.7373c-.1611.3101-.1489.6816.0325.9805.1812.2983.5054.481.8547.481h7.2773c.3464.5952.9844 1 1.7227 1 1.1045 0 2-.8955 2-2s-.8955-2-2-2zm-4-8c.5515 0 1 .4487 1 1s-.4485 1-1 1-1-.4487-1-1 .4485-1 1-1zM29.8872 26.5386l-4.041-7.771c.0986-.2363.1538-.4956.1538-.7676 0-1.1045-.8955-2-2-2s-2 .8955-2 2 .8955 2 2 2c.0757 0 .1477-.0142.2212-.0225l3.1316 6.0225h-4.5371c-.4141-1.1611-1.5137-2-2.8157-2-1.6543 0-3 1.3457-3 3s1.3457 3 3 3c1.302 0 2.4016-.8389 2.8157-2h6.1843c.3494 0 .6736-.1826.8547-.481.1814-.2988.1936-.6704.0325-.9805zm-9.8872 1.4614c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1zM21 8c-.2439 0-.4778.0371-.7048.0923l-3.408-6.5537c-.1721-.3311-.5298-.5386-.8872-.5386s-.7151.2075-.8872.5386l-3.8914 7.4839c-.0737-.0083-.1458-.0225-.2214-.0225-1.1045 0-2 .8955-2 2s.8955 2 2 2 2-.8955 2-2c0-.272-.0552-.5312-.1538-.7676l3.1538-6.0649 2.6162 5.0312c-.3813.5034-.6162 1.1226-.6162 1.8013 0 1.6543 1.3457 3 3 3s3-1.3457 3-3-1.3457-3-3-3zm0 4c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1z"
23709
+ })), children);
23710
+ });
23711
+ if (process.env.NODE_ENV !== "production") {
23712
+ Process.propTypes = iconPropTypes;
23713
+ }
23714
+ var ProcessAutomate = /* @__PURE__ */ React9.forwardRef(function ProcessAutomate2({
23715
+ children,
23716
+ size = 16,
23717
+ ...rest
23718
+ }, ref) {
23719
+ return /* @__PURE__ */ React9.createElement(Icon, {
23720
+ width: size,
23721
+ height: size,
23722
+ ref,
23723
+ xmlns: "http://www.w3.org/2000/svg",
23724
+ viewBox: "0 0 32 32",
23725
+ fill: "currentColor",
23726
+ ...rest
23727
+ }, _path1919 || (_path1919 = /* @__PURE__ */ React9.createElement("path", {
23728
+ d: "m31,17c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,1.3018.8384,2.4014,2,2.8154v2.6104l-11,6.4165-10.0154-5.8423,22.5193-13.1362c.3071-.1792.4961-.5083.4961-.8638s-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v3.1846c-1.1616.4141-2,1.5137-2,2.8154,0,1.6543,1.3457,3,3,3s3-1.3457,3-3c0-1.3018-.8384-2.4014-2-2.8159v-2.6099l11-6.4165,10.0154,5.8423L3.4961,22.1362c-.3071.1792-.4961.5083-.4961.8638s.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l12-7c.3071-.1792.4961-.5083.4961-.8638v-3.1841c1.1616-.4146,2-1.5142,2-2.8159Zm-27-1c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm24,2c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"
23729
+ })), children);
23730
+ });
23731
+ if (process.env.NODE_ENV !== "production") {
23732
+ ProcessAutomate.propTypes = iconPropTypes;
23733
+ }
23734
+ var Product = /* @__PURE__ */ React9.forwardRef(function Product2({
23735
+ children,
23736
+ size = 16,
23737
+ ...rest
23738
+ }, ref) {
23739
+ return /* @__PURE__ */ React9.createElement(Icon, {
23740
+ width: size,
23741
+ height: size,
23742
+ ref,
23743
+ xmlns: "http://www.w3.org/2000/svg",
23744
+ viewBox: "0 0 32 32",
23745
+ fill: "currentColor",
23746
+ ...rest
23747
+ }, _path2017 || (_path2017 = /* @__PURE__ */ React9.createElement("path", {
23748
+ d: "M8 18H14V20H8zM8 22H18V24H8z"
23749
+ })), _path2116 || (_path2116 = /* @__PURE__ */ React9.createElement("path", {
23750
+ d: "M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM18,6v4H14V6ZM6,26V6h6v6h8V6h6l.0012,20Z"
23751
+ })), children);
23752
+ });
23753
+ if (process.env.NODE_ENV !== "production") {
23754
+ Product.propTypes = iconPropTypes;
23755
+ }
23756
+ var ProgressBar = /* @__PURE__ */ React9.forwardRef(function ProgressBar2({
23757
+ children,
23758
+ size = 16,
23759
+ ...rest
23760
+ }, ref) {
23761
+ return /* @__PURE__ */ React9.createElement(Icon, {
23762
+ width: size,
23763
+ height: size,
23764
+ ref,
23765
+ xmlns: "http://www.w3.org/2000/svg",
23766
+ viewBox: "0 0 32 32",
23767
+ fill: "currentColor",
23768
+ ...rest
23769
+ }, _path2214 || (_path2214 = /* @__PURE__ */ React9.createElement("path", {
23770
+ d: "M28,21H4a2.0021,2.0021,0,0,1-2-2V13a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,21ZM4,13v6H28V13Z"
23771
+ })), _path2314 || (_path2314 = /* @__PURE__ */ React9.createElement("path", {
23772
+ d: "M6 15H20V17H6z"
23773
+ })), children);
23774
+ });
23775
+ if (process.env.NODE_ENV !== "production") {
23776
+ ProgressBar.propTypes = iconPropTypes;
23777
+ }
23778
+ var ProgressBarRound = /* @__PURE__ */ React9.forwardRef(function ProgressBarRound2({
23779
+ children,
23780
+ size = 16,
23781
+ ...rest
23782
+ }, ref) {
23783
+ return /* @__PURE__ */ React9.createElement(Icon, {
23784
+ width: size,
23785
+ height: size,
23786
+ ref,
23787
+ xmlns: "http://www.w3.org/2000/svg",
23788
+ viewBox: "0 0 32 32",
23789
+ fill: "currentColor",
23790
+ ...rest
23791
+ }, _path2414 || (_path2414 = /* @__PURE__ */ React9.createElement("path", {
23792
+ d: "M16,22a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,12Z"
23793
+ })), _path2514 || (_path2514 = /* @__PURE__ */ React9.createElement("path", {
23794
+ d: "M16,26a10.0162,10.0162,0,0,1-7.4531-3.3325l1.49-1.334A8,8,0,1,0,16,8V6a10,10,0,0,1,0,20Z"
23795
+ })), _path2613 || (_path2613 = /* @__PURE__ */ React9.createElement("path", {
23796
+ d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"
23797
+ })), children);
23798
+ });
23799
+ if (process.env.NODE_ENV !== "production") {
23800
+ ProgressBarRound.propTypes = iconPropTypes;
23801
+ }
23802
+ var Promote = /* @__PURE__ */ React9.forwardRef(function Promote2({
23803
+ children,
23804
+ size = 16,
23805
+ ...rest
23806
+ }, ref) {
23807
+ return /* @__PURE__ */ React9.createElement(Icon, {
23808
+ width: size,
23809
+ height: size,
23810
+ ref,
23811
+ xmlns: "http://www.w3.org/2000/svg",
23812
+ viewBox: "0 0 32 32",
23813
+ fill: "currentColor",
23814
+ ...rest
23815
+ }, _path2710 || (_path2710 = /* @__PURE__ */ React9.createElement("path", {
23816
+ d: "M16 21L17.4 22.4 14.8 25 23 25 23 27 14.8 27 17.4 29.6 16 31 11 26z"
23817
+ })), _path287 || (_path287 = /* @__PURE__ */ React9.createElement("path", {
23818
+ d: "M6.3 19H17.6V21H6.3z",
23819
+ transform: "rotate(-45.001 12 20)"
23820
+ })), _path297 || (_path297 = /* @__PURE__ */ React9.createElement("path", {
23821
+ d: "M23,22h-2v-5c0-0.3,0.1-0.5,0.3-0.7l4.1-4.1c1.7-1.7,2.6-4,2.6-6.4V4h-1.9c-2.4,0-4.7,0.9-6.4,2.6l-4.1,4.1 C15.5,10.9,15.3,11,15,11H7.5l-2.6,3.3l5.3,0.8l-0.3,2l-7-1c-0.4-0.1-0.7-0.3-0.8-0.6s-0.1-0.7,0.1-1l4-5C6.4,9.1,6.7,9,7,9h7.6 l3.8-3.8C20.4,3.1,23.2,2,26.1,2H28c1.1,0,2,0.9,2,2v1.9c0,2.9-1.1,5.7-3.2,7.8L23,17.4V22z"
23822
+ })), children);
23823
+ });
23824
+ if (process.env.NODE_ENV !== "production") {
23825
+ Promote.propTypes = iconPropTypes;
23826
+ }
23827
+ var PromptSession = /* @__PURE__ */ React9.forwardRef(function PromptSession2({
23828
+ children,
23829
+ size = 16,
23830
+ ...rest
23831
+ }, ref) {
23832
+ return /* @__PURE__ */ React9.createElement(Icon, {
23833
+ width: size,
23834
+ height: size,
23835
+ ref,
23836
+ xmlns: "http://www.w3.org/2000/svg",
23837
+ viewBox: "0 0 32 32",
23838
+ fill: "currentColor",
23839
+ ...rest
23840
+ }, _path307 || (_path307 = /* @__PURE__ */ React9.createElement("path", {
23841
+ d: "M27 25.5859L25 23.5859 25 21 23 21 23 24.4141 25.5859 27 27 25.5859z"
23842
+ })), _path3110 || (_path3110 = /* @__PURE__ */ React9.createElement("path", {
23843
+ d: "M24 31c-3.8599 0-7-3.1401-7-7s3.1401-7 7-7 7 3.1401 7 7-3.1401 7-7 7zm0-12c-2.7571 0-5 2.2429-5 5s2.2429 5 5 5 5-2.2429 5-5-2.2429-5-5-5zM28 15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10z"
23844
+ })), _circle60 || (_circle60 = /* @__PURE__ */ React9.createElement("circle", {
23845
+ cx: "9",
23846
+ cy: "13",
23847
+ r: "2"
23848
+ })), _circle217 || (_circle217 = /* @__PURE__ */ React9.createElement("circle", {
23849
+ cx: "16",
23850
+ cy: "13",
23851
+ r: "2"
23852
+ })), _circle316 || (_circle316 = /* @__PURE__ */ React9.createElement("circle", {
23853
+ cx: "23",
23854
+ cy: "13",
23855
+ r: "2"
23856
+ })), _path327 || (_path327 = /* @__PURE__ */ React9.createElement("path", {
23857
+ d: "m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z"
23858
+ })), children);
23859
+ });
23860
+ if (process.env.NODE_ENV !== "production") {
23861
+ PromptSession.propTypes = iconPropTypes;
23862
+ }
23863
+ var PromptTemplate = /* @__PURE__ */ React9.forwardRef(function PromptTemplate2({
23864
+ children,
23865
+ size = 16,
23866
+ ...rest
23867
+ }, ref) {
23868
+ return /* @__PURE__ */ React9.createElement(Icon, {
23869
+ width: size,
23870
+ height: size,
23871
+ ref,
23872
+ xmlns: "http://www.w3.org/2000/svg",
23873
+ viewBox: "0 0 32 32",
23874
+ fill: "currentColor",
23875
+ ...rest
23876
+ }, _path337 || (_path337 = /* @__PURE__ */ React9.createElement("path", {
23877
+ d: "M31.5 23c-.8271 0-1.5-.6729-1.5-1.5v-1.5c0-1.1025-.8972-2-2-2h-2v2h2v1.5c0 .98.4072 1.8643 1.0581 2.5-.6509.6357-1.0581 1.52-1.0581 2.5v1.5h-2v2h2c1.1028 0 2-.8975 2-2v-1.5c0-.8271.6729-1.5 1.5-1.5h.5v-2h-.5zM16 20v1.5c0 .8271-.6729 1.5-1.5 1.5h-.5v2h.5c.8271 0 1.5.6729 1.5 1.5v1.5c0 1.1025.8972 2 2 2h2v-2h-2v-1.5c0-.98-.4072-1.8643-1.0581-2.5.6509-.6357 1.0581-1.52 1.0581-2.5v-1.5h2v-2h-2c-1.1028 0-2 .8975-2 2zM28 15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10z"
23878
+ })), _circle416 || (_circle416 = /* @__PURE__ */ React9.createElement("circle", {
23879
+ cx: "23",
23880
+ cy: "13",
23881
+ r: "2"
23882
+ })), _circle511 || (_circle511 = /* @__PURE__ */ React9.createElement("circle", {
23883
+ cx: "16",
23884
+ cy: "13",
23885
+ r: "2"
23886
+ })), _circle67 || (_circle67 = /* @__PURE__ */ React9.createElement("circle", {
23887
+ cx: "9",
23888
+ cy: "13",
23889
+ r: "2"
23890
+ })), _path347 || (_path347 = /* @__PURE__ */ React9.createElement("path", {
23891
+ d: "m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z"
23892
+ })), children);
23893
+ });
23894
+ if (process.env.NODE_ENV !== "production") {
23895
+ PromptTemplate.propTypes = iconPropTypes;
23896
+ }
23897
+ var PropertyRelationship = /* @__PURE__ */ React9.forwardRef(function PropertyRelationship2({
23898
+ children,
23899
+ size = 16,
23900
+ ...rest
23901
+ }, ref) {
23902
+ return /* @__PURE__ */ React9.createElement(Icon, {
23903
+ width: size,
23904
+ height: size,
23905
+ ref,
23906
+ xmlns: "http://www.w3.org/2000/svg",
23907
+ viewBox: "0 0 32 32",
23908
+ fill: "currentColor",
23909
+ ...rest
23910
+ }, _path357 || (_path357 = /* @__PURE__ */ React9.createElement("path", {
23911
+ d: "M30 16L22 24 20.6 22.6 27.2 16 20.6 9.4 22 8zM12 15H20V17H12zM2 16L10 8 11.4 9.4 4.8 16 11.4 22.6 10 24z"
23912
+ })), children);
23913
+ });
23914
+ if (process.env.NODE_ENV !== "production") {
23915
+ PropertyRelationship.propTypes = iconPropTypes;
23916
+ }
23917
+ var PullRequest = /* @__PURE__ */ React9.forwardRef(function PullRequest2({
23918
+ children,
23919
+ size = 16,
23920
+ ...rest
23921
+ }, ref) {
23922
+ return /* @__PURE__ */ React9.createElement(Icon, {
23923
+ width: size,
23924
+ height: size,
23925
+ ref,
23926
+ xmlns: "http://www.w3.org/2000/svg",
23927
+ viewBox: "0 0 32 32",
23928
+ fill: "currentColor",
23929
+ ...rest
23930
+ }, _path367 || (_path367 = /* @__PURE__ */ React9.createElement("path", {
23931
+ strokeWidth: "0",
23932
+ d: "M25 22.1421v-13.1421c0-2.2056-1.7944-4-4-4h-4.1719l2.5859-2.5859-1.4141-1.4141-5 5 5 5 1.4141-1.4141-2.5859-2.5859h4.1719c1.1028 0 2 .8975 2 2v13.1421c-1.7202.4473-3 1.9995-3 3.8579 0 2.2056 1.7944 4 4 4s4-1.7944 4-4c0-1.8584-1.2798-3.4106-3-3.8579zm-1 5.8579c-1.1028 0-2-.8975-2-2s.8972-2 2-2 2 .8975 2 2-.8972 2-2 2zM4 6c0 1.8584 1.2798 3.4106 3 3.8579v12.2842c-1.7202.447-3 1.9993-3 3.8579 0 2.2061 1.7944 4 4 4s4-1.7939 4-4c0-1.8586-1.2798-3.4109-3-3.8579v-12.2842c1.7202-.4473 3-1.9995 3-3.8579 0-2.2056-1.7944-4-4-4s-4 1.7944-4 4zm6 20c0 1.1025-.897 2-2 2s-2-.8975-2-2c0-1.1025.897-2 2-2s2 .8975 2 2zm0-20c0 1.103-.897 2-2 2s-2-.897-2-2c0-1.103.897-2 2-2s2 .897 2 2z"
23933
+ })), children);
23934
+ });
23935
+ if (process.env.NODE_ENV !== "production") {
23936
+ PullRequest.propTypes = iconPropTypes;
23937
+ }
23938
+ var PunctuationCheck = /* @__PURE__ */ React9.forwardRef(function PunctuationCheck2({
23939
+ children,
23940
+ size = 16,
23941
+ ...rest
23942
+ }, ref) {
23943
+ return /* @__PURE__ */ React9.createElement(Icon, {
23944
+ width: size,
23945
+ height: size,
23946
+ ref,
23947
+ xmlns: "http://www.w3.org/2000/svg",
23948
+ viewBox: "0 0 32 32",
23949
+ fill: "currentColor",
23950
+ ...rest
23951
+ }, _path377 || (_path377 = /* @__PURE__ */ React9.createElement("path", {
23952
+ d: "M23,27.1781l-2.59-2.59-1.41,1.4119,4,4,7-7-1.41-1.4119-5.59,5.59ZM14,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM22,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM12,28h-6c-1.103,0-2-.8975-2-2V6c0-1.103.897-2,2-2h20c1.1025,0,2,.897,2,2v11h-2V6H6v20h6v2Z"
23953
+ })), children);
23954
+ });
23955
+ if (process.env.NODE_ENV !== "production") {
23956
+ PunctuationCheck.propTypes = iconPropTypes;
23957
+ }
23958
+ var Purchase = /* @__PURE__ */ React9.forwardRef(function Purchase2({
23959
+ children,
23960
+ size = 16,
23961
+ ...rest
23962
+ }, ref) {
23963
+ return /* @__PURE__ */ React9.createElement(Icon, {
23964
+ width: size,
23965
+ height: size,
23966
+ ref,
23967
+ xmlns: "http://www.w3.org/2000/svg",
23968
+ viewBox: "0 0 32 32",
23969
+ fill: "currentColor",
23970
+ ...rest
23971
+ }, _path387 || (_path387 = /* @__PURE__ */ React9.createElement("path", {
23972
+ d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6Zm0,2v3H4V8ZM4,24V13H28V24Z"
23973
+ })), _path397 || (_path397 = /* @__PURE__ */ React9.createElement("path", {
23974
+ d: "M6 20H16V22H6z"
23975
+ })), children);
23976
+ });
23977
+ if (process.env.NODE_ENV !== "production") {
23978
+ Purchase.propTypes = iconPropTypes;
23979
+ }
23980
+ var WatsonHealthQcLaunch = /* @__PURE__ */ React9.forwardRef(function WatsonHealthQcLaunch2({
23981
+ children,
23982
+ size = 16,
23983
+ ...rest
23984
+ }, ref) {
23985
+ return /* @__PURE__ */ React9.createElement(Icon, {
23986
+ width: size,
23987
+ height: size,
23988
+ ref,
23989
+ xmlns: "http://www.w3.org/2000/svg",
23990
+ viewBox: "0 0 32 32",
23991
+ fill: "currentColor",
23992
+ ...rest
23993
+ }, _path407 || (_path407 = /* @__PURE__ */ React9.createElement("path", {
23994
+ d: "M25 22H19a2.0023 2.0023 0 01-2-2V10a2.002 2.002 0 012-2h6v2H19V20h6zM13 8H9a2.002 2.002 0 00-2 2V20a2.0023 2.0023 0 002 2h1v2a2.0023 2.0023 0 002 2h2V24H12V22h1a2.0023 2.0023 0 002-2V10A2.002 2.002 0 0013 8zM9 20V10h4V20z"
23995
+ })), _path4110 || (_path4110 = /* @__PURE__ */ React9.createElement("path", {
23996
+ d: "M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,4,2H28a2.0023,2.0023,0,0,1,2,2V28A2.0027,2.0027,0,0,1,28,30ZM4,4V28H28V4Z"
23997
+ })), children);
23998
+ });
23999
+ if (process.env.NODE_ENV !== "production") {
24000
+ WatsonHealthQcLaunch.propTypes = iconPropTypes;
24001
+ }
24002
+ var Qiskit = /* @__PURE__ */ React9.forwardRef(function Qiskit2({
24003
+ children,
24004
+ size = 16,
24005
+ ...rest
24006
+ }, ref) {
24007
+ return /* @__PURE__ */ React9.createElement(Icon, {
24008
+ width: size,
24009
+ height: size,
24010
+ ref,
24011
+ xmlns: "http://www.w3.org/2000/svg",
24012
+ viewBox: "0 0 32 32",
24013
+ fill: "currentColor",
24014
+ ...rest
24015
+ }, _path427 || (_path427 = /* @__PURE__ */ React9.createElement("path", {
24016
+ strokeWidth: "0",
24017
+ d: "m16,1C7.729,1,1,7.729,1,16s6.729,15,15,15,15-6.729,15-15S24.271,1,16,1Zm6.5825,20.5c-.5203-.8926-1.4771-1.5-2.5825-1.5-.1821,0-.3586.0225-.532.0537l-1.7258-3.0205c6.7866.2388,10.1216,1.8262,10.2571,2.4668-.0979.4624-1.8899,1.4141-5.4167,2Zm-2.5825.5c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1ZM3,16c0-.5435.0442-1.0762.1094-1.6025.8552.666,2.1555,1.1973,3.7239,1.6025-1.5684.4053-2.8687.9365-3.7239,1.6025-.0652-.5264-.1094-1.0591-.1094-1.6025Zm6.4175-5.4995c.5205.8921,1.4773,1.4995,2.5825,1.4995.1821,0,.3586-.0225.532-.0537l1.7258,3.0205c-6.8042-.2393-10.1387-1.8335-10.2581-2.4619.0862-.4609,1.8784-1.416,5.4177-2.0044Zm2.5825-.5005c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm13.167,6c1.5681-.4053,2.8684-.9365,3.7236-1.6025.0652.5264.1094,1.0591.1094,1.6025s-.0442,1.0762-.1094,1.6025c-.8552-.666-2.1555-1.1973-3.7236-1.6025ZM16,3c4.9019,0,9.1758,2.7285,11.3901,6.7451-2.2891-.9961-5.7993-1.5513-9.3901-1.6997v1.999c6.6108.2695,9.8655,1.8232,9.9993,2.4556-.1431.6763-3.8533,2.4062-11.4236,2.4917l-2.3118-4.0454c.4524-.5254.7361-1.2002.7361-1.9463,0-1.6543-1.3457-3-3-3-1.4956,0-2.7285,1.1035-2.9531,2.5371-1.7056.2837-3.2363.6841-4.4351,1.2051,2.2151-4.0146,6.4878-6.7422,11.3882-6.7422Zm0,26c-4.9019,0-9.1758-2.7285-11.3901-6.7451,2.2891.9961,5.7993,1.5513,9.3901,1.6997v-1.999c-6.6282-.2705-9.8823-1.8306-10.0002-2.4507.126-.6729,3.8357-2.4106,11.4246-2.4966l2.3118,4.0454c-.4524.5254-.7361,1.2002-.7361,1.9463,0,1.6543,1.3457,3,3,3,1.4956,0,2.7285-1.1035,2.9531-2.5371,1.7056-.2837,3.2363-.6841,4.4351-1.2051-2.2151,4.0146-6.4878,6.7422-11.3882,6.7422Z"
24018
+ })), children);
24019
+ });
24020
+ if (process.env.NODE_ENV !== "production") {
24021
+ Qiskit.propTypes = iconPropTypes;
24022
+ }
24023
+ var QqPlot = /* @__PURE__ */ React9.forwardRef(function QqPlot2({
24024
+ children,
24025
+ size = 16,
24026
+ ...rest
24027
+ }, ref) {
24028
+ return /* @__PURE__ */ React9.createElement(Icon, {
24029
+ width: size,
24030
+ height: size,
24031
+ ref,
24032
+ xmlns: "http://www.w3.org/2000/svg",
24033
+ viewBox: "0 0 32 32",
24034
+ fill: "currentColor",
24035
+ ...rest
24036
+ }, _circle77 || (_circle77 = /* @__PURE__ */ React9.createElement("circle", {
24037
+ cx: "20",
24038
+ cy: "4",
24039
+ r: "2"
24040
+ })), _circle87 || (_circle87 = /* @__PURE__ */ React9.createElement("circle", {
24041
+ cx: "8",
24042
+ cy: "16",
24043
+ r: "2"
24044
+ })), _circle96 || (_circle96 = /* @__PURE__ */ React9.createElement("circle", {
24045
+ cx: "28",
24046
+ cy: "12",
24047
+ r: "2"
24048
+ })), _circle06 || (_circle06 = /* @__PURE__ */ React9.createElement("circle", {
24049
+ cx: "11",
24050
+ cy: "7",
24051
+ r: "2"
24052
+ })), _circle118 || (_circle118 = /* @__PURE__ */ React9.createElement("circle", {
24053
+ cx: "16",
24054
+ cy: "24",
24055
+ r: "2"
24056
+ })), _path437 || (_path437 = /* @__PURE__ */ React9.createElement("path", {
24057
+ d: "M30,3.4131,28.5859,2,4,26.585V2H2V28a2,2,0,0,0,2,2H30V28H5.4131Z"
24058
+ })), children);
24059
+ });
24060
+ if (process.env.NODE_ENV !== "production") {
24061
+ QqPlot.propTypes = iconPropTypes;
24062
+ }
24063
+ var QrCode = /* @__PURE__ */ React9.forwardRef(function QrCode2({
24064
+ children,
24065
+ size = 16,
24066
+ ...rest
24067
+ }, ref) {
24068
+ return /* @__PURE__ */ React9.createElement(Icon, {
24069
+ width: size,
24070
+ height: size,
24071
+ ref,
24072
+ xmlns: "http://www.w3.org/2000/svg",
24073
+ viewBox: "0 0 32 32",
24074
+ fill: "currentColor",
24075
+ ...rest
24076
+ }, _path447 || (_path447 = /* @__PURE__ */ React9.createElement("path", {
24077
+ d: "M24 26H26V28H24z",
24078
+ transform: "rotate(-90 25 27)"
24079
+ })), _path457 || (_path457 = /* @__PURE__ */ React9.createElement("path", {
24080
+ d: "M18 22H20V24H18z",
24081
+ transform: "rotate(-90 19 23)"
24082
+ })), _path467 || (_path467 = /* @__PURE__ */ React9.createElement("path", {
24083
+ d: "M18 30L22 30 22 28 20 28 20 26 18 26 18 30z"
24084
+ })), _path477 || (_path477 = /* @__PURE__ */ React9.createElement("path", {
24085
+ d: "M25 23H29V25H25z",
24086
+ transform: "rotate(-90 27 24)"
24087
+ })), _path487 || (_path487 = /* @__PURE__ */ React9.createElement("path", {
24088
+ d: "M28 26L30 26 30 30 26 30 26 28 28 28 28 26zM26 20L26 18 30 18 30 22 28 22 28 20 26 20zM24 20L22 20 22 24 20 24 20 26 24 26 24 20z"
24089
+ })), _path497 || (_path497 = /* @__PURE__ */ React9.createElement("path", {
24090
+ d: "M19 17H21V21H19z",
24091
+ transform: "rotate(-90 20 19)"
24092
+ })), _path507 || (_path507 = /* @__PURE__ */ React9.createElement("path", {
24093
+ d: "M6 22H10V26H6z"
24094
+ })), _path5110 || (_path5110 = /* @__PURE__ */ React9.createElement("path", {
24095
+ d: "M14 30H2V18H14zM4 28h8V20H4zM22 6H26V10H22z"
24096
+ })), _path527 || (_path527 = /* @__PURE__ */ React9.createElement("path", {
24097
+ d: "M30 14H18V2H30zM20 12h8V4H20zM6 6H10V10H6z"
24098
+ })), _path537 || (_path537 = /* @__PURE__ */ React9.createElement("path", {
24099
+ d: "M14,14H2V2H14ZM4,12h8V4H4Z"
24100
+ })), children);
24101
+ });
24102
+ if (process.env.NODE_ENV !== "production") {
24103
+ QrCode.propTypes = iconPropTypes;
24104
+ }
24105
+ var QuadrantPlot = /* @__PURE__ */ React9.forwardRef(function QuadrantPlot2({
24106
+ children,
24107
+ size = 16,
24108
+ ...rest
24109
+ }, ref) {
24110
+ return /* @__PURE__ */ React9.createElement(Icon, {
24111
+ width: size,
24112
+ height: size,
24113
+ ref,
24114
+ xmlns: "http://www.w3.org/2000/svg",
24115
+ viewBox: "0 0 32 32",
24116
+ fill: "currentColor",
24117
+ ...rest
24118
+ }, _path547 || (_path547 = /* @__PURE__ */ React9.createElement("path", {
24119
+ d: "M30 15L17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z"
24120
+ })), _path557 || (_path557 = /* @__PURE__ */ React9.createElement("path", {
24121
+ d: "M5 30a3 3 0 113-3A3.0033 3.0033 0 015 30zm0-4a1 1 0 101 1A1.001 1.001 0 005 26zM8 8a3 3 0 113-3A3.0033 3.0033 0 018 8zM8 4A1 1 0 109 5 1.001 1.001 0 008 4zM22 13a3 3 0 113-3A3.0033 3.0033 0 0122 13zm0-4a1 1 0 101 1A1.001 1.001 0 0022 9z"
24122
+ })), _circle106 || (_circle106 = /* @__PURE__ */ React9.createElement("circle", {
24123
+ cx: "11",
24124
+ cy: "11",
24125
+ r: "2"
24126
+ })), _circle119 || (_circle119 = /* @__PURE__ */ React9.createElement("circle", {
24127
+ cx: "11",
24128
+ cy: "21",
24129
+ r: "2"
24130
+ })), _circle126 || (_circle126 = /* @__PURE__ */ React9.createElement("circle", {
24131
+ cx: "21",
24132
+ cy: "21",
24133
+ r: "2"
24134
+ })), _circle136 || (_circle136 = /* @__PURE__ */ React9.createElement("circle", {
24135
+ cx: "22",
24136
+ cy: "28",
24137
+ r: "2"
24138
+ })), _circle146 || (_circle146 = /* @__PURE__ */ React9.createElement("circle", {
24139
+ cx: "28",
24140
+ cy: "24",
24141
+ r: "2"
24142
+ })), _circle156 || (_circle156 = /* @__PURE__ */ React9.createElement("circle", {
24143
+ cx: "4",
24144
+ cy: "11",
24145
+ r: "2"
24146
+ })), _circle166 || (_circle166 = /* @__PURE__ */ React9.createElement("circle", {
24147
+ cx: "28",
24148
+ cy: "4",
24149
+ r: "2"
24150
+ })), children);
24151
+ });
24152
+ if (process.env.NODE_ENV !== "production") {
24153
+ QuadrantPlot.propTypes = iconPropTypes;
24154
+ }
24155
+ var Query = /* @__PURE__ */ React9.forwardRef(function Query2({
24156
+ children,
24157
+ size = 16,
24158
+ ...rest
24159
+ }, ref) {
24160
+ return /* @__PURE__ */ React9.createElement(Icon, {
24161
+ width: size,
24162
+ height: size,
24163
+ ref,
24164
+ xmlns: "http://www.w3.org/2000/svg",
24165
+ viewBox: "0 0 32 32",
24166
+ fill: "currentColor",
24167
+ ...rest
24168
+ }, _circle176 || (_circle176 = /* @__PURE__ */ React9.createElement("circle", {
24169
+ cx: "11",
24170
+ cy: "15.5",
24171
+ r: "1.5"
24172
+ })), _path567 || (_path567 = /* @__PURE__ */ React9.createElement("path", {
24173
+ d: "M12,12H10V8h2a2,2,0,0,0,0-4H10A2.0023,2.0023,0,0,0,8,6v.5H6V6a4.0045,4.0045,0,0,1,4-4h2a4,4,0,0,1,0,8Z"
24174
+ })), _path577 || (_path577 = /* @__PURE__ */ React9.createElement("path", {
24175
+ d: "M22.4479,21.0337A10.971,10.971,0,0,0,19.9211,4.7446l-.999,1.73A8.9967,8.9967,0,1,1,5,14H3a10.9916,10.9916,0,0,0,18.0338,8.4478L28.5859,30,30,28.5859Z"
24176
+ })), children);
24177
+ });
24178
+ if (process.env.NODE_ENV !== "production") {
24179
+ Query.propTypes = iconPropTypes;
24180
+ }
24181
+ var QueryQueue = /* @__PURE__ */ React9.forwardRef(function QueryQueue2({
24182
+ children,
24183
+ size = 16,
24184
+ ...rest
24185
+ }, ref) {
24186
+ return /* @__PURE__ */ React9.createElement(Icon, {
24187
+ width: size,
24188
+ height: size,
24189
+ ref,
24190
+ xmlns: "http://www.w3.org/2000/svg",
24191
+ viewBox: "0 0 32 32",
24192
+ fill: "currentColor",
24193
+ ...rest
24194
+ }, _path587 || (_path587 = /* @__PURE__ */ React9.createElement("path", {
24195
+ d: "M10 6H28V8H10zM10 12H28V14H10zM15 18H28V20H15zM10 24H28V26H10zM4 14L11 19 4 24 4 14z"
24196
+ })), children);
24197
+ });
24198
+ if (process.env.NODE_ENV !== "production") {
24199
+ QueryQueue.propTypes = iconPropTypes;
24200
+ }
24201
+ var QuestionAnswering = /* @__PURE__ */ React9.forwardRef(function QuestionAnswering2({
24202
+ children,
24203
+ size = 16,
24204
+ ...rest
24205
+ }, ref) {
24206
+ return /* @__PURE__ */ React9.createElement(Icon, {
24207
+ width: size,
24208
+ height: size,
24209
+ ref,
24210
+ xmlns: "http://www.w3.org/2000/svg",
24211
+ viewBox: "0 0 32 32",
24212
+ fill: "currentColor",
24213
+ ...rest
24214
+ }, _path597 || (_path597 = /* @__PURE__ */ React9.createElement("path", {
24215
+ strokeWidth: "0",
24216
+ d: "M20 15.1798L17.41 12.59 16 14 20 18 26 12 24.59 10.59 20 15.1798zM8 18H10V20H8zM12 9h-5v2h4v2h-3v3h2v-1h2c.5522 0 1-.4478 1-1v-4c0-.5522-.4478-1-1-1z"
24217
+ })), _path607 || (_path607 = /* @__PURE__ */ React9.createElement("path", {
24218
+ strokeWidth: "0",
24219
+ d: "m17.7358,30l-1.7358-1,4-7h6c1.1071,0,2-.8926,2-2v-12c0-1.1074-.8929-2-2-2H6c-1.1071,0-2,.8926-2,2v12c0,1.1074.8929,2,2,2h9v2H6c-2.2093,0-4-1.79-4-4v-12c0-2.2109,1.7907-4,4-4h20c2.2093,0,4,1.7891,4,4v12c0,2.21-1.7907,4-4,4h-4.8354l-3.4287,6Z"
24220
+ })), children);
24221
+ });
24222
+ if (process.env.NODE_ENV !== "production") {
24223
+ QuestionAnswering.propTypes = iconPropTypes;
24224
+ }
24225
+ var Queued = /* @__PURE__ */ React9.forwardRef(function Queued2({
24226
+ children,
24227
+ size = 16,
24228
+ ...rest
24229
+ }, ref) {
24230
+ return /* @__PURE__ */ React9.createElement(Icon, {
24231
+ width: size,
24232
+ height: size,
24233
+ ref,
24234
+ xmlns: "http://www.w3.org/2000/svg",
24235
+ viewBox: "0 0 32 32",
24236
+ fill: "currentColor",
24237
+ ...rest
24238
+ }, _path6110 || (_path6110 = /* @__PURE__ */ React9.createElement("path", {
24239
+ d: "M22 20H30V22H22zM22 24H30V26H22zM22 28H30V30H22zM18 24H20V26H18zM18 20H20V22H18zM18 28H20V30H18zM6.8149 8.293A12.0777 12.0777 0 0110.0068 5.62L9.0079 3.89A14.0845 14.0845 0 005.2841 7.0083zM25.1851 8.293l1.5308-1.2847A14.0845 14.0845 0 0022.9921 3.89l-.9989 1.73A12.0777 12.0777 0 0125.1851 8.293zM4.7366 11.9l-1.8772-.6831A13.9019 13.9019 0 002 16H4A11.917 11.917 0 014.7366 11.9zM6.8149 23.707A11.9975 11.9975 0 014.7366 20.1l-1.8772.6831a13.99 13.99 0 002.4247 4.209zM27.2634 11.9A11.917 11.917 0 0128 16h2a13.8971 13.8971 0 00-.8594-4.7827zM13.9182 27.8066A11.8894 11.8894 0 0110.0068 26.38l-.9989 1.73a13.8673 13.8673 0 004.5633 1.664zM13.9182 4.1934a11.3012 11.3012 0 014.1636 0l.347-1.9678a13.187 13.187 0 00-4.8576 0z"
24240
+ })), children);
24241
+ });
24242
+ if (process.env.NODE_ENV !== "production") {
24243
+ Queued.propTypes = iconPropTypes;
24244
+ }
24245
+ var Quotes = /* @__PURE__ */ React9.forwardRef(function Quotes2({
24246
+ children,
24247
+ size = 16,
24248
+ ...rest
24249
+ }, ref) {
24250
+ return /* @__PURE__ */ React9.createElement(Icon, {
24251
+ width: size,
24252
+ height: size,
24253
+ ref,
24254
+ xmlns: "http://www.w3.org/2000/svg",
24255
+ viewBox: "0 0 32 32",
24256
+ fill: "currentColor",
24257
+ ...rest
24258
+ }, _path627 || (_path627 = /* @__PURE__ */ React9.createElement("path", {
24259
+ d: "M12 15H6.11A9 9 0 0110 8.86l1.79-1.2L10.69 6 8.9 7.2A11 11 0 004 16.35V23a2 2 0 002 2h6a2 2 0 002-2V17A2 2 0 0012 15zM26 15H20.11A9 9 0 0124 8.86l1.79-1.2L24.7 6 22.9 7.2A11 11 0 0018 16.35V23a2 2 0 002 2h6a2 2 0 002-2V17A2 2 0 0026 15z"
24260
+ })), children);
24261
+ });
24262
+ if (process.env.NODE_ENV !== "production") {
24263
+ Quotes.propTypes = iconPropTypes;
24264
+ }
24265
+ var Radar = /* @__PURE__ */ React9.forwardRef(function Radar2({
24266
+ children,
24267
+ size = 16,
24268
+ ...rest
24269
+ }, ref) {
24270
+ return /* @__PURE__ */ React9.createElement(Icon, {
24271
+ width: size,
24272
+ height: size,
24273
+ ref,
24274
+ xmlns: "http://www.w3.org/2000/svg",
24275
+ viewBox: "0 0 32 32",
24276
+ fill: "currentColor",
24277
+ ...rest
24278
+ }, _path637 || (_path637 = /* @__PURE__ */ React9.createElement("path", {
24279
+ d: "M30,3.4141,28.5859,2,15.293,15.293a1,1,0,0,0,1.414,1.414l4.18-4.1792A5.9956,5.9956,0,1,1,16,10V8a8.011,8.011,0,1,0,6.3164,3.0977L25.1631,8.251A11.881,11.881,0,0,1,28,16,12,12,0,1,1,16,4V2A14,14,0,1,0,30,16a13.8572,13.8572,0,0,0-3.4224-9.1636Z"
24280
+ })), children);
24281
+ });
24282
+ if (process.env.NODE_ENV !== "production") {
24283
+ Radar.propTypes = iconPropTypes;
24284
+ }
24285
+ var RadarEnhanced = /* @__PURE__ */ React9.forwardRef(function RadarEnhanced2({
24286
+ children,
24287
+ size = 16,
24288
+ ...rest
24289
+ }, ref) {
24290
+ return /* @__PURE__ */ React9.createElement(Icon, {
24291
+ width: size,
24292
+ height: size,
24293
+ ref,
24294
+ xmlns: "http://www.w3.org/2000/svg",
24295
+ viewBox: "0 0 32 32",
24296
+ fill: "currentColor",
24297
+ ...rest
24298
+ }, _path647 || (_path647 = /* @__PURE__ */ React9.createElement("path", {
24299
+ d: "M30,3.4146,28.5854,2,17.2932,13.2925a1,1,0,1,0,1.4141,1.414l3.4543-3.4541A4.9817,4.9817,0,0,1,18,19a5.0385,5.0385,0,0,1-.6074-.05,8.0432,8.0432,0,0,0-4.3421-4.3423A4.9,4.9,0,0,1,18,9V7a7.0078,7.0078,0,0,0-7,7c0,.0234.0056.0469.0059.07A8.0469,8.0469,0,0,0,10,14a7.95,7.95,0,0,0-1.9883.26C8.0095,14.1729,8,14.0879,8,14A10.0114,10.0114,0,0,1,18,4V2A12.0137,12.0137,0,0,0,6,14c0,.355.0171.7061.0471,1.0537A7.9943,7.9943,0,1,0,16.9465,25.9521c.35.03.7019.0479,1.0535.0479A11.9853,11.9853,0,0,0,27.1538,6.2607ZM15.91,21H13.9563a12.029,12.029,0,0,0-1.218-4.332A6.01,6.01,0,0,1,15.91,21ZM4.09,23H6.0435a12.0318,12.0318,0,0,0,1.2182,4.3325A6.01,6.01,0,0,1,4.09,23Zm1.9532-2H4.09a6.01,6.01,0,0,1,3.1714-4.332A12.0321,12.0321,0,0,0,6.0435,21ZM10,27.9858A10.0149,10.0149,0,0,1,8.0552,23h3.89A10.0149,10.0149,0,0,1,10,27.9858ZM8.0552,21A10.0118,10.0118,0,0,1,10,16.0151,10.01,10.01,0,0,1,11.9448,21Zm4.6831,6.3325A12.0318,12.0318,0,0,0,13.9565,23H15.91A6.01,6.01,0,0,1,12.7383,27.3325ZM28,14A10.0114,10.0114,0,0,1,18,24c-.0869,0-.1733-.01-.26-.0117a7.5527,7.5527,0,0,0,.19-2.9942c.0237,0,.0466.0059.07.0059A6.9991,6.9991,0,0,0,23.6055,9.8086l2.1313-2.1314A9.95,9.95,0,0,1,28,14Z"
24300
+ })), children);
24301
+ });
24302
+ if (process.env.NODE_ENV !== "production") {
24303
+ RadarEnhanced.propTypes = iconPropTypes;
24304
+ }
24305
+ var RadarWeather = /* @__PURE__ */ React9.forwardRef(function RadarWeather2({
24306
+ children,
24307
+ size = 16,
24308
+ ...rest
24309
+ }, ref) {
24310
+ return /* @__PURE__ */ React9.createElement(Icon, {
24311
+ width: size,
24312
+ height: size,
24313
+ ref,
24314
+ xmlns: "http://www.w3.org/2000/svg",
24315
+ viewBox: "0 0 32 32",
24316
+ fill: "currentColor",
24317
+ ...rest
24318
+ }, _path657 || (_path657 = /* @__PURE__ */ React9.createElement("path", {
24319
+ d: "M30,3.4146,28.5854,2,17.2932,13.2925a1,1,0,1,0,1.4141,1.414l3.4543-3.4541a4.9646,4.9646,0,0,1-3.8811,7.7193,7.0485,7.0485,0,0,0-5.1438-3.8731A4.9431,4.9431,0,0,1,18,9V7a6.9551,6.9551,0,0,0-6.9087,8.0791,6.93,6.93,0,0,0-2.8525,1.06A9.97,9.97,0,0,1,18,4V2A11.9756,11.9756,0,0,0,6.573,17.6357a6.9293,6.9293,0,0,0-1.3674,2.7061A4.9948,4.9948,0,0,0,7,30H17a4.9921,4.9921,0,0,0,4.9678-4.68A12.0391,12.0391,0,0,0,30,14a11.8678,11.8678,0,0,0-2.8389-7.7466ZM17,28H7a2.9945,2.9945,0,0,1-.6963-5.9082l.6587-.1572.0986-.67a4.9923,4.9923,0,0,1,9.878,0l.0986.6695.6587.1572A2.9945,2.9945,0,0,1,17,28ZM28,14a10.0346,10.0346,0,0,1-6.3118,9.291,4.9577,4.9577,0,0,0-2.0207-2.5,6.9922,6.9922,0,0,0,3.938-10.9824l2.132-2.1318A9.8873,9.8873,0,0,1,28,14Z"
24320
+ })), children);
24321
+ });
24322
+ if (process.env.NODE_ENV !== "production") {
24323
+ RadarWeather.propTypes = iconPropTypes;
24324
+ }
24325
+ var Radio = /* @__PURE__ */ React9.forwardRef(function Radio2({
24326
+ children,
24327
+ size = 16,
24328
+ ...rest
24329
+ }, ref) {
24330
+ return /* @__PURE__ */ React9.createElement(Icon, {
24331
+ width: size,
24332
+ height: size,
24333
+ ref,
24334
+ xmlns: "http://www.w3.org/2000/svg",
24335
+ viewBox: "0 0 32 32",
24336
+ fill: "currentColor",
24337
+ ...rest
24338
+ }, _path667 || (_path667 = /* @__PURE__ */ React9.createElement("path", {
24339
+ d: "M28,10H24V2H22v8H13V8H11v2H8V8H6v2H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM4,28V12H28V28Z"
24340
+ })), _path677 || (_path677 = /* @__PURE__ */ React9.createElement("path", {
24341
+ d: "M10 26a4 4 0 114-4A4 4 0 0110 26zm0-6a2 2 0 102 2A2 2 0 0010 20zM7 14H13V16H7zM17 16H26V18H17zM17 20H26V22H17zM17 24H26V26H17z"
24342
+ })), children);
24343
+ });
24344
+ if (process.env.NODE_ENV !== "production") {
24345
+ Radio.propTypes = iconPropTypes;
24346
+ }
24347
+ var RadioCombat = /* @__PURE__ */ React9.forwardRef(function RadioCombat2({
24348
+ children,
24349
+ size = 16,
24350
+ ...rest
24351
+ }, ref) {
24352
+ return /* @__PURE__ */ React9.createElement(Icon, {
24353
+ width: size,
24354
+ height: size,
24355
+ ref,
24356
+ xmlns: "http://www.w3.org/2000/svg",
24357
+ viewBox: "0 0 32 32",
24358
+ fill: "currentColor",
24359
+ ...rest
24360
+ }, _path687 || (_path687 = /* @__PURE__ */ React9.createElement("path", {
24361
+ d: "M10 26a4 4 0 114-4A4.0045 4.0045 0 0110 26zm0-6a2 2 0 102 2A2.0021 2.0021 0 0010 20zM17 20H26V22H17zM17 24H26V26H17z"
24362
+ })), _path697 || (_path697 = /* @__PURE__ */ React9.createElement("path", {
24363
+ d: "M20,12h8a2.0023,2.0023,0,0,0,2-2V6a2.0023,2.0023,0,0,0-2-2H20a2.0023,2.0023,0,0,0-2,2V7H12a4.0045,4.0045,0,0,0-4,4v3H6V4H4V14a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V16a2.0023,2.0023,0,0,0-2-2H10V11a2.0023,2.0023,0,0,1,2-2h6v1A2.0023,2.0023,0,0,0,20,12Zm4-6h4v4H24ZM20,6h2v4H20Zm8,22H4V16H28Z"
24364
+ })), children);
24365
+ });
24366
+ if (process.env.NODE_ENV !== "production") {
24367
+ RadioCombat.propTypes = iconPropTypes;
24368
+ }
24369
+ var RadioPushToTalk = /* @__PURE__ */ React9.forwardRef(function RadioPushToTalk2({
24370
+ children,
24371
+ size = 16,
24372
+ ...rest
24373
+ }, ref) {
24374
+ return /* @__PURE__ */ React9.createElement(Icon, {
24375
+ width: size,
24376
+ height: size,
24377
+ ref,
24378
+ xmlns: "http://www.w3.org/2000/svg",
24379
+ viewBox: "0 0 32 32",
24380
+ fill: "currentColor",
24381
+ ...rest
24382
+ }, _path707 || (_path707 = /* @__PURE__ */ React9.createElement("path", {
24383
+ d: "M13 11H19V13H13zM13 15H19V17H13z"
24384
+ })), _circle186 || (_circle186 = /* @__PURE__ */ React9.createElement("circle", {
24385
+ cx: "16",
24386
+ cy: "23",
24387
+ r: "2"
24388
+ })), _path7110 || (_path7110 = /* @__PURE__ */ React9.createElement("path", {
24389
+ d: "M22,7H21V2H19V7H10A2.0023,2.0023,0,0,0,8,9v2H6v2H8v2H6v2H8V28a2.0023,2.0023,0,0,0,2,2H22a2.0023,2.0023,0,0,0,2-2V9A2.0023,2.0023,0,0,0,22,7ZM10,28V9H22V28Z"
24390
+ })), children);
24391
+ });
24392
+ if (process.env.NODE_ENV !== "production") {
24393
+ RadioPushToTalk.propTypes = iconPropTypes;
24394
+ }
24395
+ var RadioButton = /* @__PURE__ */ React9.forwardRef(function RadioButton2({
24396
+ children,
24397
+ size = 16,
24398
+ ...rest
24399
+ }, ref) {
24400
+ return /* @__PURE__ */ React9.createElement(Icon, {
24401
+ width: size,
24402
+ height: size,
24403
+ ref,
24404
+ xmlns: "http://www.w3.org/2000/svg",
24405
+ viewBox: "0 0 32 32",
24406
+ fill: "currentColor",
24407
+ ...rest
24408
+ }, _path727 || (_path727 = /* @__PURE__ */ React9.createElement("path", {
24409
+ d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"
24410
+ })), children);
24411
+ });
24412
+ if (process.env.NODE_ENV !== "production") {
24413
+ RadioButton.propTypes = iconPropTypes;
24414
+ }
24415
+ var RadioButtonChecked = /* @__PURE__ */ React9.forwardRef(function RadioButtonChecked2({
24416
+ children,
24417
+ size = 16,
24418
+ ...rest
24419
+ }, ref) {
24420
+ return /* @__PURE__ */ React9.createElement(Icon, {
24421
+ width: size,
24422
+ height: size,
24423
+ ref,
24424
+ xmlns: "http://www.w3.org/2000/svg",
24425
+ viewBox: "0 0 32 32",
24426
+ fill: "currentColor",
24427
+ ...rest
24428
+ }, _path737 || (_path737 = /* @__PURE__ */ React9.createElement("path", {
24429
+ d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"
24430
+ })), _path747 || (_path747 = /* @__PURE__ */ React9.createElement("path", {
24431
+ d: "M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Z"
24432
+ })), children);
24433
+ });
24434
+ if (process.env.NODE_ENV !== "production") {
24435
+ RadioButtonChecked.propTypes = iconPropTypes;
24436
+ }
24437
+ var Rag = /* @__PURE__ */ React9.forwardRef(function Rag2({
24438
+ children,
24439
+ size = 16,
24440
+ ...rest
24441
+ }, ref) {
24442
+ return /* @__PURE__ */ React9.createElement(Icon, {
24443
+ width: size,
24444
+ height: size,
24445
+ ref,
24446
+ xmlns: "http://www.w3.org/2000/svg",
24447
+ viewBox: "0 0 32 32",
24448
+ fill: "currentColor",
24449
+ ...rest
24450
+ }, _path757 || (_path757 = /* @__PURE__ */ React9.createElement("path", {
24451
+ strokeWidth: "0",
24452
+ d: "M12 28h-2c-3.8599 0-7-3.1401-7-7v-2h2v2c0 2.7568 2.2432 5 5 5h2v2zM28 19h-9c-1.104.0014-1.9986.896-2 2v5c0 1.1046.8954 2 2 2h3v-2h-3v-5h9v5h-2.5352l-2.5937 3.8906 1.6641 1.1094 2-3h1.4648c1.1046 0 2-.8954 2-2v-5c-.0014-1.104-.896-1.9986-2-2zM29 15v-4c0-3.8599-3.1401-7-7-7h-3v2h3c2.7568 0 5 2.2432 5 5v4h2zM6 10H9V12H6z"
24453
+ })), _path767 || (_path767 = /* @__PURE__ */ React9.createElement("path", {
24454
+ strokeWidth: "0",
24455
+ d: "m12.606,6.4355l-2.5251-3.6855c-.3821-.4766-.9512-.75-1.5615-.75h-4.5193c-1.1028,0-2,.8975-2,2v10c0,1.1025.8972,2,2,2h7c1.1028,0,2-.8975,2-2v-6.375c0-.4526-.1558-.8965-.394-1.1895Zm-8.606,7.5645V4h4v3c0,.5522.4478,1,1,1h2v6h-7Z"
24456
+ })), children);
24457
+ });
24458
+ if (process.env.NODE_ENV !== "production") {
24459
+ Rag.propTypes = iconPropTypes;
24460
+ }
24461
+ var Rain = /* @__PURE__ */ React9.forwardRef(function Rain2({
24462
+ children,
24463
+ size = 16,
24464
+ ...rest
24465
+ }, ref) {
24466
+ return /* @__PURE__ */ React9.createElement(Icon, {
24467
+ width: size,
24468
+ height: size,
24469
+ ref,
24470
+ xmlns: "http://www.w3.org/2000/svg",
24471
+ viewBox: "0 0 32 32",
24472
+ fill: "currentColor",
24473
+ ...rest
24474
+ }, _path777 || (_path777 = /* @__PURE__ */ React9.createElement("path", {
24475
+ d: "M23.5 22H8.5A6.5 6.5 0 017.2 9.14a9 9 0 0117.6 0A6.5 6.5 0 0123.5 22zM16 4a7 7 0 00-6.94 6.14L9 11 8.14 11a4.5 4.5 0 00.36 9h15a4.5 4.5 0 00.36-9L23 11l-.1-.82A7 7 0 0016 4zM14 30a.93.93 0 01-.45-.11 1 1 0 01-.44-1.34l2-4a1 1 0 111.78.9l-2 4A1 1 0 0114 30zM20 30a.93.93 0 01-.45-.11 1 1 0 01-.44-1.34l2-4a1 1 0 111.78.9l-2 4A1 1 0 0120 30zM8 30a.93.93 0 01-.45-.11 1 1 0 01-.44-1.34l2-4a1 1 0 111.78.9l-2 4A1 1 0 018 30z"
24476
+ })), children);
24477
+ });
24478
+ if (process.env.NODE_ENV !== "production") {
24479
+ Rain.propTypes = iconPropTypes;
24480
+ }
24481
+ var RainDrizzle = /* @__PURE__ */ React9.forwardRef(function RainDrizzle2({
24482
+ children,
24483
+ size = 16,
24484
+ ...rest
24485
+ }, ref) {
24486
+ return /* @__PURE__ */ React9.createElement(Icon, {
24487
+ width: size,
24488
+ height: size,
24489
+ ref,
24490
+ xmlns: "http://www.w3.org/2000/svg",
24491
+ viewBox: "0 0 32 32",
24492
+ fill: "currentColor",
24493
+ ...rest
24494
+ }, _path787 || (_path787 = /* @__PURE__ */ React9.createElement("path", {
24495
+ d: "M11,30a1,1,0,0,1-.8944-1.4474l2-4a1,1,0,1,1,1.7887.8946l-2,4A.9979.9979,0,0,1,11,30Z"
24496
+ })), _path797 || (_path797 = /* @__PURE__ */ React9.createElement("path", {
24497
+ d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.4973,6.4973,0,0,0,8.5,22H19.3813L18.105,24.5527a1,1,0,0,0,1.789.8946L21.6177,22H23.5A6.4974,6.4974,0,0,0,24.8008,9.1362ZM23.5,20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20Z"
24498
+ })), children);
24499
+ });
24500
+ if (process.env.NODE_ENV !== "production") {
24501
+ RainDrizzle.propTypes = iconPropTypes;
24502
+ }
24503
+ var RainHeavy = /* @__PURE__ */ React9.forwardRef(function RainHeavy2({
24504
+ children,
24505
+ size = 16,
24506
+ ...rest
24507
+ }, ref) {
24508
+ return /* @__PURE__ */ React9.createElement(Icon, {
24509
+ width: size,
24510
+ height: size,
24511
+ ref,
24512
+ xmlns: "http://www.w3.org/2000/svg",
24513
+ viewBox: "0 0 32 32",
24514
+ fill: "currentColor",
24515
+ ...rest
24516
+ }, _path807 || (_path807 = /* @__PURE__ */ React9.createElement("path", {
24517
+ d: "M17 30a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7888.8947l-2 4A.9981.9981 0 0117 30zM8 30a1 1 0 01-.8944-1.4474l2-4.0005a1 1 0 111.7888.8947l-2 4A.9981.9981 0 018 30z"
24518
+ })), _path8110 || (_path8110 = /* @__PURE__ */ React9.createElement("path", {
24519
+ d: "M30,15.5a6.5323,6.5323,0,0,0-5.1992-6.3638,8.9943,8.9943,0,0,0-17.6006,0A6.4905,6.4905,0,0,0,5.7026,21.3584L4.106,24.5527a1,1,0,1,0,1.7885.8946L7.6174,22l6.7644,0L13.106,24.5527a1,1,0,1,0,1.7885.8946L16.6177,22h6.7641L22.106,24.5527a1,1,0,1,0,1.7885.8946l1.9444-3.89A6.5058,6.5058,0,0,0,30,15.5ZM23.5,20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20Z"
24520
+ })), children);
24521
+ });
24522
+ if (process.env.NODE_ENV !== "production") {
24523
+ RainHeavy.propTypes = iconPropTypes;
24524
+ }
24525
+ var RainScattered = /* @__PURE__ */ React9.forwardRef(function RainScattered2({
24526
+ children,
24527
+ size = 16,
24528
+ ...rest
24529
+ }, ref) {
24530
+ return /* @__PURE__ */ React9.createElement(Icon, {
24531
+ width: size,
24532
+ height: size,
24533
+ ref,
24534
+ xmlns: "http://www.w3.org/2000/svg",
24535
+ viewBox: "0 0 32 32",
24536
+ fill: "currentColor",
24537
+ ...rest
24538
+ }, _path827 || (_path827 = /* @__PURE__ */ React9.createElement("path", {
24539
+ d: "M8.5084,32a1.0127,1.0127,0,0,1-.4485-.1054.9986.9986,0,0,1-.4486-1.3418l1.4934-3.0005a1.0025,1.0025,0,0,1,1.7943.8945l-1.4934,3A1.0013,1.0013,0,0,1,8.5084,32Z"
24540
+ })), _path837 || (_path837 = /* @__PURE__ */ React9.createElement("path", {
24541
+ d: "M27.232 15.733H29.232V18.733H27.232z",
24542
+ transform: "rotate(-45.009 28.232 17.233)"
24543
+ })), _path847 || (_path847 = /* @__PURE__ */ React9.createElement("path", {
24544
+ d: "M29 10H32V12H29z"
24545
+ })), _path857 || (_path857 = /* @__PURE__ */ React9.createElement("path", {
24546
+ d: "M26.732 3.768H29.732V5.768H26.732z",
24547
+ transform: "rotate(-45 28.232 4.768)"
24548
+ })), _path867 || (_path867 = /* @__PURE__ */ React9.createElement("path", {
24549
+ d: "M20 0H22V3H20z"
24550
+ })), _path877 || (_path877 = /* @__PURE__ */ React9.createElement("path", {
24551
+ d: "M12.768 3.268H14.768V6.268H12.768z",
24552
+ transform: "rotate(-45 13.768 4.768)"
24553
+ })), _path887 || (_path887 = /* @__PURE__ */ React9.createElement("path", {
24554
+ d: "M27,11A5.9955,5.9955,0,0,0,15.6335,8.3311,7.3494,7.3494,0,0,0,13.5,8a7.5509,7.5509,0,0,0-7.1492,5.2441A5.9926,5.9926,0,0,0,8,25h7.3818L14.106,27.5527a1,1,0,1,0,1.7885.8946L17.6177,25H19a5.9853,5.9853,0,0,0,5.2163-8.9463A5.9941,5.9941,0,0,0,27,11ZM19,23H8a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,14.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,23Zm3.9268-8.5107a5.96,5.96,0,0,0-2.2776-1.2452,7.5157,7.5157,0,0,0-3.1853-4.0688,3.9869,3.9869,0,1,1,5.4629,5.314Z"
24555
+ })), children);
24556
+ });
24557
+ if (process.env.NODE_ENV !== "production") {
24558
+ RainScattered.propTypes = iconPropTypes;
24559
+ }
24560
+ var RainScatteredNight = /* @__PURE__ */ React9.forwardRef(function RainScatteredNight2({
24561
+ children,
24562
+ size = 16,
24563
+ ...rest
24564
+ }, ref) {
24565
+ return /* @__PURE__ */ React9.createElement(Icon, {
24566
+ width: size,
24567
+ height: size,
24568
+ ref,
24569
+ xmlns: "http://www.w3.org/2000/svg",
24570
+ viewBox: "0 0 32 32",
24571
+ fill: "currentColor",
24572
+ ...rest
24573
+ }, _path897 || (_path897 = /* @__PURE__ */ React9.createElement("path", {
24574
+ d: "M8.5084 32a1.0115 1.0115 0 01-.4485-.1055.9986.9986 0 01-.4486-1.3418l1.4934-3a1.0025 1.0025 0 011.7943.8945l-1.4934 3A1.0015 1.0015 0 018.5084 32zM29.8442 13.0347a1.5184 1.5184 0 00-1.2309-.8658 5.3587 5.3587 0 01-3.4094-1.7163 6.4648 6.4648 0 01-1.285-6.393 1.6031 1.6031 0 00-.3-1.5459 1.4535 1.4535 0 00-1.3594-.4922l-.0191.0029a7.8549 7.8549 0 00-6.1054 6.48A7.3725 7.3725 0 0013.5 8a7.5511 7.5511 0 00-7.1494 5.2441A5.9926 5.9926 0 008 25h7.3818L14.106 27.5527a1 1 0 101.7885.8946L17.6177 25H19a5.9549 5.9549 0 005.88-7.1455 7.5 7.5 0 004.8672-3.3A1.5381 1.5381 0 0029.8442 13.0347zM19 23H8a3.9926 3.9926 0 01-.6733-7.9292l.663-.1128.1456-.6562a5.496 5.496 0 0110.7294 0l.1456.6562.6626.1128A3.9925 3.9925 0 0119 23zm5.1509-7.0479a5.9639 5.9639 0 00-3.5015-2.708A7.5076 7.5076 0 0018.0286 9.55a6.01 6.01 0 013.77-5.334 8.4581 8.4581 0 001.9395 7.5972A7.4007 7.4007 0 0027.64 14.041 5.4392 5.4392 0 0124.1509 15.9521z"
24575
+ })), children);
24576
+ });
24577
+ if (process.env.NODE_ENV !== "production") {
24578
+ RainScatteredNight.propTypes = iconPropTypes;
24579
+ }
24580
+ var RainDrop = /* @__PURE__ */ React9.forwardRef(function RainDrop2({
24581
+ children,
24582
+ size = 16,
24583
+ ...rest
24584
+ }, ref) {
24585
+ return /* @__PURE__ */ React9.createElement(Icon, {
24586
+ width: size,
24587
+ height: size,
24588
+ ref,
24589
+ xmlns: "http://www.w3.org/2000/svg",
24590
+ viewBox: "0 0 32 32",
24591
+ fill: "currentColor",
24592
+ ...rest
24593
+ }, _path907 || (_path907 = /* @__PURE__ */ React9.createElement("path", {
24594
+ d: "M16,24V22a3.2965,3.2965,0,0,0,3-3h2A5.2668,5.2668,0,0,1,16,24Z"
24595
+ })), _path9110 || (_path9110 = /* @__PURE__ */ React9.createElement("path", {
24596
+ d: "M16,28a9.0114,9.0114,0,0,1-9-9,9.9843,9.9843,0,0,1,1.4941-4.9554L15.1528,3.4367a1.04,1.04,0,0,1,1.6944,0l6.6289,10.5564A10.0633,10.0633,0,0,1,25,19,9.0114,9.0114,0,0,1,16,28ZM16,5.8483l-5.7817,9.2079A7.9771,7.9771,0,0,0,9,19a7,7,0,0,0,14,0,8.0615,8.0615,0,0,0-1.248-3.9953Z"
24597
+ })), children);
24598
+ });
24599
+ if (process.env.NODE_ENV !== "production") {
24600
+ RainDrop.propTypes = iconPropTypes;
24601
+ }
24602
+ var Raw = /* @__PURE__ */ React9.forwardRef(function Raw2({
24603
+ children,
24604
+ size = 16,
24605
+ ...rest
24606
+ }, ref) {
24607
+ return /* @__PURE__ */ React9.createElement(Icon, {
24608
+ width: size,
24609
+ height: size,
24610
+ ref,
24611
+ xmlns: "http://www.w3.org/2000/svg",
24612
+ viewBox: "0 0 32 32",
24613
+ fill: "currentColor",
24614
+ ...rest
24615
+ }, _path927 || (_path927 = /* @__PURE__ */ React9.createElement("path", {
24616
+ d: "M29.2 9L28.86 17 28.6 21.54 28.19 18 27.51 12.54 25.49 12.54 24.81 18 24.4 21.54 24.14 17 23.8 9 22 9 23 23 25.27 23 26.03 18.07 26.49 14 26.5 13.97 26.51 14 26.97 18.07 27.73 23 30 23 31 9 29.2 9zM18 9H14a2 2 0 00-2 2V23h2V18h4v5h2V11A2 2 0 0018 9zm-4 7V11h4v5zM10 15V11A2 2 0 008 9H2V23H4V17H5.48l2.34 6H10L7.63 17H8A2 2 0 0010 15zM4 11H8v4H4z"
24617
+ })), children);
24618
+ });
24619
+ if (process.env.NODE_ENV !== "production") {
24620
+ Raw.propTypes = iconPropTypes;
24621
+ }
24622
+ var ReadMe = /* @__PURE__ */ React9.forwardRef(function ReadMe2({
24623
+ children,
24624
+ size = 16,
24625
+ ...rest
24626
+ }, ref) {
24627
+ return /* @__PURE__ */ React9.createElement(Icon, {
24628
+ width: size,
24629
+ height: size,
24630
+ ref,
24631
+ xmlns: "http://www.w3.org/2000/svg",
24632
+ viewBox: "0 0 32 32",
24633
+ fill: "currentColor",
24634
+ ...rest
24635
+ }, _path937 || (_path937 = /* @__PURE__ */ React9.createElement("path", {
24636
+ d: "M20,7H5v-2h15v2ZM20,10H5v2h15v-2ZM12,15h-7v2h7v-2ZM10,20h-5v2h5v-2ZM20,20c-1.1,0-2,.9-2,2s.9,2,2,2,2-.9,2-2-.9-2-2-2ZM28,22l-.22.52c-1.42,3.33-4.48,5.48-7.78,5.48s-6.35-2.15-7.78-5.48l-.22-.52.22-.52c1.42-3.33,4.48-5.48,7.78-5.48s6.35,2.15,7.78,5.48l.22.52ZM24,22c0-2.21-1.79-4-4-4s-4,1.79-4,4,1.79,4,4,4,4-1.79,4-4Z"
24637
+ })), children);
24638
+ });
24639
+ if (process.env.NODE_ENV !== "production") {
24640
+ ReadMe.propTypes = iconPropTypes;
24641
+ }
24642
+ var Receipt = /* @__PURE__ */ React9.forwardRef(function Receipt2({
24643
+ children,
24644
+ size = 16,
24645
+ ...rest
24646
+ }, ref) {
24647
+ return /* @__PURE__ */ React9.createElement(Icon, {
24648
+ width: size,
24649
+ height: size,
24650
+ ref,
24651
+ xmlns: "http://www.w3.org/2000/svg",
24652
+ viewBox: "0 0 32 32",
24653
+ fill: "currentColor",
24654
+ ...rest
24655
+ }, _path947 || (_path947 = /* @__PURE__ */ React9.createElement("path", {
24656
+ d: "M21 16H23V18H21zM9 16H17V18H9zM21 12H23V14H21zM9 12H17V14H9zM9 8H23V10H9z"
24657
+ })), _path957 || (_path957 = /* @__PURE__ */ React9.createElement("path", {
24658
+ d: "M25,2H7A2.002,2.002,0,0,0,5,4V29a1,1,0,0,0,1,1H7a.9987.9987,0,0,0,.8-.4L10,26.667,12.2,29.6a1.0353,1.0353,0,0,0,1.6,0L16,26.667,18.2,29.6a1.0353,1.0353,0,0,0,1.6,0L22,26.667,24.2,29.6a.9993.9993,0,0,0,.8.4h1a1,1,0,0,0,1-1V4A2.0023,2.0023,0,0,0,25,2Zm0,25.333L22.8,24.4a1.0353,1.0353,0,0,0-1.6,0L19,27.333,16.8,24.4a1.0353,1.0353,0,0,0-1.6,0L13,27.333,10.8,24.4a1.0353,1.0353,0,0,0-1.6,0L7,27.333V4H25Z"
24659
+ })), children);
24660
+ });
24661
+ if (process.env.NODE_ENV !== "production") {
24662
+ Receipt.propTypes = iconPropTypes;
24663
+ }
24664
+ var RecentlyViewed = /* @__PURE__ */ React9.forwardRef(function RecentlyViewed2({
24665
+ children,
24666
+ size = 16,
24667
+ ...rest
24668
+ }, ref) {
24669
+ return /* @__PURE__ */ React9.createElement(Icon, {
24670
+ width: size,
24671
+ height: size,
24672
+ ref,
24673
+ xmlns: "http://www.w3.org/2000/svg",
24674
+ viewBox: "0 0 32 32",
24675
+ fill: "currentColor",
24676
+ ...rest
24677
+ }, _path967 || (_path967 = /* @__PURE__ */ React9.createElement("path", {
24678
+ d: "M20.59 22L15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22z"
24679
+ })), _path977 || (_path977 = /* @__PURE__ */ React9.createElement("path", {
24680
+ d: "M16,2A13.94,13.94,0,0,0,6,6.23V2H4v8h8V8H7.08A12,12,0,1,1,4,16H2A14,14,0,1,0,16,2Z"
24681
+ })), children);
24682
+ });
24683
+ if (process.env.NODE_ENV !== "production") {
24684
+ RecentlyViewed.propTypes = iconPropTypes;
24685
+ }
24686
+ var Recommend = /* @__PURE__ */ React9.forwardRef(function Recommend2({
24687
+ children,
24688
+ size = 16,
24689
+ ...rest
24690
+ }, ref) {
24691
+ return /* @__PURE__ */ React9.createElement(Icon, {
24692
+ width: size,
24693
+ height: size,
24694
+ ref,
24695
+ xmlns: "http://www.w3.org/2000/svg",
24696
+ viewBox: "0 0 32 32",
24697
+ fill: "currentColor",
24698
+ ...rest
24699
+ }, _path987 || (_path987 = /* @__PURE__ */ React9.createElement("path", {
24700
+ d: "M16,2a9,9,0,0,0-6,15.69V30l6-4,6,4V17.69A9,9,0,0,0,16,2Zm4,24.26-2.89-1.92L16,23.6l-1.11.74L12,26.26V19.05a8.88,8.88,0,0,0,8,0ZM20.89,16A7,7,0,1,1,23,11,7,7,0,0,1,20.89,16Z"
24701
+ })), children);
24702
+ });
24703
+ if (process.env.NODE_ENV !== "production") {
24704
+ Recommend.propTypes = iconPropTypes;
24705
+ }
24706
+ var Recording = /* @__PURE__ */ React9.forwardRef(function Recording2({
24707
+ children,
24708
+ size = 16,
24709
+ ...rest
24710
+ }, ref) {
24711
+ return /* @__PURE__ */ React9.createElement(Icon, {
24712
+ width: size,
24713
+ height: size,
24714
+ ref,
24715
+ xmlns: "http://www.w3.org/2000/svg",
24716
+ viewBox: "0 0 32 32",
24717
+ fill: "currentColor",
24718
+ ...rest
24719
+ }, _path997 || (_path997 = /* @__PURE__ */ React9.createElement("path", {
24720
+ d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"
24721
+ })), _path1007 || (_path1007 = /* @__PURE__ */ React9.createElement("path", {
24722
+ d: "M16,12a4,4,0,1,1-4,4,4,4,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"
24723
+ })), children);
24724
+ });
24725
+ if (process.env.NODE_ENV !== "production") {
24726
+ Recording.propTypes = iconPropTypes;
24727
+ }
24728
+ var RecordingFilled = /* @__PURE__ */ React9.forwardRef(function RecordingFilled2({
24729
+ children,
24730
+ size = 16,
24731
+ ...rest
24732
+ }, ref) {
24733
+ return /* @__PURE__ */ React9.createElement(Icon, {
24734
+ width: size,
24735
+ height: size,
24736
+ ref,
24737
+ xmlns: "http://www.w3.org/2000/svg",
24738
+ viewBox: "0 0 32 32",
24739
+ fill: "currentColor",
24740
+ ...rest
24741
+ }, _circle196 || (_circle196 = /* @__PURE__ */ React9.createElement("circle", {
24742
+ cx: "16",
24743
+ cy: "16",
24744
+ r: "4"
24745
+ })), _path10110 || (_path10110 = /* @__PURE__ */ React9.createElement("path", {
24746
+ d: "M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14S23.7,2,16,2z M16,22c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6 S19.3,22,16,22z"
24747
+ })), children);
24748
+ });
24749
+ if (process.env.NODE_ENV !== "production") {
24750
+ RecordingFilled.propTypes = iconPropTypes;
24751
+ }
24752
+ var RecordingFilledAlt = /* @__PURE__ */ React9.forwardRef(function RecordingFilledAlt2({
24753
+ children,
24754
+ size = 16,
24755
+ ...rest
24756
+ }, ref) {
24757
+ return /* @__PURE__ */ React9.createElement(Icon, {
24758
+ width: size,
24759
+ height: size,
24760
+ ref,
24761
+ xmlns: "http://www.w3.org/2000/svg",
24762
+ viewBox: "0 0 32 32",
24763
+ fill: "currentColor",
24764
+ ...rest
24765
+ }, _path1027 || (_path1027 = /* @__PURE__ */ React9.createElement("path", {
24766
+ d: "M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14S23.7,2,16,2z M16,22c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S19.3,22,16,22 z"
24767
+ })), _path1037 || (_path1037 = /* @__PURE__ */ React9.createElement("path", {
24768
+ d: "M16,10c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S19.3,10,16,10z",
24769
+ "data-icon-path": "inner-path",
24770
+ opacity: "0"
24771
+ })), children);
24772
+ });
24773
+ if (process.env.NODE_ENV !== "production") {
24774
+ RecordingFilledAlt.propTypes = iconPropTypes;
24775
+ }
24776
+ var Recycle = /* @__PURE__ */ React9.forwardRef(function Recycle2({
24777
+ children,
24778
+ size = 16,
24779
+ ...rest
24780
+ }, ref) {
24781
+ return /* @__PURE__ */ React9.createElement(Icon, {
24782
+ width: size,
24783
+ height: size,
24784
+ ref,
24785
+ xmlns: "http://www.w3.org/2000/svg",
24786
+ viewBox: "0 0 32 32",
24787
+ fill: "currentColor",
24788
+ ...rest
24789
+ }, _path1047 || (_path1047 = /* @__PURE__ */ React9.createElement("path", {
24790
+ d: "M29.5081 22.2549l-2.0781-3.7402-1.7485.9707 2.0781 3.7412c.3247.584.3162 1.2769-.0229 1.8535-.3391.5762-.9407.9199-1.6091.9199h-7.2974l2.5801-2.5898-1.4102-1.4102-5 5 5 5 1.4102-1.4102-2.5801-2.5898h7.2974c1.3848 0 2.6306-.7124 3.3328-1.9058.7024-1.1938.7202-2.6284.0479-3.8394zM5.8726 26c-.6685 0-1.27-.3438-1.6091-.9199-.3391-.5767-.3477-1.2695-.0229-1.8535l4.1111-7.4004 1.0479 3.52 1.9121-.5664-2.0083-6.7798-6.7798 2.0083.5664 1.9121 3.4934-1.0298-4.0913 7.3643c-.6724 1.2109-.6545 2.6455.0479 3.8394.7021 1.1934 1.948 1.9058 3.3328 1.9058h6.1274v-2H5.8726zM25.51 9.6538l-1.0476 3.519L19.3503 3.9712c-.6858-1.2344-1.9382-1.9712-3.3503-1.9712s-2.6646.7368-3.3503 1.9712l-3.0796 5.5435 1.7485.9707 3.0796-5.543c.3276-.5898.9265-.9424 1.6018-.9424s1.2742.3525 1.6018.9424l5.0925 9.167-3.4939-1.0298-.5664 1.9121 6.78 2.0083 2.0083-6.7798-1.9124-.5664z"
24791
+ })), children);
24792
+ });
24793
+ if (process.env.NODE_ENV !== "production") {
24794
+ Recycle.propTypes = iconPropTypes;
24795
+ }
24796
+ var Redefinition = /* @__PURE__ */ React9.forwardRef(function Redefinition2({
24797
+ children,
24798
+ size = 16,
24799
+ ...rest
24800
+ }, ref) {
24801
+ return /* @__PURE__ */ React9.createElement(Icon, {
24802
+ width: size,
24803
+ height: size,
24804
+ ref,
24805
+ xmlns: "http://www.w3.org/2000/svg",
24806
+ viewBox: "0 0 32 32",
24807
+ fill: "currentColor",
24808
+ ...rest
24809
+ }, _path1057 || (_path1057 = /* @__PURE__ */ React9.createElement("path", {
24810
+ d: "M13,28v-4h7v-2h-7v-4h7c.3564,0,.686-.1899.865-.498.179-.3086.1802-.6885.0032-.998L12.8682,2.5039c-.356-.623-1.3804-.623-1.7363,0L3.1318,16.5039c-.177.3096-.1758.6895.0032.998.179.3081.5085.498.865.498h7v4h-7v2h7v4c0,1.1045.8955,2,2,2h15v-2h-15ZM5.7231,16l6.2769-10.9844,6.2769,10.9844H5.7231Z"
24811
+ })), children);
24812
+ });
24813
+ if (process.env.NODE_ENV !== "production") {
24814
+ Redefinition.propTypes = iconPropTypes;
24815
+ }
24816
+ var Redo = /* @__PURE__ */ React9.forwardRef(function Redo2({
24817
+ children,
24818
+ size = 16,
24819
+ ...rest
24820
+ }, ref) {
24821
+ return /* @__PURE__ */ React9.createElement(Icon, {
24822
+ width: size,
24823
+ height: size,
24824
+ ref,
24825
+ xmlns: "http://www.w3.org/2000/svg",
24826
+ viewBox: "0 0 32 32",
24827
+ fill: "currentColor",
24828
+ ...rest
24829
+ }, _path1067 || (_path1067 = /* @__PURE__ */ React9.createElement("path", {
24830
+ d: "M12,10H24.1851L20.5977,6.4141,22,5,28,11,22,17l-1.4023-1.4146L24.1821,12H12a6,6,0,0,0,0,12h8v2H12a8,8,0,0,1,0-16Z"
24831
+ })), children);
24832
+ });
24833
+ if (process.env.NODE_ENV !== "production") {
24834
+ Redo.propTypes = iconPropTypes;
24835
+ }
24836
+ var RefEvapotranspiration = /* @__PURE__ */ React9.forwardRef(function RefEvapotranspiration2({
24837
+ children,
24838
+ size = 16,
24839
+ ...rest
24840
+ }, ref) {
24841
+ return /* @__PURE__ */ React9.createElement(Icon, {
24842
+ width: size,
24843
+ height: size,
24844
+ ref,
24845
+ xmlns: "http://www.w3.org/2000/svg",
24846
+ viewBox: "0 0 32 32",
24847
+ fill: "currentColor",
24848
+ ...rest
24849
+ }, _path1077 || (_path1077 = /* @__PURE__ */ React9.createElement("path", {
24850
+ d: "M14 12a3.8978 3.8978 0 01-4-3.777 3.9017 3.9017 0 01.6533-2.0639L13.17 2.4141a1.0381 1.0381 0 011.6592 0L17.3154 6.11A3.9693 3.9693 0 0118 8.223 3.8978 3.8978 0 0114 12zm.0005-7.2368L12.3438 7.2257A1.89 1.89 0 0012 8.223 1.9 1.9 0 0014 10a1.9 1.9 0 002-1.777 1.98 1.98 0 00-.375-1.0466zM7.5 26A5.385 5.385 0 012 20.751 5.3837 5.3837 0 012.874 17.92L6.49 12.5383a1.2168 1.2168 0 012.02-.0006l3.55 5.2777A5.4923 5.4923 0 0113 20.751 5.385 5.385 0 017.5 26zm0-11.38L4.5649 18.9868A3.3586 3.3586 0 004 20.751 3.3855 3.3855 0 007.5 24 3.3855 3.3855 0 0011 20.751a3.4354 3.4354 0 00-.63-1.867zM25 2L20 7l1.4141 1.4141L24 5.8281V16a4.0045 4.0045 0 01-4 4H16v2h4a6.0066 6.0066 0 006-6V5.8281l2.5859 2.586L30 7zM2 28H30V30H2z"
24851
+ })), children);
24852
+ });
24853
+ if (process.env.NODE_ENV !== "production") {
24854
+ RefEvapotranspiration.propTypes = iconPropTypes;
24855
+ }
24856
+ var ReferenceArchitecture = /* @__PURE__ */ React9.forwardRef(function ReferenceArchitecture2({
24857
+ children,
24858
+ size = 16,
24859
+ ...rest
24860
+ }, ref) {
24861
+ return /* @__PURE__ */ React9.createElement(Icon, {
24862
+ width: size,
24863
+ height: size,
24864
+ ref,
24865
+ xmlns: "http://www.w3.org/2000/svg",
24866
+ viewBox: "0 0 32 32",
24867
+ fill: "currentColor",
24868
+ ...rest
24869
+ }, _circle206 || (_circle206 = /* @__PURE__ */ React9.createElement("circle", {
24870
+ cx: "18",
24871
+ cy: "26",
24872
+ r: "1"
24873
+ })), _path1087 || (_path1087 = /* @__PURE__ */ React9.createElement("path", {
24874
+ d: "m28,20c1.1028,0,2-.8975,2-2v-4c0-1.1025-.8972-2-2-2h-1v-5c0-1.1025-.8972-2-2-2h-5v-1c0-1.1025-.8972-2-2-2h-4c-1.1028,0-2,.8975-2,2v1h-5c-1.1028,0-2,.8975-2,2v5.1421c-1.7202.4473-3,1.9995-3,3.8579s1.2798,3.4106,3,3.8579v5.1421c0,1.1025.8972,2,2,2h7v1c0,1.1025.8972,2,2,2h12c1.1028,0,2-.8975,2-2v-4c0-1.1025-.8972-2-2-2h-1v-2h1Zm0-2h-4v-4h4v4ZM14,4h4v4h-4v-4Zm-2,3v1c0,1.1025.8972,2,2,2h4c1.1028,0,2-.8975,2-2v-1h5v5h-1c-1.1028,0-2,.8975-2,2v1h-12.1421c-.3638-1.3989-1.4592-2.4941-2.8579-2.8579v-5.1421h5Zm-8,9c0-1.1025.8972-2,2-2s2,.8975,2,2-.8972,2-2,2-2-.8975-2-2Zm24,12h-12v-4h12v4Zm-3-6h-9c-1.1028,0-2,.8975-2,2v1h-7v-5.1421c1.3987-.3638,2.4941-1.459,2.8579-2.8579h12.1421v1c0,1.1025.8972,2,2,2h1v2Z"
24875
+ })), children);
24876
+ });
24877
+ if (process.env.NODE_ENV !== "production") {
24878
+ ReferenceArchitecture.propTypes = iconPropTypes;
24879
+ }
24880
+ var ReflectHorizontal = /* @__PURE__ */ React9.forwardRef(function ReflectHorizontal2({
24881
+ children,
24882
+ size = 16,
24883
+ ...rest
24884
+ }, ref) {
24885
+ return /* @__PURE__ */ React9.createElement(Icon, {
24886
+ width: size,
24887
+ height: size,
24888
+ ref,
24889
+ xmlns: "http://www.w3.org/2000/svg",
24890
+ viewBox: "0 0 32 32",
24891
+ fill: "currentColor",
24892
+ ...rest
24893
+ }, _path1097 || (_path1097 = /* @__PURE__ */ React9.createElement("path", {
24894
+ d: "M19.386,15.2105l9-7A1,1,0,0,1,30,9V23a1,1,0,0,1-1.614.79l-9-7a1,1,0,0,1,0-1.5791Z"
24895
+ })), _path11010 || (_path11010 = /* @__PURE__ */ React9.createElement("path", {
24896
+ d: "M15 2H17V30H15z",
24897
+ transform: "rotate(-180 16 16)"
24898
+ })), _path11110 || (_path11110 = /* @__PURE__ */ React9.createElement("path", {
24899
+ d: "M13,16a1.001,1.001,0,0,1-.386.79l-9,7A1,1,0,0,1,2,23V9a1,1,0,0,1,1.614-.79l9,7A1.001,1.001,0,0,1,13,16ZM4,20.9556,10.3711,16,4,11.0444Z"
24900
+ })), children);
24901
+ });
24902
+ if (process.env.NODE_ENV !== "production") {
24903
+ ReflectHorizontal.propTypes = iconPropTypes;
24904
+ }
24905
+ var ReflectVertical = /* @__PURE__ */ React9.forwardRef(function ReflectVertical2({
24906
+ children,
24907
+ size = 16,
24908
+ ...rest
24909
+ }, ref) {
24910
+ return /* @__PURE__ */ React9.createElement(Icon, {
24911
+ width: size,
24912
+ height: size,
24913
+ ref,
24914
+ xmlns: "http://www.w3.org/2000/svg",
24915
+ viewBox: "0 0 32 32",
24916
+ fill: "currentColor",
24917
+ ...rest
24918
+ }, _path1127 || (_path1127 = /* @__PURE__ */ React9.createElement("path", {
24919
+ d: "M16.79,19.386l7,9A1,1,0,0,1,23,30H9a1,1,0,0,1-.79-1.614l7-9a1,1,0,0,1,1.5791,0Z"
24920
+ })), _path1137 || (_path1137 = /* @__PURE__ */ React9.createElement("path", {
24921
+ d: "M15 2H17V30H15z",
24922
+ transform: "rotate(-90 16 16)"
24923
+ })), _path1147 || (_path1147 = /* @__PURE__ */ React9.createElement("path", {
24924
+ d: "M16,13a1.001,1.001,0,0,1-.79-.386l-7-9A1,1,0,0,1,9,2H23a1,1,0,0,1,.79,1.614l-7,9A1.001,1.001,0,0,1,16,13ZM11.0444,4,16,10.3711,20.9556,4Z"
24925
+ })), children);
24926
+ });
24927
+ if (process.env.NODE_ENV !== "production") {
24928
+ ReflectVertical.propTypes = iconPropTypes;
24929
+ }
24930
+ var WatsonHealthRegionAnalysisArea = /* @__PURE__ */ React9.forwardRef(function WatsonHealthRegionAnalysisArea2({
24931
+ children,
24932
+ size = 16,
24933
+ ...rest
24934
+ }, ref) {
24935
+ return /* @__PURE__ */ React9.createElement(Icon, {
24936
+ width: size,
24937
+ height: size,
24938
+ ref,
24939
+ xmlns: "http://www.w3.org/2000/svg",
24940
+ viewBox: "0 0 32 32",
24941
+ fill: "currentColor",
24942
+ ...rest
24943
+ }, _path1157 || (_path1157 = /* @__PURE__ */ React9.createElement("path", {
24944
+ d: "M30,23V21H28V19H26v2H23V19H21v2H19v2h2v3H19v2h2v2h2V28h3v2h2V28h2V26H28V23Zm-4,3H23V23h3Z"
24945
+ })), _path1167 || (_path1167 = /* @__PURE__ */ React9.createElement("path", {
24946
+ d: "M16,30A14,14,0,1,1,30,16H28A12,12,0,1,0,16,28Z"
24947
+ })), children);
24948
+ });
24949
+ if (process.env.NODE_ENV !== "production") {
24950
+ WatsonHealthRegionAnalysisArea.propTypes = iconPropTypes;
24951
+ }
24952
+ var WatsonHealthRegionAnalysisVolume = /* @__PURE__ */ React9.forwardRef(function WatsonHealthRegionAnalysisVolume2({
24953
+ children,
24954
+ size = 16,
24955
+ ...rest
24956
+ }, ref) {
24957
+ return /* @__PURE__ */ React9.createElement(Icon, {
24958
+ width: size,
24959
+ height: size,
24960
+ ref,
24961
+ xmlns: "http://www.w3.org/2000/svg",
24962
+ viewBox: "0 0 32 32",
24963
+ fill: "currentColor",
24964
+ ...rest
24965
+ }, _path1177 || (_path1177 = /* @__PURE__ */ React9.createElement("path", {
24966
+ d: "M30,23V21H28V19H26v2H23V19H21v2H19v2h2v3H19v2h2v2h2V28h3v2h2V28h2V26H28V23Zm-4,3H23V23h3Z"
24967
+ })), _path1187 || (_path1187 = /* @__PURE__ */ React9.createElement("path", {
24968
+ d: "M4.8305,20.3555A24.9534,24.9534,0,0,0,15,22.9644v-2A22.9014,22.9014,0,0,1,4.1335,17.6919,11.979,11.979,0,0,1,4,16a11.9847,11.9847,0,0,1,.1332-1.69,22.9282,22.9282,0,0,1,23.7336,0A11.9847,11.9847,0,0,1,28,16h2A14,14,0,1,0,16,30V28A12.01,12.01,0,0,1,4.8305,20.3555ZM16,4a12.01,12.01,0,0,1,11.17,7.6465,24.8982,24.8982,0,0,0-22.3406,0A12.01,12.01,0,0,1,16,4Z"
24969
+ })), children);
24970
+ });
24971
+ if (process.env.NODE_ENV !== "production") {
24972
+ WatsonHealthRegionAnalysisVolume.propTypes = iconPropTypes;
24973
+ }
24974
+ var WatsonHealthRegistration = /* @__PURE__ */ React9.forwardRef(function WatsonHealthRegistration2({
24975
+ children,
24976
+ size = 16,
24977
+ ...rest
24978
+ }, ref) {
24979
+ return /* @__PURE__ */ React9.createElement(Icon, {
24980
+ width: size,
24981
+ height: size,
24982
+ ref,
24983
+ xmlns: "http://www.w3.org/2000/svg",
24984
+ viewBox: "0 0 32 32",
24985
+ fill: "currentColor",
24986
+ ...rest
24987
+ }, _path1197 || (_path1197 = /* @__PURE__ */ React9.createElement("path", {
24988
+ d: "M28 25H20a2.0027 2.0027 0 01-2-2V20h2v3h8V9H20v3H18V9a2.0023 2.0023 0 012-2h8a2.0023 2.0023 0 012 2V23A2.0027 2.0027 0 0128 25zM8 15H12V17H8z"
24989
+ })), _path1207 || (_path1207 = /* @__PURE__ */ React9.createElement("path", {
24990
+ d: "M20 15H24V17H20zM14 15H18V17H14zM12 25H4a2.0023 2.0023 0 01-2-2V9A2.002 2.002 0 014 7h8a2.002 2.002 0 012 2v3H12V9H4V23h8V20h2v3A2.0023 2.0023 0 0112 25z"
24991
+ })), children);
24992
+ });
24993
+ if (process.env.NODE_ENV !== "production") {
24994
+ WatsonHealthRegistration.propTypes = iconPropTypes;
24995
+ }
24996
+ var Reminder = /* @__PURE__ */ React9.forwardRef(function Reminder2({
24997
+ children,
24998
+ size = 16,
24999
+ ...rest
25000
+ }, ref) {
25001
+ return /* @__PURE__ */ React9.createElement(Icon, {
25002
+ width: size,
25003
+ height: size,
25004
+ ref,
25005
+ xmlns: "http://www.w3.org/2000/svg",
25006
+ viewBox: "0 0 32 32",
25007
+ fill: "currentColor",
25008
+ ...rest
25009
+ }, _path12110 || (_path12110 = /* @__PURE__ */ React9.createElement("path", {
25010
+ d: "M30,23.3818l-2-1V20a6.0046,6.0046,0,0,0-5-5.91V12H21v2.09A6.0046,6.0046,0,0,0,16,20v2.3818l-2,1V28h6v2h4V28h6ZM28,26H16V24.6182l2-1V20a4,4,0,0,1,8,0v3.6182l2,1Z"
25011
+ })), _path1227 || (_path1227 = /* @__PURE__ */ React9.createElement("path", {
25012
+ d: "M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z"
25013
+ })), children);
25014
+ });
25015
+ if (process.env.NODE_ENV !== "production") {
25016
+ Reminder.propTypes = iconPropTypes;
25017
+ }
25018
+ var ReminderMedical = /* @__PURE__ */ React9.forwardRef(function ReminderMedical2({
25019
+ children,
25020
+ size = 16,
25021
+ ...rest
25022
+ }, ref) {
25023
+ return /* @__PURE__ */ React9.createElement(Icon, {
25024
+ width: size,
25025
+ height: size,
25026
+ ref,
25027
+ xmlns: "http://www.w3.org/2000/svg",
25028
+ viewBox: "0 0 32 32",
25029
+ fill: "currentColor",
25030
+ ...rest
25031
+ }, _path1237 || (_path1237 = /* @__PURE__ */ React9.createElement("path", {
25032
+ d: "M27,12v2h1v4a3,3,0,0,1-6,0V14h1V12H20v6a5.0083,5.0083,0,0,0,4,4.8989V24a4,4,0,0,1-8,0V21.8157a3,3,0,1,0-2,0V24a6,6,0,0,0,12,0V22.8989A5.0083,5.0083,0,0,0,30,18V12ZM15,18a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,15,18Z"
25033
+ })), _path1247 || (_path1247 = /* @__PURE__ */ React9.createElement("path", {
25034
+ d: "M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2l4,0V26L6,26V6h4V8h2V6h8V8h2V6h4v4h2V6A2,2,0,0,0,26,4Z"
25035
+ })), children);
25036
+ });
25037
+ if (process.env.NODE_ENV !== "production") {
25038
+ ReminderMedical.propTypes = iconPropTypes;
25039
+ }
25040
+ var Renew = /* @__PURE__ */ React9.forwardRef(function Renew2({
25041
+ children,
25042
+ size = 16,
25043
+ ...rest
25044
+ }, ref) {
25045
+ return /* @__PURE__ */ React9.createElement(Icon, {
25046
+ width: size,
25047
+ height: size,
25048
+ ref,
25049
+ xmlns: "http://www.w3.org/2000/svg",
25050
+ viewBox: "0 0 32 32",
25051
+ fill: "currentColor",
25052
+ ...rest
25053
+ }, _path1257 || (_path1257 = /* @__PURE__ */ React9.createElement("path", {
25054
+ d: "M12 10H6.78A11 11 0 0127 16h2A13 13 0 006 7.68V4H4v8h8zM20 22h5.22A11 11 0 015 16H3a13 13 0 0023 8.32V28h2V20H20z"
25055
+ })), children);
25056
+ });
25057
+ if (process.env.NODE_ENV !== "production") {
25058
+ Renew.propTypes = iconPropTypes;
25059
+ }
25060
+ var Repeat = /* @__PURE__ */ React9.forwardRef(function Repeat2({
25061
+ children,
25062
+ size = 16,
25063
+ ...rest
25064
+ }, ref) {
25065
+ return /* @__PURE__ */ React9.createElement(Icon, {
25066
+ width: size,
25067
+ height: size,
25068
+ ref,
25069
+ xmlns: "http://www.w3.org/2000/svg",
25070
+ viewBox: "0 0 32 32",
25071
+ fill: "currentColor",
25072
+ ...rest
25073
+ }, _path1267 || (_path1267 = /* @__PURE__ */ React9.createElement("path", {
25074
+ d: "M6 6H26.1719l-3.586-3.5859L24 1l6 6-6 6-1.4141-1.4141L26.1719 8H6v7H4V8A2.0024 2.0024 0 016 6zM9.4141 20.4141L5.8281 24H26V17h2v7a2.0024 2.0024 0 01-2 2H5.8281L9.414 29.5859 8 31 2 25l6-6z"
25075
+ })), children);
25076
+ });
25077
+ if (process.env.NODE_ENV !== "production") {
25078
+ Repeat.propTypes = iconPropTypes;
25079
+ }
25080
+ var RepeatOne = /* @__PURE__ */ React9.forwardRef(function RepeatOne2({
25081
+ children,
25082
+ size = 16,
25083
+ ...rest
25084
+ }, ref) {
25085
+ return /* @__PURE__ */ React9.createElement(Icon, {
25086
+ width: size,
25087
+ height: size,
25088
+ ref,
25089
+ xmlns: "http://www.w3.org/2000/svg",
25090
+ viewBox: "0 0 32 32",
25091
+ fill: "currentColor",
25092
+ ...rest
25093
+ }, _path1277 || (_path1277 = /* @__PURE__ */ React9.createElement("path", {
25094
+ d: "M6 6H26.1719l-3.586-3.5859L24 1l6 6-6 6-1.4141-1.4141L26.1719 8H6v7H4V8A2.0024 2.0024 0 016 6zM9.4141 20.4141L5.8281 24H26V17h2v7a2.0024 2.0024 0 01-2 2H5.8281L9.414 29.5859 8 31 2 25l6-6z"
25095
+ })), _path1287 || (_path1287 = /* @__PURE__ */ React9.createElement("path", {
25096
+ d: "M17 19L17 11 15 11 15 12 13 12 13 14 15 14 15 19 13 19 13 21 19 21 19 19 17 19z"
25097
+ })), children);
25098
+ });
25099
+ if (process.env.NODE_ENV !== "production") {
25100
+ RepeatOne.propTypes = iconPropTypes;
25101
+ }
25102
+ var Replicate = /* @__PURE__ */ React9.forwardRef(function Replicate2({
25103
+ children,
25104
+ size = 16,
25105
+ ...rest
25106
+ }, ref) {
25107
+ return /* @__PURE__ */ React9.createElement(Icon, {
25108
+ width: size,
25109
+ height: size,
25110
+ ref,
25111
+ xmlns: "http://www.w3.org/2000/svg",
25112
+ viewBox: "0 0 32 32",
25113
+ fill: "currentColor",
25114
+ ...rest
25115
+ }, _path1297 || (_path1297 = /* @__PURE__ */ React9.createElement("path", {
25116
+ d: "M28 8h2V4a2.0021 2.0021 0 00-2-2H24V4h4zM17 2H21V4H17zM28 11H30V15H28zM28 18v4H24V10a2.0023 2.0023 0 00-2-2H10V4h4V2H10A2.0023 2.0023 0 008 4V8H4a2.0023 2.0023 0 00-2 2V28a2.0023 2.0023 0 002 2H22a2.0023 2.0023 0 002-2V24h4a2.0023 2.0023 0 002-2V18zM22 28H4V10H22z"
25117
+ })), children);
25118
+ });
25119
+ if (process.env.NODE_ENV !== "production") {
25120
+ Replicate.propTypes = iconPropTypes;
25121
+ }
25122
+ var Reply = /* @__PURE__ */ React9.forwardRef(function Reply2({
25123
+ children,
25124
+ size = 16,
25125
+ ...rest
25126
+ }, ref) {
25127
+ return /* @__PURE__ */ React9.createElement(Icon, {
25128
+ width: size,
25129
+ height: size,
25130
+ ref,
25131
+ xmlns: "http://www.w3.org/2000/svg",
25132
+ viewBox: "0 0 32 32",
25133
+ fill: "currentColor",
25134
+ ...rest
25135
+ }, _path1307 || (_path1307 = /* @__PURE__ */ React9.createElement("path", {
25136
+ d: "M28.88,30a1,1,0,0,1-.88-.5A15.19,15.19,0,0,0,15,22v6a1,1,0,0,1-.62.92,1,1,0,0,1-1.09-.21l-12-12a1,1,0,0,1,0-1.42l12-12a1,1,0,0,1,1.09-.21A1,1,0,0,1,15,4v6.11a17.19,17.19,0,0,1,15,17,16.34,16.34,0,0,1-.13,2,1,1,0,0,1-.79.86ZM14.5,20A17.62,17.62,0,0,1,28,26,15.31,15.31,0,0,0,13.91,12,1,1,0,0,1,13,11V6.41L3.41,16,13,25.59V21a1,1,0,0,1,1-1h.54Z"
25137
+ })), children);
25138
+ });
25139
+ if (process.env.NODE_ENV !== "production") {
25140
+ Reply.propTypes = iconPropTypes;
25141
+ }
25142
+ var ReplyAll = /* @__PURE__ */ React9.forwardRef(function ReplyAll2({
25143
+ children,
25144
+ size = 16,
25145
+ ...rest
25146
+ }, ref) {
25147
+ return /* @__PURE__ */ React9.createElement(Icon, {
25148
+ width: size,
25149
+ height: size,
25150
+ ref,
25151
+ xmlns: "http://www.w3.org/2000/svg",
25152
+ viewBox: "0 0 32 32",
25153
+ fill: "currentColor",
25154
+ ...rest
25155
+ }, _path13110 || (_path13110 = /* @__PURE__ */ React9.createElement("path", {
25156
+ d: "M19,29a.9989.9989,0,0,1-.768-.36l-10-12a1,1,0,0,1,0-1.28l10-12A1,1,0,0,1,20,4v7.0325c7.0074.4629,11,5.86,11,14.9677a1,1,0,0,1-1.8.6c-2.8218-3.7623-5.3912-5.3463-9.2-5.5716V28a1,1,0,0,1-1,1ZM10.3016,16,18,25.238V20a1,1,0,0,1,1-1,12.7127,12.7127,0,0,1,9.8414,4.0909C28.0864,16.5553,24.6587,13,19,13a1,1,0,0,1-1-1V6.7618Z"
25157
+ })), _path1327 || (_path1327 = /* @__PURE__ */ React9.createElement("path", {
25158
+ d: "M11.4639,28.9182,1.2318,16.64a1,1,0,0,1,0-1.28L11.4638,3.0792,13,4.36,3.3016,16,13,27.638Z"
25159
+ })), children);
25160
+ });
25161
+ if (process.env.NODE_ENV !== "production") {
25162
+ ReplyAll.propTypes = iconPropTypes;
25163
+ }
25164
+ var RepoArtifact = /* @__PURE__ */ React9.forwardRef(function RepoArtifact2({
25165
+ children,
25166
+ size = 16,
25167
+ ...rest
25168
+ }, ref) {
25169
+ return /* @__PURE__ */ React9.createElement(Icon, {
25170
+ width: size,
25171
+ height: size,
25172
+ ref,
25173
+ xmlns: "http://www.w3.org/2000/svg",
25174
+ viewBox: "0 0 32 32",
25175
+ fill: "currentColor",
25176
+ ...rest
25177
+ }, _path1337 || (_path1337 = /* @__PURE__ */ React9.createElement("path", {
25178
+ d: "M30,24v-2h-2.1c-0.1-0.6-0.4-1.2-0.7-1.8l1.5-1.5l-1.4-1.4l-1.5,1.5c-0.5-0.3-1.1-0.6-1.8-0.7V16h-2v2.1 c-0.6,0.1-1.2,0.4-1.8,0.7l-1.5-1.5l-1.4,1.4l1.5,1.5c-0.3,0.5-0.6,1.1-0.7,1.8H16v2h2.1c0.1,0.6,0.4,1.2,0.7,1.8l-1.5,1.5l1.4,1.4 l1.5-1.5c0.5,0.3,1.1,0.6,1.8,0.7V30h2v-2.1c0.6-0.1,1.2-0.4,1.8-0.7l1.5,1.5l1.4-1.4l-1.5-1.5c0.3-0.5,0.6-1.1,0.7-1.8H30z M23,26 c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S24.7,26,23,26z"
25179
+ })), _path1347 || (_path1347 = /* @__PURE__ */ React9.createElement("path", {
25180
+ d: "M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h10v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v5h2v-5 C30,8.9,29.1,8,28,8z"
25181
+ })), children);
25182
+ });
25183
+ if (process.env.NODE_ENV !== "production") {
25184
+ RepoArtifact.propTypes = iconPropTypes;
25185
+ }
25186
+ var RepoSourceCode = /* @__PURE__ */ React9.forwardRef(function RepoSourceCode2({
25187
+ children,
25188
+ size = 16,
25189
+ ...rest
25190
+ }, ref) {
25191
+ return /* @__PURE__ */ React9.createElement(Icon, {
25192
+ width: size,
25193
+ height: size,
25194
+ ref,
25195
+ xmlns: "http://www.w3.org/2000/svg",
25196
+ viewBox: "0 0 32 32",
25197
+ fill: "currentColor",
25198
+ ...rest
25199
+ }, _path1357 || (_path1357 = /* @__PURE__ */ React9.createElement("path", {
25200
+ d: "M23.6 21.4L27.2 25 27.2 25 23.6 28.6 25 30 30 25 25 20zM20.4 21.4L16.8 25 16.8 25 20.4 28.6 19 30 14 25 19 20z"
25201
+ })), _path1367 || (_path1367 = /* @__PURE__ */ React9.createElement("path", {
25202
+ d: "M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h7v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v8h2v-8 C30,8.9,29.1,8,28,8z"
25203
+ })), children);
25204
+ });
25205
+ if (process.env.NODE_ENV !== "production") {
25206
+ RepoSourceCode.propTypes = iconPropTypes;
25207
+ }
25208
+ var Report = /* @__PURE__ */ React9.forwardRef(function Report2({
25209
+ children,
25210
+ size = 16,
25211
+ ...rest
25212
+ }, ref) {
25213
+ return /* @__PURE__ */ React9.createElement(Icon, {
25214
+ width: size,
25215
+ height: size,
25216
+ ref,
25217
+ xmlns: "http://www.w3.org/2000/svg",
25218
+ viewBox: "0 0 32 32",
25219
+ fill: "currentColor",
25220
+ ...rest
25221
+ }, _path1377 || (_path1377 = /* @__PURE__ */ React9.createElement("path", {
25222
+ d: "M10 18H18V20H10zM10 13H22V15H10zM10 23H15V25H10z"
25223
+ })), _path1387 || (_path1387 = /* @__PURE__ */ React9.createElement("path", {
25224
+ d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z"
25225
+ })), children);
25226
+ });
25227
+ if (process.env.NODE_ENV !== "production") {
25228
+ Report.propTypes = iconPropTypes;
25229
+ }
25230
+ var ReportData = /* @__PURE__ */ React9.forwardRef(function ReportData2({
25231
+ children,
25232
+ size = 16,
25233
+ ...rest
25234
+ }, ref) {
25235
+ return /* @__PURE__ */ React9.createElement(Icon, {
25236
+ width: size,
25237
+ height: size,
25238
+ ref,
25239
+ xmlns: "http://www.w3.org/2000/svg",
25240
+ viewBox: "0 0 32 32",
25241
+ fill: "currentColor",
25242
+ ...rest
25243
+ }, _path1397 || (_path1397 = /* @__PURE__ */ React9.createElement("path", {
25244
+ d: "M15 20H17V24H15zM20 18H22V24H20zM10 14H12V24H10z"
25245
+ })), _path1407 || (_path1407 = /* @__PURE__ */ React9.createElement("path", {
25246
+ d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z"
25247
+ })), children);
25248
+ });
25249
+ if (process.env.NODE_ENV !== "production") {
25250
+ ReportData.propTypes = iconPropTypes;
25251
+ }
25252
+ var RequestQuote = /* @__PURE__ */ React9.forwardRef(function RequestQuote2({
25253
+ children,
25254
+ size = 16,
25255
+ ...rest
25256
+ }, ref) {
25257
+ return /* @__PURE__ */ React9.createElement(Icon, {
25258
+ width: size,
25259
+ height: size,
25260
+ ref,
25261
+ xmlns: "http://www.w3.org/2000/svg",
25262
+ viewBox: "0 0 32 32",
25263
+ fill: "currentColor",
25264
+ ...rest
25265
+ }, _path14110 || (_path14110 = /* @__PURE__ */ React9.createElement("path", {
25266
+ d: "M22,22v6H6V4H16V2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V22Z"
25267
+ })), _path1427 || (_path1427 = /* @__PURE__ */ React9.createElement("path", {
25268
+ d: "M29.54,5.76l-3.3-3.3a1.6,1.6,0,0,0-2.24,0l-14,14V22h5.53l14-14a1.6,1.6,0,0,0,0-2.24ZM14.7,20H12V17.3l9.44-9.45,2.71,2.71ZM25.56,9.15,22.85,6.44l2.27-2.27,2.71,2.71Z"
25269
+ })), children);
25270
+ });
25271
+ if (process.env.NODE_ENV !== "production") {
25272
+ RequestQuote.propTypes = iconPropTypes;
25273
+ }
25274
+ var RequirementDefinition = /* @__PURE__ */ React9.forwardRef(function RequirementDefinition2({
25275
+ children,
25276
+ size = 16,
25277
+ ...rest
25278
+ }, ref) {
25279
+ return /* @__PURE__ */ React9.createElement(Icon, {
25280
+ width: size,
25281
+ height: size,
25282
+ ref,
25283
+ xmlns: "http://www.w3.org/2000/svg",
25284
+ viewBox: "0 0 32 32",
25285
+ fill: "currentColor",
25286
+ ...rest
25287
+ }, _path1437 || (_path1437 = /* @__PURE__ */ React9.createElement("path", {
25288
+ strokeWidth: "0",
25289
+ d: "M17.1788 17.4959c0-2.8367 1.5301-4.6764 4.1606-4.6764 2.8025 0 4.0919 2.0631 4.0919 4.5217v.7221h-5.9658v.2235c0 1.2894.7392 2.1663 2.1834 2.1663 1.0833 0 1.7365-.5158 2.2867-1.2207l1.1863 1.3239c-.7392 1.0143-2.0459 1.6505-3.7137 1.6505-2.6475 0-4.2293-1.8397-4.2293-4.7109zm2.2867-.9284v.1377h3.6791v-.1548c0-1.2379-.6362-2.0803-1.7709-2.0803-1.152 0-1.9083.8597-1.9083 2.0975zM9.2694 22h-2.2693v-12h5.4154c2.1835 0 3.5416 1.4441 3.5416 3.7135 0 1.6504-.7565 2.9054-2.2349 3.4039l2.4584 4.8826h-2.5271l-2.2349-4.6247h-2.1492v4.6247zm3.1215-6.533c.8769 0 1.4097-.4813 1.4097-1.3581v-.7909c0-.8769-.5328-1.341-1.4097-1.341h-2.9227v3.4899h2.9227z"
25290
+ })), _path1447 || (_path1447 = /* @__PURE__ */ React9.createElement("path", {
25291
+ strokeWidth: "0",
25292
+ d: "m28,30H4c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2v24c0,1.1046-.8954,2-2,2Zm-24-2h24V4H4v24Z"
25293
+ })), children);
25294
+ });
25295
+ if (process.env.NODE_ENV !== "production") {
25296
+ RequirementDefinition.propTypes = iconPropTypes;
25297
+ }
25298
+ var RequirementUsage = /* @__PURE__ */ React9.forwardRef(function RequirementUsage2({
25299
+ children,
25300
+ size = 16,
25301
+ ...rest
25302
+ }, ref) {
25303
+ return /* @__PURE__ */ React9.createElement(Icon, {
25304
+ width: size,
25305
+ height: size,
25306
+ ref,
25307
+ xmlns: "http://www.w3.org/2000/svg",
25308
+ viewBox: "0 0 32 32",
25309
+ fill: "currentColor",
25310
+ ...rest
25311
+ }, _path1457 || (_path1457 = /* @__PURE__ */ React9.createElement("path", {
25312
+ strokeWidth: "0",
25313
+ d: "M17.1788 17.4959c0-2.8367 1.5301-4.6764 4.1606-4.6764 2.8025 0 4.0919 2.0631 4.0919 4.5217v.7221h-5.9658v.2235c0 1.2894.7392 2.1663 2.1834 2.1663 1.0833 0 1.7365-.5158 2.2867-1.2207l1.1863 1.3239c-.7392 1.0143-2.0459 1.6505-3.7137 1.6505-2.6475 0-4.2293-1.8397-4.2293-4.7109zm2.2867-.9284v.1377h3.6791v-.1548c0-1.2379-.6362-2.0803-1.7709-2.0803-1.152 0-1.9083.8597-1.9083 2.0975zM9.2694 22h-2.2693v-12h5.4154c2.1835 0 3.5416 1.4441 3.5416 3.7135 0 1.6504-.7565 2.9054-2.2349 3.4039l2.4584 4.8826h-2.5271l-2.2349-4.6247h-2.1492v4.6247zm3.1215-6.533c.8769 0 1.4097-.4813 1.4097-1.3581v-.7909c0-.8769-.5328-1.341-1.4097-1.341h-2.9227v3.4899h2.9227z"
25314
+ })), _path1467 || (_path1467 = /* @__PURE__ */ React9.createElement("path", {
25315
+ strokeWidth: "0",
25316
+ d: "m21,30h-10c-4.9626,0-9-4.0374-9-9v-10C2,6.0374,6.0374,2,11,2h10c4.9626,0,9,4.0374,9,9v10c0,4.9626-4.0374,9-9,9ZM11,4c-3.8599,0-7,3.1401-7,7v10c0,3.8599,3.1401,7,7,7h10c3.8599,0,7-3.1401,7-7v-10c0-3.8599-3.1401-7-7-7h-10Z"
25317
+ })), children);
25318
+ });
25319
+ if (process.env.NODE_ENV !== "production") {
25320
+ RequirementUsage.propTypes = iconPropTypes;
25321
+ }
25322
+ var Reset = /* @__PURE__ */ React9.forwardRef(function Reset2({
25323
+ children,
25324
+ size = 16,
25325
+ ...rest
25326
+ }, ref) {
25327
+ return /* @__PURE__ */ React9.createElement(Icon, {
25328
+ width: size,
25329
+ height: size,
25330
+ ref,
25331
+ xmlns: "http://www.w3.org/2000/svg",
25332
+ viewBox: "0 0 32 32",
25333
+ fill: "currentColor",
25334
+ ...rest
25335
+ }, _path1477 || (_path1477 = /* @__PURE__ */ React9.createElement("path", {
25336
+ d: "M18,28A12,12,0,1,0,6,16v6.2L2.4,18.6,1,20l6,6,6-6-1.4-1.4L8,22.2V16H8A10,10,0,1,1,18,26Z"
25337
+ })), children);
25338
+ });
25339
+ if (process.env.NODE_ENV !== "production") {
25340
+ Reset.propTypes = iconPropTypes;
25341
+ }
25342
+ var ResetAlt = /* @__PURE__ */ React9.forwardRef(function ResetAlt2({
25343
+ children,
25344
+ size = 16,
25345
+ ...rest
25346
+ }, ref) {
25347
+ return /* @__PURE__ */ React9.createElement(Icon, {
25348
+ width: size,
25349
+ height: size,
25350
+ ref,
25351
+ xmlns: "http://www.w3.org/2000/svg",
25352
+ viewBox: "0 0 32 32",
25353
+ fill: "currentColor",
25354
+ ...rest
25355
+ }, _path1487 || (_path1487 = /* @__PURE__ */ React9.createElement("path", {
25356
+ d: "M27,8H6.83l3.58-3.59L9,3,3,9l6,6,1.41-1.41L6.83,10H27V26H7V19H5v7a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V10A2,2,0,0,0,27,8Z"
25357
+ })), children);
25358
+ });
25359
+ if (process.env.NODE_ENV !== "production") {
25360
+ ResetAlt.propTypes = iconPropTypes;
25361
+ }
25362
+ var Restart = /* @__PURE__ */ React9.forwardRef(function Restart2({
25363
+ children,
25364
+ size = 16,
25365
+ ...rest
25366
+ }, ref) {
25367
+ if (size === 16 || size === "16" || size === "16px") {
25368
+ return /* @__PURE__ */ React9.createElement(Icon, {
25369
+ width: size,
25370
+ height: size,
25371
+ ref,
25372
+ xmlns: "http://www.w3.org/2000/svg",
25373
+ viewBox: "0 0 16 16",
25374
+ fill: "currentColor",
25375
+ ...rest
25376
+ }, _path1497 || (_path1497 = /* @__PURE__ */ React9.createElement("path", {
25377
+ d: "M13,9c0,2.8-2.2,5-5,5s-5-2.2-5-5s2.2-5,5-5h3.1L9.3,5.8L10,6.5l3-3l-3-3L9.3,1.2L11.1,3H8C4.7,3,2,5.7,2,9s2.7,6,6,6 s6-2.7,6-6H13z"
25378
+ })), children);
25379
+ }
25380
+ return /* @__PURE__ */ React9.createElement(Icon, {
25381
+ width: size,
25382
+ height: size,
25383
+ ref,
25384
+ xmlns: "http://www.w3.org/2000/svg",
25385
+ viewBox: "0 0 32 32",
25386
+ fill: "currentColor",
25387
+ ...rest
25388
+ }, _path1507 || (_path1507 = /* @__PURE__ */ React9.createElement("path", {
25389
+ d: "M26,18A10,10,0,1,1,16,8h6.1821l-3.5844,3.5854L20,13l6-6L20,1,18.5977,2.414,22.1851,6H16A12,12,0,1,0,28,18Z"
25390
+ })), children);
25391
+ });
25392
+ if (process.env.NODE_ENV !== "production") {
25393
+ Restart.propTypes = iconPropTypes;
25394
+ }
25395
+ var Restaurant = /* @__PURE__ */ React9.forwardRef(function Restaurant2({
25396
+ children,
25397
+ size = 16,
25398
+ ...rest
25399
+ }, ref) {
25400
+ return /* @__PURE__ */ React9.createElement(Icon, {
25401
+ width: size,
25402
+ height: size,
25403
+ ref,
25404
+ xmlns: "http://www.w3.org/2000/svg",
25405
+ viewBox: "0 0 32 32",
25406
+ fill: "currentColor",
25407
+ ...rest
25408
+ }, _path15110 || (_path15110 = /* @__PURE__ */ React9.createElement("path", {
25409
+ d: "M9 2H11V12H9z"
25410
+ })), _path1527 || (_path1527 = /* @__PURE__ */ React9.createElement("path", {
25411
+ d: "M14 11a4 4 0 01-8 0V2H4v9a6 6 0 005 5.91V30h2V16.91A6 6 0 0016 11V2H14zM22 2H21V30h2V20h3a2 2 0 002-2V8A5.78 5.78 0 0022 2zm4 16H23V4.09c2.88.56 3 3.54 3 3.91z"
25412
+ })), children);
25413
+ });
25414
+ if (process.env.NODE_ENV !== "production") {
25415
+ Restaurant.propTypes = iconPropTypes;
25416
+ }
25417
+ var RestaurantFine = /* @__PURE__ */ React9.forwardRef(function RestaurantFine2({
25418
+ children,
25419
+ size = 16,
25420
+ ...rest
25421
+ }, ref) {
25422
+ return /* @__PURE__ */ React9.createElement(Icon, {
25423
+ width: size,
25424
+ height: size,
25425
+ ref,
25426
+ xmlns: "http://www.w3.org/2000/svg",
25427
+ viewBox: "0 0 32 32",
25428
+ fill: "currentColor",
25429
+ ...rest
25430
+ }, _path1537 || (_path1537 = /* @__PURE__ */ React9.createElement("path", {
25431
+ d: "M30 11.0005v-8a1 1 0 00-1-1H19a1 1 0 00-1 1v8A6.0039 6.0039 0 0023 16.91V28H19v2H29V28H25V16.91A6.0039 6.0039 0 0030 11.0005zm-10 0V4h8v7.0005a4 4 0 11-8 0zM12 2v9.02a3.9644 3.9644 0 01-3.96 3.96A4.0052 4.0052 0 014 11.02V2H2v9.02a5.9888 5.9888 0 005 5.8652V30H9V16.8953A5.9646 5.9646 0 0014 11.02V2z"
25432
+ })), _path1547 || (_path1547 = /* @__PURE__ */ React9.createElement("path", {
25433
+ d: "M7 2H9V11.98H7z"
25434
+ })), children);
25435
+ });
25436
+ if (process.env.NODE_ENV !== "production") {
25437
+ RestaurantFine.propTypes = iconPropTypes;
25438
+ }
25439
+ var Result = /* @__PURE__ */ React9.forwardRef(function Result2({
25440
+ children,
25441
+ size = 16,
25442
+ ...rest
25443
+ }, ref) {
25444
+ return /* @__PURE__ */ React9.createElement(Icon, {
25445
+ width: size,
25446
+ height: size,
25447
+ ref,
25448
+ xmlns: "http://www.w3.org/2000/svg",
25449
+ viewBox: "0 0 32 32",
25450
+ fill: "currentColor",
25451
+ ...rest
25452
+ }, _path1557 || (_path1557 = /* @__PURE__ */ React9.createElement("path", {
25453
+ d: "M14 23H22V25H14zM10 23H12V25H10zM14 18H22V20H14zM10 18H12V20H10zM14 13H22V15H14zM10 13H12V15H10z"
25454
+ })), _path1567 || (_path1567 = /* @__PURE__ */ React9.createElement("path", {
25455
+ d: "M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z"
25456
+ })), children);
25457
+ });
25458
+ if (process.env.NODE_ENV !== "production") {
25459
+ Result.propTypes = iconPropTypes;
25460
+ }
25461
+ var ResultDraft = /* @__PURE__ */ React9.forwardRef(function ResultDraft2({
25462
+ children,
25463
+ size = 16,
25464
+ ...rest
25465
+ }, ref) {
25466
+ return /* @__PURE__ */ React9.createElement(Icon, {
25467
+ width: size,
25468
+ height: size,
25469
+ ref,
25470
+ xmlns: "http://www.w3.org/2000/svg",
25471
+ viewBox: "0 0 32 32",
25472
+ fill: "currentColor",
25473
+ ...rest
25474
+ }, _path1577 || (_path1577 = /* @__PURE__ */ React9.createElement("path", {
25475
+ d: "M29.7 19.3l-3-3c-.4-.4-1-.4-1.4 0L16 25.6V30h4.4l9.3-9.3C30.1 20.3 30.1 19.7 29.7 19.3zM19.6 28H18v-1.6l5-5 1.6 1.6L19.6 28zM26 21.6L24.4 20l1.6-1.6 1.6 1.6L26 21.6zM10 23H12V25H10zM14 18H18V20H14zM10 18H12V20H10zM14 13H22V15H14zM10 13H12V15H10z"
25476
+ })), _path1587 || (_path1587 = /* @__PURE__ */ React9.createElement("path", {
25477
+ d: "M7,28V7h3v3h12V7h3v6h2V7c0-1.1-0.9-2-2-2h-3V4c0-1.1-0.9-2-2-2h-8c-1.1,0-2,0.9-2,2v1H7C5.9,5,5,5.9,5,7v21 c0,1.1,0.9,2,2,2h5v-2H7z M12,4h8v4h-8V4z"
25478
+ })), children);
25479
+ });
25480
+ if (process.env.NODE_ENV !== "production") {
25481
+ ResultDraft.propTypes = iconPropTypes;
25482
+ }
25483
+ var ResultNew = /* @__PURE__ */ React9.forwardRef(function ResultNew2({
25484
+ children,
25485
+ size = 16,
25486
+ ...rest
25487
+ }, ref) {
25488
+ return /* @__PURE__ */ React9.createElement(Icon, {
25489
+ width: size,
25490
+ height: size,
25491
+ ref,
25492
+ xmlns: "http://www.w3.org/2000/svg",
25493
+ viewBox: "0 0 32 32",
25494
+ fill: "currentColor",
25495
+ ...rest
25496
+ }, _circle218 || (_circle218 = /* @__PURE__ */ React9.createElement("circle", {
25497
+ cx: "26",
25498
+ cy: "26",
25499
+ r: "4"
25500
+ })), _path1597 || (_path1597 = /* @__PURE__ */ React9.createElement("path", {
25501
+ d: "M10 13H12V15H10zM10 18H12V20H10zM10 23H12V25H10zM14 13H22V15H14zM14 18H22V20H14zM14 23H18V25H14z"
25502
+ })), _path1607 || (_path1607 = /* @__PURE__ */ React9.createElement("path", {
25503
+ d: "M7,28V7h3v3H22V7h3V18h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H18V28ZM12,4h8V8H12Z"
25504
+ })), children);
25505
+ });
25506
+ if (process.env.NODE_ENV !== "production") {
25507
+ ResultNew.propTypes = iconPropTypes;
25508
+ }
25509
+ var ResultOld = /* @__PURE__ */ React9.forwardRef(function ResultOld2({
25510
+ children,
25511
+ size = 16,
25512
+ ...rest
25513
+ }, ref) {
25514
+ return /* @__PURE__ */ React9.createElement(Icon, {
25515
+ width: size,
25516
+ height: size,
25517
+ ref,
25518
+ xmlns: "http://www.w3.org/2000/svg",
25519
+ viewBox: "0 0 32 32",
25520
+ fill: "currentColor",
25521
+ ...rest
25522
+ }, _path16110 || (_path16110 = /* @__PURE__ */ React9.createElement("path", {
25523
+ d: "M10 13H12V15H10zM14 13H22V15H14zM10 18H12V20H10zM10 23H12V25H10z"
25524
+ })), _path1627 || (_path1627 = /* @__PURE__ */ React9.createElement("path", {
25525
+ d: "M7,28V7h3v3H22V7h3v8h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2h9V28ZM12,4h8V8H12Z"
25526
+ })), _path1637 || (_path1637 = /* @__PURE__ */ React9.createElement("path", {
25527
+ d: "M18,19v2.4131A6.996,6.996,0,1,1,24,32V30a5,5,0,1,0-4.5762-7H22v2H16V19Z"
25528
+ })), children);
25529
+ });
25530
+ if (process.env.NODE_ENV !== "production") {
25531
+ ResultOld.propTypes = iconPropTypes;
25532
+ }
25533
+ var RetryFailed = /* @__PURE__ */ React9.forwardRef(function RetryFailed2({
25534
+ children,
25535
+ size = 16,
25536
+ ...rest
25537
+ }, ref) {
25538
+ return /* @__PURE__ */ React9.createElement(Icon, {
25539
+ width: size,
25540
+ height: size,
25541
+ ref,
25542
+ xmlns: "http://www.w3.org/2000/svg",
25543
+ viewBox: "0 0 32 32",
25544
+ fill: "currentColor",
25545
+ ...rest
25546
+ }, _path1647 || (_path1647 = /* @__PURE__ */ React9.createElement("path", {
25547
+ d: "M26.41 25L30 21.41 28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25zM18 2A12.0351 12.0351 0 006 14v6.2L2.4 16.6 1 18l6 6 6-6-1.4-1.4L8 20.2V14a10 10 0 0120 0v3h2V14A12.0351 12.0351 0 0018 2z"
25548
+ })), children);
25549
+ });
25550
+ if (process.env.NODE_ENV !== "production") {
25551
+ RetryFailed.propTypes = iconPropTypes;
25552
+ }
25553
+ var Return = /* @__PURE__ */ React9.forwardRef(function Return2({
25554
+ children,
25555
+ size = 16,
25556
+ ...rest
25557
+ }, ref) {
25558
+ return /* @__PURE__ */ React9.createElement(Icon, {
25559
+ width: size,
25560
+ height: size,
25561
+ ref,
25562
+ xmlns: "http://www.w3.org/2000/svg",
25563
+ viewBox: "0 0 32 32",
25564
+ fill: "currentColor",
25565
+ ...rest
25566
+ }, _path1657 || (_path1657 = /* @__PURE__ */ React9.createElement("path", {
25567
+ d: "m22,8v2c2.2061,0,4,1.7944,4,4s-1.7939,4-4,4h-12v-5l-6,6,6,6v-5h12c3.3086,0,6-2.6914,6-6s-2.6914-6-6-6Z"
25568
+ })), children);
25569
+ });
25570
+ if (process.env.NODE_ENV !== "production") {
25571
+ Return.propTypes = iconPropTypes;
25572
+ }
25573
+ var Review = /* @__PURE__ */ React9.forwardRef(function Review2({
25574
+ children,
25575
+ size = 16,
25576
+ ...rest
25577
+ }, ref) {
25578
+ return /* @__PURE__ */ React9.createElement(Icon, {
25579
+ width: size,
25580
+ height: size,
25581
+ ref,
25582
+ xmlns: "http://www.w3.org/2000/svg",
25583
+ viewBox: "0 0 32 32",
25584
+ fill: "currentColor",
25585
+ ...rest
25586
+ }, _path1667 || (_path1667 = /* @__PURE__ */ React9.createElement("path", {
25587
+ d: "M16 8L17.912 11.703 22 12.297 19 15 20 19 16 16.75 12 19 13 15 10 12.297 14.2 11.703 16 8z"
25588
+ })), _path1677 || (_path1677 = /* @__PURE__ */ React9.createElement("path", {
25589
+ d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"
25590
+ })), children);
25591
+ });
25592
+ if (process.env.NODE_ENV !== "production") {
25593
+ Review.propTypes = iconPropTypes;
25594
+ }
25595
+ var Rewind_10 = /* @__PURE__ */ React9.forwardRef(function Rewind_102({
25596
+ children,
25597
+ size = 16,
25598
+ ...rest
25599
+ }, ref) {
25600
+ return /* @__PURE__ */ React9.createElement(Icon, {
25601
+ width: size,
25602
+ height: size,
25603
+ ref,
25604
+ xmlns: "http://www.w3.org/2000/svg",
25605
+ viewBox: "0 0 32 32",
25606
+ fill: "currentColor",
25607
+ ...rest
25608
+ }, _path1687 || (_path1687 = /* @__PURE__ */ React9.createElement("path", {
25609
+ d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z"
25610
+ })), _path1697 || (_path1697 = /* @__PURE__ */ React9.createElement("path", {
25611
+ d: "M19.63 22.13a2.84 2.84 0 01-1.28-.27 2.44 2.44 0 01-.89-.77 3.57 3.57 0 01-.52-1.25 7.69 7.69 0 01-.17-1.68 7.83 7.83 0 01.17-1.68 3.65 3.65 0 01.52-1.25 2.44 2.44 0 01.89-.77 2.84 2.84 0 011.28-.27 2.44 2.44 0 012.16 1 5.23 5.23 0 01.7 2.93 5.23 5.23 0 01-.7 2.93A2.44 2.44 0 0119.63 22.13zm0-1.22a1.07 1.07 0 001-.55A3.38 3.38 0 0021 18.85V17.47a3.31 3.31 0 00-.29-1.5 1.23 1.23 0 00-2.06 0 3.31 3.31 0 00-.29 1.5v1.38a3.38 3.38 0 00.29 1.51A1.06 1.06 0 0019.63 20.91zM10.63 22V20.82h2V15.63l-1.86 1-.55-1.06 2.32-1.3H14v6.5h1.78V22z"
25612
+ })), children);
25613
+ });
25614
+ if (process.env.NODE_ENV !== "production") {
25615
+ Rewind_10.propTypes = iconPropTypes;
25616
+ }
25617
+ var Rewind_30 = /* @__PURE__ */ React9.forwardRef(function Rewind_302({
25618
+ children,
25619
+ size = 16,
25620
+ ...rest
25621
+ }, ref) {
25622
+ return /* @__PURE__ */ React9.createElement(Icon, {
25623
+ width: size,
25624
+ height: size,
25625
+ ref,
25626
+ xmlns: "http://www.w3.org/2000/svg",
25627
+ viewBox: "0 0 32 32",
25628
+ fill: "currentColor",
25629
+ ...rest
25630
+ }, _path1707 || (_path1707 = /* @__PURE__ */ React9.createElement("path", {
25631
+ d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z"
25632
+ })), _path17110 || (_path17110 = /* @__PURE__ */ React9.createElement("path", {
25633
+ d: "M19.64 22.13a2.81 2.81 0 01-1.28-.27 2.36 2.36 0 01-.89-.77A3.39 3.39 0 0117 19.84a7.12 7.12 0 01-.17-1.68A7.24 7.24 0 0117 16.48a3.46 3.46 0 01.52-1.25 2.36 2.36 0 01.89-.77 2.81 2.81 0 011.28-.27 2.44 2.44 0 012.16 1 5.31 5.31 0 01.7 2.93 5.31 5.31 0 01-.7 2.93A2.44 2.44 0 0119.64 22.13zm0-1.22a1 1 0 001-.55 3.24 3.24 0 00.3-1.51V17.47a3.17 3.17 0 00-.3-1.5 1.22 1.22 0 00-2.05 0 3.18 3.18 0 00-.29 1.5v1.38a3.25 3.25 0 00.29 1.51A1 1 0 0019.64 20.91zM12.62 17.42a1.46 1.46 0 001-.27.84.84 0 00.31-.68v-.08a.94.94 0 00-.3-.74 1.2 1.2 0 00-.83-.27 1.65 1.65 0 00-.89.24 2.1 2.1 0 00-.68.68l-.93-.83a5.37 5.37 0 01.44-.51 2.7 2.7 0 01.54-.4 2.55 2.55 0 01.7-.27 3.25 3.25 0 01.87-.1 3.94 3.94 0 011.06.14 2.33 2.33 0 01.82.4 1.91 1.91 0 01.54.63 1.87 1.87 0 01.18.83 2 2 0 01-.11.67 1.82 1.82 0 01-.32.52 1.79 1.79 0 01-.47.36 2.27 2.27 0 01-.57.2V18a2.34 2.34 0 01.63.21 1.7 1.7 0 01.51.38 1.89 1.89 0 01.34.55 2.07 2.07 0 01.12.73 2 2 0 01-.2.92 2 2 0 01-.58.72 2.66 2.66 0 01-.89.45 3.76 3.76 0 01-1.15.16 4.1 4.1 0 01-1-.11A3.1 3.1 0 0111 21.7a2.76 2.76 0 01-.56-.45A4.22 4.22 0 0110 20.7l1.07-.81a3.07 3.07 0 00.28.42 1.94 1.94 0 00.36.34 1.57 1.57 0 00.45.22 2 2 0 00.57.07 1.45 1.45 0 001-.3 1.12 1.12 0 00.34-.85v-.08a1 1 0 00-.37-.8 1.78 1.78 0 00-1.06-.28h-.76V17.42z"
25634
+ })), children);
25635
+ });
25636
+ if (process.env.NODE_ENV !== "production") {
25637
+ Rewind_30.propTypes = iconPropTypes;
25638
+ }
25639
+ var Rewind_5 = /* @__PURE__ */ React9.forwardRef(function Rewind_52({
25640
+ children,
25641
+ size = 16,
25642
+ ...rest
25643
+ }, ref) {
25644
+ return /* @__PURE__ */ React9.createElement(Icon, {
25645
+ width: size,
25646
+ height: size,
25647
+ ref,
25648
+ xmlns: "http://www.w3.org/2000/svg",
25649
+ viewBox: "0 0 32 32",
25650
+ fill: "currentColor",
25651
+ ...rest
25652
+ }, _path1727 || (_path1727 = /* @__PURE__ */ React9.createElement("path", {
25653
+ d: "M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z"
25654
+ })), _path1737 || (_path1737 = /* @__PURE__ */ React9.createElement("path", {
25655
+ d: "M18.58,15.58H15.13L15,18.15H15a4.83,4.83,0,0,1,.26-.45,1.59,1.59,0,0,1,.33-.35,1.53,1.53,0,0,1,.44-.23,2,2,0,0,1,.6-.08,2.54,2.54,0,0,1,.92.16,2.06,2.06,0,0,1,.74.48,2.28,2.28,0,0,1,.5.77,2.73,2.73,0,0,1,.18,1,2.87,2.87,0,0,1-.19,1.07,2.36,2.36,0,0,1-.55.84,2.44,2.44,0,0,1-.89.55,3.23,3.23,0,0,1-1.21.2,3.79,3.79,0,0,1-.94-.11,3,3,0,0,1-.74-.32,2.45,2.45,0,0,1-.55-.45,4.13,4.13,0,0,1-.41-.55l1.06-.81.27.41a1.82,1.82,0,0,0,.34.34,1.59,1.59,0,0,0,.43.22,1.52,1.52,0,0,0,.55.08,1.29,1.29,0,0,0,1-.36,1.41,1.41,0,0,0,.33-1V19.5a1.18,1.18,0,0,0-1.28-1.27,1.44,1.44,0,0,0-.77.18,1.94,1.94,0,0,0-.48.39l-1.19-.17.29-4.31h4.52Z"
25656
+ })), children);
25657
+ });
25658
+ if (process.env.NODE_ENV !== "production") {
25659
+ Rewind_5.propTypes = iconPropTypes;
25660
+ }
25661
+ var RightPanelClose = /* @__PURE__ */ React9.forwardRef(function RightPanelClose2({
25662
+ children,
25663
+ size = 16,
25664
+ ...rest
25665
+ }, ref) {
25666
+ return /* @__PURE__ */ React9.createElement(Icon, {
25667
+ width: size,
25668
+ height: size,
25669
+ ref,
25670
+ xmlns: "http://www.w3.org/2000/svg",
25671
+ viewBox: "0 0 32 32",
25672
+ fill: "currentColor",
25673
+ ...rest
25674
+ }, _path1747 || (_path1747 = /* @__PURE__ */ React9.createElement("path", {
25675
+ strokeWidth: "0",
25676
+ d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm20,0h6v20h-6V6Zm-18,0h16v20H4v-9h10.1699s-3.5801,3.5898-3.5801,3.5898l1.4102,1.4102,6-6-6-6-1.4102,1.4102,3.5801,3.5898H4V6Z"
25677
+ })), children);
25678
+ });
25679
+ if (process.env.NODE_ENV !== "production") {
25680
+ RightPanelClose.propTypes = iconPropTypes;
25681
+ }
25682
+ var RightPanelCloseFilled = /* @__PURE__ */ React9.forwardRef(function RightPanelCloseFilled2({
25683
+ children,
25684
+ size = 16,
25685
+ ...rest
25686
+ }, ref) {
25687
+ return /* @__PURE__ */ React9.createElement(Icon, {
25688
+ width: size,
25689
+ height: size,
25690
+ ref,
25691
+ xmlns: "http://www.w3.org/2000/svg",
25692
+ viewBox: "0 0 32 32",
25693
+ fill: "currentColor",
25694
+ ...rest
25695
+ }, _path1757 || (_path1757 = /* @__PURE__ */ React9.createElement("path", {
25696
+ strokeWidth: "0",
25697
+ d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm2,0h16v20H4v-9h10.1699s-3.5801,3.5898-3.5801,3.5898l1.4102,1.4102,6-6-6-6-1.4102,1.4102,3.5801,3.5898H4V6Z"
25698
+ })), children);
25699
+ });
25700
+ if (process.env.NODE_ENV !== "production") {
25701
+ RightPanelCloseFilled.propTypes = iconPropTypes;
25702
+ }
25703
+ var RightPanelOpen = /* @__PURE__ */ React9.forwardRef(function RightPanelOpen2({
25704
+ children,
25705
+ size = 16,
25706
+ ...rest
25707
+ }, ref) {
25708
+ return /* @__PURE__ */ React9.createElement(Icon, {
25709
+ width: size,
25710
+ height: size,
25711
+ ref,
25712
+ xmlns: "http://www.w3.org/2000/svg",
25713
+ viewBox: "0 0 32 32",
25714
+ fill: "currentColor",
25715
+ ...rest
25716
+ }, _path1767 || (_path1767 = /* @__PURE__ */ React9.createElement("path", {
25717
+ strokeWidth: "0",
25718
+ d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm20,0h6v20h-6V6Zm-18,0h16v9h-10.1699s3.5798-3.5898,3.5798-3.5898l-1.4099-1.4102-6,6,6,6,1.4099-1.4102-3.5798-3.5898h10.1699v9H4V6Z"
25719
+ })), children);
25720
+ });
25721
+ if (process.env.NODE_ENV !== "production") {
25722
+ RightPanelOpen.propTypes = iconPropTypes;
25723
+ }
25724
+ var RightPanelOpenFilled = /* @__PURE__ */ React9.forwardRef(function RightPanelOpenFilled2({
25725
+ children,
25726
+ size = 16,
25727
+ ...rest
25728
+ }, ref) {
25729
+ return /* @__PURE__ */ React9.createElement(Icon, {
25730
+ width: size,
25731
+ height: size,
25732
+ ref,
25733
+ xmlns: "http://www.w3.org/2000/svg",
25734
+ viewBox: "0 0 32 32",
25735
+ fill: "currentColor",
25736
+ ...rest
25737
+ }, _path1777 || (_path1777 = /* @__PURE__ */ React9.createElement("path", {
25738
+ strokeWidth: "0",
25739
+ d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm2,0h16v9h-10.1699s3.5798-3.5898,3.5798-3.5898l-1.4099-1.4102-6,6,6,6,1.4099-1.4102-3.5798-3.5898h10.1699v9H4V6Z"
25740
+ })), children);
25741
+ });
25742
+ if (process.env.NODE_ENV !== "production") {
25743
+ RightPanelOpenFilled.propTypes = iconPropTypes;
25744
+ }
25745
+ var Road = /* @__PURE__ */ React9.forwardRef(function Road2({
25746
+ children,
25747
+ size = 16,
25748
+ ...rest
25749
+ }, ref) {
25750
+ return /* @__PURE__ */ React9.createElement(Icon, {
25751
+ width: size,
25752
+ height: size,
25753
+ ref,
25754
+ xmlns: "http://www.w3.org/2000/svg",
25755
+ viewBox: "0 0 32 32",
25756
+ fill: "currentColor",
25757
+ ...rest
25758
+ }, _path1787 || (_path1787 = /* @__PURE__ */ React9.createElement("path", {
25759
+ d: "M13 13H19V15H13z"
25760
+ })), _path1796 || (_path1796 = /* @__PURE__ */ React9.createElement("path", {
25761
+ d: "M25.4409 8L24.1687 3.45A2.009 2.009 0 0022.2456 2H9.7544A2.0089 2.0089 0 007.8313 3.4507L6.5315 8H4v2H6v7a2.0025 2.0025 0 002 2v3h2V19H22v3h2V19a2.0025 2.0025 0 002-2V10h2V8zM9.7544 4H22.2458l1.4285 5H8.3257zM24 13H22v2h2v2H8V15h2V13H8V11H24zM2 16H4V30H2zM28 16H30V30H28z"
25762
+ })), _path1806 || (_path1806 = /* @__PURE__ */ React9.createElement("path", {
25763
+ d: "M15 21H17V24H15zM15 26H17V30H15z"
25764
+ })), children);
25765
+ });
25766
+ if (process.env.NODE_ENV !== "production") {
25767
+ Road.propTypes = iconPropTypes;
25768
+ }
25769
+ var RoadWeather = /* @__PURE__ */ React9.forwardRef(function RoadWeather2({
25770
+ children,
25771
+ size = 16,
25772
+ ...rest
25773
+ }, ref) {
25774
+ return /* @__PURE__ */ React9.createElement(Icon, {
25775
+ width: size,
25776
+ height: size,
25777
+ ref,
25778
+ xmlns: "http://www.w3.org/2000/svg",
25779
+ viewBox: "0 0 32 32",
25780
+ fill: "currentColor",
25781
+ ...rest
25782
+ }, _path18110 || (_path18110 = /* @__PURE__ */ React9.createElement("path", {
25783
+ d: "M16 31H14v-.228a3.0135 3.0135 0 00-1.9468-2.8091L8.5215 26.6384A3.9034 3.9034 0 016 23H8a1.8946 1.8946 0 001.2236 1.7659L12.7554 26.09A5.0226 5.0226 0 0116 30.772zM30 31H28v-.228a3.0135 3.0135 0 00-1.9468-2.8091l-3.5317-1.3245A3.9034 3.9034 0 0120 23h2a1.8946 1.8946 0 001.2236 1.7659L26.7554 26.09A5.0226 5.0226 0 0130 30.772zM11 13H17V15H11z"
25784
+ })), _path1826 || (_path1826 = /* @__PURE__ */ React9.createElement("path", {
25785
+ d: "M23.4409,8,22.1687,3.45A2.009,2.009,0,0,0,20.2456,2H7.7544A2.0089,2.0089,0,0,0,5.8313,3.4507L4.5315,8H2v2H4v7a2.0025,2.0025,0,0,0,2,2v2H8V19H20v2h2V19a2.0025,2.0025,0,0,0,2-2V10h2V8ZM7.7544,4H20.2458l1.4285,5H6.3257ZM22,13H20v2h2v2H6V15H8V13H6V11H22Z"
25786
+ })), children);
25787
+ });
25788
+ if (process.env.NODE_ENV !== "production") {
25789
+ RoadWeather.propTypes = iconPropTypes;
25790
+ }
25791
+ var Roadmap = /* @__PURE__ */ React9.forwardRef(function Roadmap2({
25792
+ children,
25793
+ size = 16,
25794
+ ...rest
25795
+ }, ref) {
25796
+ return /* @__PURE__ */ React9.createElement(Icon, {
25797
+ width: size,
25798
+ height: size,
25799
+ ref,
25800
+ xmlns: "http://www.w3.org/2000/svg",
25801
+ viewBox: "0 0 32 32",
25802
+ fill: "currentColor",
25803
+ ...rest
25804
+ }, _path1836 || (_path1836 = /* @__PURE__ */ React9.createElement("path", {
25805
+ d: "M12 30H4a2.0023 2.0023 0 01-2-2V24a2.0023 2.0023 0 012-2h8a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0112 30zM4 24v4h8V24zM28 20H12a2.0023 2.0023 0 01-2-2V14a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0128 20zM12 14v4H28V14zM16 10H4A2.0023 2.0023 0 012 8V4A2.0023 2.0023 0 014 2H16a2.0023 2.0023 0 012 2V8A2.0023 2.0023 0 0116 10zM4 4V8H16V4z"
25806
+ })), children);
25807
+ });
25808
+ if (process.env.NODE_ENV !== "production") {
25809
+ Roadmap.propTypes = iconPropTypes;
25810
+ }
25811
+ var Rocket = /* @__PURE__ */ React9.forwardRef(function Rocket2({
25812
+ children,
25813
+ size = 16,
25814
+ ...rest
25815
+ }, ref) {
25816
+ return /* @__PURE__ */ React9.createElement(Icon, {
25817
+ width: size,
25818
+ height: size,
25819
+ ref,
25820
+ xmlns: "http://www.w3.org/2000/svg",
25821
+ viewBox: "0 0 32 32",
25822
+ fill: "currentColor",
25823
+ ...rest
25824
+ }, _path1846 || (_path1846 = /* @__PURE__ */ React9.createElement("path", {
25825
+ d: "M6.34 19H17.65V21H6.34z",
25826
+ transform: "rotate(-45 11.995 20.002)"
25827
+ })), _path1856 || (_path1856 = /* @__PURE__ */ React9.createElement("path", {
25828
+ d: "M17,30a1,1,0,0,1-.37-.07,1,1,0,0,1-.62-.79l-1-7,2-.28.75,5.27L21,24.52V17a1,1,0,0,1,.29-.71l4.07-4.07A8.94,8.94,0,0,0,28,5.86V4H26.14a8.94,8.94,0,0,0-6.36,2.64l-4.07,4.07A1,1,0,0,1,15,11H7.48L4.87,14.26l5.27.75-.28,2-7-1a1,1,0,0,1-.79-.62,1,1,0,0,1,.15-1l4-5A1,1,0,0,1,7,9h7.59l3.77-3.78A10.92,10.92,0,0,1,26.14,2H28a2,2,0,0,1,2,2V5.86a10.92,10.92,0,0,1-3.22,7.78L23,17.41V25a1,1,0,0,1-.38.78l-5,4A1,1,0,0,1,17,30Z"
25829
+ })), children);
25830
+ });
25831
+ if (process.env.NODE_ENV !== "production") {
25832
+ Rocket.propTypes = iconPropTypes;
25833
+ }
25834
+ var Rotate = /* @__PURE__ */ React9.forwardRef(function Rotate2({
25835
+ children,
25836
+ size = 16,
25837
+ ...rest
25838
+ }, ref) {
25839
+ return /* @__PURE__ */ React9.createElement(Icon, {
25840
+ width: size,
25841
+ height: size,
25842
+ ref,
25843
+ xmlns: "http://www.w3.org/2000/svg",
25844
+ viewBox: "0 0 32 32",
25845
+ fill: "currentColor",
25846
+ ...rest
25847
+ }, _path1866 || (_path1866 = /* @__PURE__ */ React9.createElement("path", {
25848
+ d: "M17.91 26.82l.35 2a12.9 12.9 0 004.24-1.54l-1-1.73A10.88 10.88 0 0117.91 26.82zM24.42 23.07L26 24.35a13 13 0 002.24-3.91l-1.87-.68A11 11 0 0124.42 23.07zM9.5 27.25a12.9 12.9 0 004.24 1.54l.35-2a10.88 10.88 0 01-3.59-1.3zM5.67 19.76l-1.87.68A13 13 0 006 24.35l.32-.26 1.22-1h0a11 11 0 01-1.91-3.31zM29 16a12.85 12.85 0 00-.8-4.44l-1.87.68A11.18 11.18 0 0127 16zM26 7.65a13 13 0 00-20 0V4H4v8h8V10H6.81A11 11 0 0124.42 8.93z"
25849
+ })), children);
25850
+ });
25851
+ if (process.env.NODE_ENV !== "production") {
25852
+ Rotate.propTypes = iconPropTypes;
25853
+ }
25854
+ var WatsonHealthRotate_180 = /* @__PURE__ */ React9.forwardRef(function WatsonHealthRotate_1802({
25855
+ children,
25856
+ size = 16,
25857
+ ...rest
25858
+ }, ref) {
25859
+ return /* @__PURE__ */ React9.createElement(Icon, {
25860
+ width: size,
25861
+ height: size,
25862
+ ref,
25863
+ xmlns: "http://www.w3.org/2000/svg",
25864
+ viewBox: "0 0 32 32",
25865
+ fill: "currentColor",
25866
+ ...rest
25867
+ }, _path1876 || (_path1876 = /* @__PURE__ */ React9.createElement("path", {
25868
+ d: "M14.0913 26.8235l-.3467 1.968a12.8956 12.8956 0 01-4.24-1.5418l1-1.7307A10.9086 10.9086 0 0014.0913 26.8235zM7.5767 23.0682L6.0449 24.3533a12.9811 12.9811 0 01-2.25-3.9112l1.8775-.6834A10.9808 10.9808 0 007.5767 23.0682zM22.4951 27.25a12.8956 12.8956 0 01-4.24 1.5418l-.3467-1.968a10.9086 10.9086 0 003.5869-1.3045zM26.3271 19.7587l1.8775.6834a12.9811 12.9811 0 01-2.2495 3.9112l-.3115-.2614-1.22-1.0237h0a10.9822 10.9822 0 001.9038-3.3093zM13.6616 5.2559c-.1592.0346-.3144.08-.4712.1215-.2131.0562-.4258.1138-.6335.1822-.1643.0547-.325.1167-.4859.1782-.1926.0742-.3835.1509-.57.2349-.1611.0727-.3193.15-.4763.23q-.2677.1363-.5262.2867c-.153.0893-.3046.18-.4531.2758-.1679.1089-.3308.2242-.4922.3413-.1406.1026-.2817.2037-.417.3125-.1616.1294-.3156.2676-.47.4063-.1225.11-.2478.2168-.3652.332-.1668.1636-.3223.3379-.4785.5117A10.9438 10.9438 0 005 16H3A12.9363 12.9363 0 016.05 7.65l-.0047-.0039c.0918-.1094.197-.2061.2925-.3125.1841-.2051.3672-.41.5635-.603.1382-.1358.2856-.2613.43-.3907.1831-.1645.3657-.3286.5581-.4824.1592-.1279.3244-.2466.4895-.3667.1921-.14.3855-.2768.5854-.4062.1743-.1128.3523-.2188.5322-.3238q.3081-.1786.6253-.3408c.1846-.0942.37-.1846.56-.27.2224-.1.449-.1914.678-.2793.1894-.0723.3777-.1455.5713-.209.2463-.0815.498-.1494.7507-.2163.1848-.0493.3674-.1025.5554-.1431.29-.0634.5865-.1074.8833-.1508.159-.023.3145-.0552.4754-.0728A12.9331 12.9331 0 0126 7.7031V4h2v8H20V10h5.1885A10.961 10.961 0 0016 5a11.1114 11.1114 0 00-1.189.0669c-.1362.0146-.268.042-.4026.0615C14.1575 5.165 13.907 5.2026 13.6616 5.2559z"
25869
+ })), children);
25870
+ });
25871
+ if (process.env.NODE_ENV !== "production") {
25872
+ WatsonHealthRotate_180.propTypes = iconPropTypes;
25873
+ }
25874
+ var WatsonHealthRotate_360 = /* @__PURE__ */ React9.forwardRef(function WatsonHealthRotate_3602({
25875
+ children,
25876
+ size = 16,
25877
+ ...rest
25878
+ }, ref) {
25879
+ return /* @__PURE__ */ React9.createElement(Icon, {
25880
+ width: size,
25881
+ height: size,
25882
+ ref,
25883
+ xmlns: "http://www.w3.org/2000/svg",
25884
+ viewBox: "0 0 32 32",
25885
+ fill: "currentColor",
25886
+ ...rest
25887
+ }, _path1886 || (_path1886 = /* @__PURE__ */ React9.createElement("path", {
25888
+ d: "M25.95,7.65l.0047-.0039c-.0918-.1094-.197-.2061-.2925-.3125-.1841-.2051-.3672-.41-.5635-.603-.1382-.1358-.2856-.2613-.43-.3907-.1831-.1645-.3657-.3286-.5581-.4824-.1592-.1279-.3244-.2466-.4895-.3667-.1921-.14-.3855-.2768-.5854-.4062-.1743-.1128-.3523-.2188-.5322-.3238q-.3081-.1786-.6253-.3408c-.1846-.0942-.37-.1846-.56-.27-.2224-.1-.449-.1914-.678-.2793-.1894-.0723-.3777-.1455-.5713-.209-.2463-.0815-.498-.1494-.7507-.2163-.1848-.0493-.3674-.1025-.5554-.1431-.29-.0634-.5865-.1074-.8833-.1508-.159-.023-.3145-.0552-.4754-.0728A12.9331,12.9331,0,0,0,6,7.7031V4H4v8h8V10H6.8115A10.961,10.961,0,0,1,16,5a11.1114,11.1114,0,0,1,1.189.0669c.1362.0146.268.042.4026.0615.2509.0366.5014.0742.7468.1275.1592.0346.3144.08.4712.1215.2131.0562.4258.1138.6335.1822.1643.0547.325.1167.4859.1782.1926.0742.3835.1509.5705.2349.1611.0727.3193.15.4763.23q.2677.1363.5262.2867c.153.0893.3046.18.4531.2758.1679.1089.3308.2242.4922.3413.1406.1026.2817.2037.417.3125.1616.1294.3156.2676.47.4063.1225.11.2478.2168.3652.332.1668.1636.3223.3379.4785.5117A10.9928,10.9928,0,1,1,5,16H3A13,13,0,1,0,25.95,7.65Z"
25889
+ })), children);
25890
+ });
25891
+ if (process.env.NODE_ENV !== "production") {
25892
+ WatsonHealthRotate_360.propTypes = iconPropTypes;
25893
+ }
25894
+ var RotateClockwise = /* @__PURE__ */ React9.forwardRef(function RotateClockwise2({
25895
+ children,
25896
+ size = 16,
25897
+ ...rest
25898
+ }, ref) {
25899
+ return /* @__PURE__ */ React9.createElement(Icon, {
25900
+ width: size,
25901
+ height: size,
25902
+ ref,
25903
+ xmlns: "http://www.w3.org/2000/svg",
25904
+ viewBox: "0 0 32 32",
25905
+ fill: "currentColor",
25906
+ ...rest
25907
+ }, _path1896 || (_path1896 = /* @__PURE__ */ React9.createElement("path", {
25908
+ d: "M28 30H16a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0128 30zM16 16V28H28.0012L28 16zM15 2L13.59 3.41 16.17 6H11a7.0078 7.0078 0 00-7 7v5H6V13a5.0057 5.0057 0 015-5h5.17l-2.58 2.59L15 12l5-5z"
25909
+ })), children);
25910
+ });
25911
+ if (process.env.NODE_ENV !== "production") {
25912
+ RotateClockwise.propTypes = iconPropTypes;
25913
+ }
25914
+ var RotateClockwiseAlt = /* @__PURE__ */ React9.forwardRef(function RotateClockwiseAlt2({
25915
+ children,
25916
+ size = 16,
25917
+ ...rest
25918
+ }, ref) {
25919
+ return /* @__PURE__ */ React9.createElement(Icon, {
25920
+ width: size,
25921
+ height: size,
25922
+ ref,
25923
+ xmlns: "http://www.w3.org/2000/svg",
25924
+ viewBox: "0 0 32 32",
25925
+ fill: "currentColor",
25926
+ ...rest
25927
+ }, _path1906 || (_path1906 = /* @__PURE__ */ React9.createElement("path", {
25928
+ d: "M16 30H4a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0116 30zM4 16V28H16.0012L16 16zM30 15l-1.41-1.41L26 16.17V11a7.0078 7.0078 0 00-7-7H14V6h5a5.0057 5.0057 0 015 5v5.17l-2.59-2.58L20 15l5 5z"
25929
+ })), children);
25930
+ });
25931
+ if (process.env.NODE_ENV !== "production") {
25932
+ RotateClockwiseAlt.propTypes = iconPropTypes;
25933
+ }
25934
+ var RotateClockwiseAltFilled = /* @__PURE__ */ React9.forwardRef(function RotateClockwiseAltFilled2({
25935
+ children,
25936
+ size = 16,
25937
+ ...rest
25938
+ }, ref) {
25939
+ return /* @__PURE__ */ React9.createElement(Icon, {
25940
+ width: size,
25941
+ height: size,
25942
+ ref,
25943
+ xmlns: "http://www.w3.org/2000/svg",
25944
+ viewBox: "0 0 32 32",
25945
+ fill: "currentColor",
25946
+ ...rest
25947
+ }, _path19110 || (_path19110 = /* @__PURE__ */ React9.createElement("path", {
25948
+ d: "M16 30H4a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0116 30zM30 15l-1.41-1.41L26 16.17V11a7.0078 7.0078 0 00-7-7H14V6h5a5.0057 5.0057 0 015 5v5.17l-2.59-2.58L20 15l5 5z"
25949
+ })), children);
25950
+ });
25951
+ if (process.env.NODE_ENV !== "production") {
25952
+ RotateClockwiseAltFilled.propTypes = iconPropTypes;
25953
+ }
25954
+ var RotateClockwiseFilled = /* @__PURE__ */ React9.forwardRef(function RotateClockwiseFilled2({
25955
+ children,
25956
+ size = 16,
25957
+ ...rest
25958
+ }, ref) {
25959
+ return /* @__PURE__ */ React9.createElement(Icon, {
25960
+ width: size,
25961
+ height: size,
25962
+ ref,
25963
+ xmlns: "http://www.w3.org/2000/svg",
25964
+ viewBox: "0 0 32 32",
25965
+ fill: "currentColor",
25966
+ ...rest
25967
+ }, _path1926 || (_path1926 = /* @__PURE__ */ React9.createElement("path", {
25968
+ d: "M28 30H16a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0128 30zM15 2L13.59 3.41 16.17 6H11a7.0078 7.0078 0 00-7 7v5H6V13a5.0057 5.0057 0 015-5h5.17l-2.58 2.59L15 12l5-5z"
25969
+ })), children);
25970
+ });
25971
+ if (process.env.NODE_ENV !== "production") {
25972
+ RotateClockwiseFilled.propTypes = iconPropTypes;
25973
+ }
25974
+ var RotateCounterclockwise = /* @__PURE__ */ React9.forwardRef(function RotateCounterclockwise2({
25975
+ children,
25976
+ size = 16,
25977
+ ...rest
25978
+ }, ref) {
25979
+ return /* @__PURE__ */ React9.createElement(Icon, {
25980
+ width: size,
25981
+ height: size,
25982
+ ref,
25983
+ xmlns: "http://www.w3.org/2000/svg",
25984
+ viewBox: "0 0 32 32",
25985
+ fill: "currentColor",
25986
+ ...rest
25987
+ }, _path1936 || (_path1936 = /* @__PURE__ */ React9.createElement("path", {
25988
+ d: "M2 28V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28a2.0023 2.0023 0 01-2 2H4A2.0023 2.0023 0 012 28zM4 16L3.9988 28H16V16zM17 2l1.41 1.41L15.83 6H21a7.0078 7.0078 0 017 7v5H26V13a5.0057 5.0057 0 00-5-5H15.83l2.58 2.59L17 12 12 7z"
25989
+ })), children);
25990
+ });
25991
+ if (process.env.NODE_ENV !== "production") {
25992
+ RotateCounterclockwise.propTypes = iconPropTypes;
25993
+ }
25994
+ var RotateCounterclockwiseAlt = /* @__PURE__ */ React9.forwardRef(function RotateCounterclockwiseAlt2({
25995
+ children,
25996
+ size = 16,
25997
+ ...rest
25998
+ }, ref) {
25999
+ return /* @__PURE__ */ React9.createElement(Icon, {
26000
+ width: size,
26001
+ height: size,
26002
+ ref,
26003
+ xmlns: "http://www.w3.org/2000/svg",
26004
+ viewBox: "0 0 32 32",
26005
+ fill: "currentColor",
26006
+ ...rest
26007
+ }, _path1946 || (_path1946 = /* @__PURE__ */ React9.createElement("path", {
26008
+ d: "M14 28V16a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28a2.0023 2.0023 0 01-2 2H16A2.0023 2.0023 0 0114 28zm2-12l-.0012 12H28V16zM2 15l1.41-1.41L6 16.17V11a7.0078 7.0078 0 017-7h5V6H13a5.0057 5.0057 0 00-5 5v5.17l2.59-2.58L12 15 7 20z"
26009
+ })), children);
26010
+ });
26011
+ if (process.env.NODE_ENV !== "production") {
26012
+ RotateCounterclockwiseAlt.propTypes = iconPropTypes;
26013
+ }
26014
+ var RotateCounterclockwiseAltFilled = /* @__PURE__ */ React9.forwardRef(function RotateCounterclockwiseAltFilled2({
26015
+ children,
26016
+ size = 16,
26017
+ ...rest
26018
+ }, ref) {
26019
+ return /* @__PURE__ */ React9.createElement(Icon, {
26020
+ width: size,
26021
+ height: size,
26022
+ ref,
26023
+ xmlns: "http://www.w3.org/2000/svg",
26024
+ viewBox: "0 0 32 32",
26025
+ fill: "currentColor",
26026
+ ...rest
26027
+ }, _path1956 || (_path1956 = /* @__PURE__ */ React9.createElement("path", {
26028
+ d: "M14 28V16a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28a2.0023 2.0023 0 01-2 2H16A2.0023 2.0023 0 0114 28zM2 15l1.41-1.41L6 16.17V11a7.0078 7.0078 0 017-7h5V6H13a5.0057 5.0057 0 00-5 5v5.17l2.59-2.58L12 15 7 20z"
26029
+ })), children);
26030
+ });
26031
+ if (process.env.NODE_ENV !== "production") {
26032
+ RotateCounterclockwiseAltFilled.propTypes = iconPropTypes;
26033
+ }
26034
+ var RotateCounterclockwiseFilled = /* @__PURE__ */ React9.forwardRef(function RotateCounterclockwiseFilled2({
26035
+ children,
26036
+ size = 16,
26037
+ ...rest
26038
+ }, ref) {
26039
+ return /* @__PURE__ */ React9.createElement(Icon, {
26040
+ width: size,
26041
+ height: size,
26042
+ ref,
26043
+ xmlns: "http://www.w3.org/2000/svg",
26044
+ viewBox: "0 0 32 32",
26045
+ fill: "currentColor",
26046
+ ...rest
26047
+ }, _path1966 || (_path1966 = /* @__PURE__ */ React9.createElement("path", {
26048
+ d: "M2 28V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28a2.0023 2.0023 0 01-2 2H4A2.0023 2.0023 0 012 28zM17 2l1.41 1.41L15.83 6H21a7.0078 7.0078 0 017 7v5H26V13a5.0057 5.0057 0 00-5-5H15.83l2.58 2.59L17 12 12 7z"
26049
+ })), children);
26050
+ });
26051
+ if (process.env.NODE_ENV !== "production") {
26052
+ RotateCounterclockwiseFilled.propTypes = iconPropTypes;
26053
+ }
26054
+ var Router = /* @__PURE__ */ React9.forwardRef(function Router2({
26055
+ children,
26056
+ size = 16,
26057
+ ...rest
26058
+ }, ref) {
26059
+ return /* @__PURE__ */ React9.createElement(Icon, {
26060
+ width: size,
26061
+ height: size,
26062
+ ref,
26063
+ xmlns: "http://www.w3.org/2000/svg",
26064
+ viewBox: "0 0 32 32",
26065
+ fill: "currentColor",
26066
+ ...rest
26067
+ }, _path1976 || (_path1976 = /* @__PURE__ */ React9.createElement("path", {
26068
+ d: "M21 7L16 2 11 7 12.409 8.419 15 5.847 15 13 17 13 17 5.794 19.591 8.419 21 7zM21 25L16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25zM24 11L19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11zM8 11L13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z"
26069
+ })), children);
26070
+ });
26071
+ if (process.env.NODE_ENV !== "production") {
26072
+ Router.propTypes = iconPropTypes;
26073
+ }
26074
+ var RouterVoice = /* @__PURE__ */ React9.forwardRef(function RouterVoice2({
26075
+ children,
26076
+ size = 16,
26077
+ ...rest
26078
+ }, ref) {
26079
+ return /* @__PURE__ */ React9.createElement(Icon, {
26080
+ width: size,
26081
+ height: size,
26082
+ ref,
26083
+ xmlns: "http://www.w3.org/2000/svg",
26084
+ viewBox: "0 0 32 32",
26085
+ fill: "currentColor",
26086
+ ...rest
26087
+ }, _path1986 || (_path1986 = /* @__PURE__ */ React9.createElement("path", {
26088
+ d: "M21 25L16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25zM24 11L19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11zM8 11L13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11zM12.4289 5.8227v1.63a1.1269 1.1269 0 01-.6767 1.026l-1.39.5967A1.1218 1.1218 0 019.14 8.8424L7.3208 7.0233a1.1165 1.1165 0 01.0125-1.579l.0348-.0328c7.393-6.527 14.6913-2.0374 17.2127-.0473a1.1166 1.1166 0 01.1746 1.5693 1.1011 1.1011 0 01-.0873.0971L22.9108 8.7878a1.1114 1.1114 0 01-1.2225.2329l-1.39-.5967a1.1112 1.1112 0 01-.68-1.0223v-1.63S15.9726 3.0648 12.4289 5.8227z"
26089
+ })), children);
26090
+ });
26091
+ if (process.env.NODE_ENV !== "production") {
26092
+ RouterVoice.propTypes = iconPropTypes;
26093
+ }
26094
+ var RouterWifi = /* @__PURE__ */ React9.forwardRef(function RouterWifi2({
26095
+ children,
26096
+ size = 16,
26097
+ ...rest
26098
+ }, ref) {
26099
+ return /* @__PURE__ */ React9.createElement(Icon, {
26100
+ width: size,
26101
+ height: size,
26102
+ ref,
26103
+ xmlns: "http://www.w3.org/2000/svg",
26104
+ viewBox: "0 0 32 32",
26105
+ fill: "currentColor",
26106
+ ...rest
26107
+ }, _circle226 || (_circle226 = /* @__PURE__ */ React9.createElement("circle", {
26108
+ cx: "16",
26109
+ cy: "13.5",
26110
+ r: "1.5"
26111
+ })), _path1996 || (_path1996 = /* @__PURE__ */ React9.createElement("path", {
26112
+ d: "M19.5356,10.4648a5,5,0,0,0-7.0717,0L11.05,9.0508a6.9992,6.9992,0,0,1,9.9,0Z"
26113
+ })), _path2006 || (_path2006 = /* @__PURE__ */ React9.createElement("path", {
26114
+ d: "M23.0713 6.929a10 10 0 00-14.1426 0L7.5146 5.5144a12.0011 12.0011 0 0116.9708 0zM21 25L16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25zM24 11L19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11zM8 11L13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z"
26115
+ })), children);
26116
+ });
26117
+ if (process.env.NODE_ENV !== "production") {
26118
+ RouterWifi.propTypes = iconPropTypes;
26119
+ }
26120
+ var Row = /* @__PURE__ */ React9.forwardRef(function Row2({
26121
+ children,
26122
+ size = 16,
26123
+ ...rest
26124
+ }, ref) {
26125
+ return /* @__PURE__ */ React9.createElement(Icon, {
26126
+ width: size,
26127
+ height: size,
26128
+ ref,
26129
+ xmlns: "http://www.w3.org/2000/svg",
26130
+ viewBox: "0 0 32 32",
26131
+ fill: "currentColor",
26132
+ ...rest
26133
+ }, _path2018 || (_path2018 = /* @__PURE__ */ React9.createElement("path", {
26134
+ d: "M4 24H28V26H4zM26 18H6V14H26v4m2 0V14a2 2 0 00-2-2H6a2 2 0 00-2 2v4a2 2 0 002 2H26a2 2 0 002-2zM4 6H28V8H4z"
26135
+ })), children);
26136
+ });
26137
+ if (process.env.NODE_ENV !== "production") {
26138
+ Row.propTypes = iconPropTypes;
26139
+ }
26140
+ var RowCollapse = /* @__PURE__ */ React9.forwardRef(function RowCollapse2({
26141
+ children,
26142
+ size = 16,
26143
+ ...rest
26144
+ }, ref) {
26145
+ return /* @__PURE__ */ React9.createElement(Icon, {
26146
+ width: size,
26147
+ height: size,
26148
+ ref,
26149
+ xmlns: "http://www.w3.org/2000/svg",
26150
+ viewBox: "0 0 32 32",
26151
+ fill: "currentColor",
26152
+ ...rest
26153
+ }, _path2026 || (_path2026 = /* @__PURE__ */ React9.createElement("path", {
26154
+ d: "M26 20H6a2 2 0 00-2 2v4a2 2 0 002 2H26a2 2 0 002-2V22A2 2 0 0026 20zm0 6H6V22H26zM17 7.828L19.586 10.414 21 9 16 4 11 9 12.414 10.414 15 7.828 15 14 4 14 4 16 28 16 28 14 17 14 17 7.828z"
26155
+ })), children);
26156
+ });
26157
+ if (process.env.NODE_ENV !== "production") {
26158
+ RowCollapse.propTypes = iconPropTypes;
26159
+ }
26160
+ var RowDelete = /* @__PURE__ */ React9.forwardRef(function RowDelete2({
26161
+ children,
26162
+ size = 16,
26163
+ ...rest
26164
+ }, ref) {
26165
+ return /* @__PURE__ */ React9.createElement(Icon, {
26166
+ width: size,
26167
+ height: size,
26168
+ ref,
26169
+ xmlns: "http://www.w3.org/2000/svg",
26170
+ viewBox: "0 0 32 32",
26171
+ fill: "currentColor",
26172
+ ...rest
26173
+ }, _path2035 || (_path2035 = /* @__PURE__ */ React9.createElement("path", {
26174
+ d: "M24 30H4a2.0021 2.0021 0 01-2-2V22a2.0021 2.0021 0 012-2H24a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0124 30zM4 22H3.9985L4 28H24V22zM30 3.41L28.59 2 25 5.59 21.41 2 20 3.41 23.59 7 20 10.59 21.41 12 25 8.41 28.59 12 30 10.59 26.41 7 30 3.41z"
26175
+ })), _path2045 || (_path2045 = /* @__PURE__ */ React9.createElement("path", {
26176
+ d: "M4,14V8H18V6H4A2.0023,2.0023,0,0,0,2,8v6a2.0023,2.0023,0,0,0,2,2H26V14Z"
26177
+ })), children);
26178
+ });
26179
+ if (process.env.NODE_ENV !== "production") {
26180
+ RowDelete.propTypes = iconPropTypes;
26181
+ }
26182
+ var RowExpand = /* @__PURE__ */ React9.forwardRef(function RowExpand2({
26183
+ children,
26184
+ size = 16,
26185
+ ...rest
26186
+ }, ref) {
26187
+ return /* @__PURE__ */ React9.createElement(Icon, {
26188
+ width: size,
26189
+ height: size,
26190
+ ref,
26191
+ xmlns: "http://www.w3.org/2000/svg",
26192
+ viewBox: "0 0 32 32",
26193
+ fill: "currentColor",
26194
+ ...rest
26195
+ }, _path2055 || (_path2055 = /* @__PURE__ */ React9.createElement("path", {
26196
+ d: "M4 18L15 18 15 24.172 12.414 21.586 11 23 16 28 21 23 19.586 21.586 17 24.172 17 18 28 18 28 16 4 16 4 18zM26 4H6A2 2 0 004 6v4a2 2 0 002 2H26a2 2 0 002-2V6A2 2 0 0026 4zm0 6H6V6H26z"
26197
+ })), children);
26198
+ });
26199
+ if (process.env.NODE_ENV !== "production") {
26200
+ RowExpand.propTypes = iconPropTypes;
26201
+ }
26202
+ var RowInsert = /* @__PURE__ */ React9.forwardRef(function RowInsert2({
26203
+ children,
26204
+ size = 16,
26205
+ ...rest
26206
+ }, ref) {
26207
+ return /* @__PURE__ */ React9.createElement(Icon, {
26208
+ width: size,
26209
+ height: size,
26210
+ ref,
26211
+ xmlns: "http://www.w3.org/2000/svg",
26212
+ viewBox: "0 0 32 32",
26213
+ fill: "currentColor",
26214
+ ...rest
26215
+ }, _path2065 || (_path2065 = /* @__PURE__ */ React9.createElement("path", {
26216
+ d: "M28 12H10a2.0021 2.0021 0 01-2-2V4a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 12zM10 4v6H28V4zM28 30H10a2.0021 2.0021 0 01-2-2V22a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 30zM10 22v6H28V22zM9 16L3.414 10.414 2 11.828 6.172 16 2 20.172 3.414 21.586 9 16z"
26217
+ })), children);
26218
+ });
26219
+ if (process.env.NODE_ENV !== "production") {
26220
+ RowInsert.propTypes = iconPropTypes;
26221
+ }
26222
+
26223
+ // node_modules/@carbon/icons-react/es/index.js
26224
+ import "react";
26225
+
26226
+ // src/components/ContactModal/ContactModal.tsx
26227
+ import {
26228
+ Modal,
26229
+ TextInput,
26230
+ TextArea,
26231
+ Form,
26232
+ FormGroup,
26233
+ Stack
26234
+ } from "@carbon/react";
26235
+ import { jsx as jsx11, jsxs as jsxs5 } from "react/jsx-runtime";
26236
+ var ContactModal = ({
26237
+ isOpen,
26238
+ setIsOpen,
26239
+ modalLabel,
26240
+ modalHeading,
26241
+ modalSubHeading,
26242
+ modalPrimaryButtonText,
26243
+ modalSecondaryButtonText
26244
+ }) => {
26245
+ return /* @__PURE__ */ jsxs5(
26246
+ Modal,
26247
+ {
26248
+ open: isOpen,
26249
+ modalLabel,
26250
+ modalHeading,
26251
+ primaryButtonText: modalPrimaryButtonText,
26252
+ secondaryButtonText: modalSecondaryButtonText,
26253
+ onRequestClose: () => setIsOpen(false),
26254
+ onRequestSubmit: () => {
26255
+ console.log("Form submitted");
26256
+ setIsOpen(false);
26257
+ },
26258
+ children: [
26259
+ /* @__PURE__ */ jsx11("p", { style: { marginBottom: "1rem" }, children: modalSubHeading }),
26260
+ /* @__PURE__ */ jsx11(Form, { children: /* @__PURE__ */ jsxs5(Stack, { gap: 5, children: [
26261
+ /* @__PURE__ */ jsx11(FormGroup, { legendText: "", children: /* @__PURE__ */ jsx11(
26262
+ TextInput,
26263
+ {
26264
+ id: "name",
26265
+ labelText: "Name",
26266
+ placeholder: "Enter your name",
26267
+ required: true
26268
+ }
26269
+ ) }),
26270
+ /* @__PURE__ */ jsx11(FormGroup, { legendText: "", children: /* @__PURE__ */ jsx11(
26271
+ TextInput,
26272
+ {
26273
+ id: "email",
26274
+ labelText: "Email",
26275
+ placeholder: "Enter your email",
26276
+ required: true,
26277
+ type: "email"
26278
+ }
26279
+ ) }),
26280
+ /* @__PURE__ */ jsx11(FormGroup, { legendText: "", children: /* @__PURE__ */ jsx11(
26281
+ TextArea,
26282
+ {
26283
+ id: "message",
26284
+ labelText: "Message",
26285
+ placeholder: "Enter your message",
26286
+ required: true,
26287
+ rows: 4
26288
+ }
26289
+ ) })
26290
+ ] }) })
26291
+ ]
26292
+ }
26293
+ );
26294
+ };
26295
+ var ContactModal_default = ContactModal;
26296
+
26297
+ // src/components/ContactButton/ContactButton.tsx
26298
+ import { Fragment as Fragment3, jsx as jsx12, jsxs as jsxs6 } from "react/jsx-runtime";
26299
+ var iconComponents = {
26300
+ Email,
26301
+ Chat,
26302
+ CustomerService,
26303
+ CommunicationUnified
26304
+ };
26305
+ var ContactButton = ({
26306
+ btnText = "Contact",
26307
+ btnIcon = "Email",
26308
+ btnKind = "primary",
26309
+ btnSize = "md",
26310
+ modalLabel = "Contact",
26311
+ modalHeading = "Hello",
26312
+ modalSubHeading = "...",
26313
+ modalPrimaryButtonText = "Submit",
26314
+ modalSecondaryButtonText = "Cancel"
26315
+ }) => {
26316
+ const [isOpen, setIsOpen] = useState2(false);
26317
+ const IconComponent = iconComponents[btnIcon];
26318
+ return /* @__PURE__ */ jsxs6(Fragment3, { children: [
26319
+ /* @__PURE__ */ jsx12(
26320
+ Button,
26321
+ {
26322
+ renderIcon: IconComponent,
26323
+ kind: btnKind,
26324
+ size: btnSize,
26325
+ onClick: () => setIsOpen(true),
26326
+ children: btnText
26327
+ }
26328
+ ),
26329
+ /* @__PURE__ */ jsx12(
26330
+ ContactModal_default,
26331
+ {
26332
+ isOpen,
26333
+ setIsOpen,
26334
+ modalLabel,
26335
+ modalHeading,
26336
+ modalSubHeading,
26337
+ modalPrimaryButtonText,
26338
+ modalSecondaryButtonText
26339
+ }
26340
+ )
26341
+ ] });
26342
+ };
26343
+ var ContactButton_default = ContactButton;
26344
+
26345
+ // src/components/CustomPictogram/CustomPictogram.tsx
26346
+ import clsx6 from "clsx";
26347
+
26348
+ // node_modules/@carbon/pictograms-react/es/Icon.js
26349
+ var import_prop_types3 = __toESM(require_prop_types());
26350
+ import React10 from "react";
26351
+ var Icon3 = /* @__PURE__ */ React10.forwardRef(function Icon4({
26352
+ className,
26353
+ children,
26354
+ tabIndex,
26355
+ xmlns = "http://www.w3.org/2000/svg",
26356
+ preserveAspectRatio = "xMidYMid meet",
26357
+ ...rest
26358
+ }, ref) {
26359
+ const {
26360
+ tabindex,
26361
+ ...attrs
26362
+ } = getAttributes({
26363
+ ...rest,
26364
+ tabindex: tabIndex
26365
+ });
26366
+ const props = attrs;
26367
+ if (className) {
26368
+ props.className = className;
26369
+ }
26370
+ if (tabindex !== void 0 && tabindex !== null) {
26371
+ if (typeof tabindex === "number") {
26372
+ props.tabIndex = tabindex;
26373
+ } else {
26374
+ props.tabIndex = Number(tabIndex);
26375
+ }
26376
+ }
26377
+ if (ref) {
26378
+ props.ref = ref;
26379
+ }
26380
+ if (xmlns) {
26381
+ props.xmlns = xmlns;
26382
+ }
26383
+ if (preserveAspectRatio) {
26384
+ props.preserveAspectRatio = preserveAspectRatio;
26385
+ }
26386
+ return /* @__PURE__ */ React10.createElement("svg", props, children);
26387
+ });
26388
+ Icon3.displayName = "Icon";
26389
+ Icon3.propTypes = {
26390
+ "aria-hidden": import_prop_types3.default.oneOfType([import_prop_types3.default.bool, import_prop_types3.default.oneOf(["true", "false"])]),
26391
+ "aria-label": import_prop_types3.default.string,
26392
+ "aria-labelledby": import_prop_types3.default.string,
26393
+ children: import_prop_types3.default.node,
26394
+ className: import_prop_types3.default.string,
26395
+ height: import_prop_types3.default.oneOfType([import_prop_types3.default.number, import_prop_types3.default.string]),
26396
+ preserveAspectRatio: import_prop_types3.default.string,
26397
+ tabIndex: import_prop_types3.default.oneOfType([import_prop_types3.default.number, import_prop_types3.default.string]),
26398
+ viewBox: import_prop_types3.default.string,
26399
+ width: import_prop_types3.default.oneOfType([import_prop_types3.default.number, import_prop_types3.default.string]),
23612
26400
  xmlns: import_prop_types3.default.string
23613
26401
  };
23614
26402
 
@@ -23624,235 +26412,235 @@ function _extends() {
23624
26412
  }
23625
26413
 
23626
26414
  // node_modules/@carbon/pictograms-react/es/__generated__/bucket-0.js
23627
- import React10 from "react";
23628
- var _path547;
23629
- var _path687;
23630
- var _path1487;
23631
- var AppDeveloper = /* @__PURE__ */ React10.forwardRef(function AppDeveloper2({ children, ...rest }, ref) {
23632
- return /* @__PURE__ */ React10.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path547 || (_path547 = /* @__PURE__ */ React10.createElement("path", { d: "M3.254,9.254L2.746,8.746L3.991,7.5L2.746,6.254l0.509-0.509L5.009,7.5L3.254,9.254z M3,2 C2.724,2,2.5,2.224,2.5,2.5S2.724,3,3,3s0.5-0.224,0.5-0.5S3.276,2,3,2z M5.5,2.5C5.5,2.776,5.276,3,5,3S4.5,2.776,4.5,2.5 S4.724,2,5,2S5.5,2.224,5.5,2.5z M7.5,2.5C7.5,2.776,7.276,3,7,3S6.5,2.776,6.5,2.5S6.724,2,7,2S7.5,2.224,7.5,2.5z M18.5,6.5 C18.5,6.776,18.276,7,18,7s-0.5-0.224-0.5-0.5S17.724,6,18,6S18.5,6.224,18.5,6.5z M20.5,6.5C20.5,6.776,20.276,7,20,7 s-0.5-0.224-0.5-0.5S19.724,6,20,6S20.5,6.224,20.5,6.5z M22.5,6.5C22.5,6.776,22.276,7,22,7s-0.5-0.224-0.5-0.5S21.724,6,22,6 S22.5,6.224,22.5,6.5z M5.5,24.5C5.5,24.776,5.276,25,5,25s-0.5-0.224-0.5-0.5S4.724,24,5,24S5.5,24.224,5.5,24.5z M13,14.36H1 c-0.199,0-0.36-0.161-0.36-0.36V1c0-0.199,0.161-0.36,0.36-0.36h12c0.199,0,0.36,0.161,0.36,0.36v13 C13.36,14.199,13.199,14.36,13,14.36z M12.64,4.36H1.36v9.28h11.28C12.64,13.64,12.64,4.36,12.64,4.36z M12.64,1.36H1.36v2.281 h11.28C12.64,3.641,12.64,1.36,12.64,1.36z M31.36,5v17c0,0.199-0.161,0.36-0.36,0.36H19.691c-0.301,0.471-0.69,0.885-1.152,1.215 c2.875,1.05,4.819,3.778,4.819,6.902l0.002,0.521L22.639,31l-0.002-0.522c0-3.078-2.09-5.729-5.083-6.45 c-0.15-0.035-0.26-0.163-0.274-0.316s0.07-0.299,0.211-0.361c1.315-0.592,2.165-1.9,2.165-3.334c0-2.017-1.64-3.657-3.656-3.657 c-2.018,0-3.66,1.64-3.66,3.657c0,1.434,0.85,2.742,2.166,3.334c0.141,0.062,0.225,0.208,0.211,0.361s-0.125,0.281-0.274,0.316 c-2.993,0.721-5.084,3.372-5.084,6.449l0.001,0.521L8.64,31l-0.001-0.522c0-3.125,1.943-5.854,4.819-6.903 c-1.138-0.812-1.838-2.134-1.838-3.559c0-2.292,1.772-4.178,4.02-4.362V5c0-0.199,0.161-0.36,0.36-0.36h15 C31.199,4.64,31.36,4.801,31.36,5z M30.64,8.36H16.36v7.295c2.246,0.184,4.017,2.07,4.017,4.362c0,0.566-0.11,1.115-0.315,1.623 H30.64V8.36z M30.64,5.36H16.36v2.28h14.28V5.36z M22,11.64h-4v0.72h4V11.64z M23.64,17.5c0-1.577,1.283-2.86,2.86-2.86 s2.86,1.283,2.86,2.86s-1.283,2.86-2.86,2.86S23.64,19.077,23.64,17.5z M28.242,16.266l-1.383,1.383l-0.004,1.955 c1.01-0.171,1.784-1.046,1.784-2.104C28.64,17.04,28.49,16.615,28.242,16.266z M24.36,17.5c0,1.055,0.769,1.928,1.774,2.103 l0.006-2.253l1.592-1.593c-0.349-0.248-0.773-0.397-1.233-0.397C25.32,15.36,24.36,16.32,24.36,17.5z M8,9.64H5v0.72h3V9.64z M3.5,21.36h3v-0.72h-3V21.36z M3.5,19.36h3v-0.72h-3V19.36z M22,13.64h-4v0.72h4V13.64z M29,11.64h-4v0.72h4V11.64z M29,9.64h-4 v0.72h4V9.64z M22,9.64h-4v0.72h4V9.64z M8.36,17.584v7.832c0,0.521-0.423,0.944-0.944,0.944H2.584 c-0.521,0-0.944-0.424-0.944-0.944v-7.832c0-0.521,0.423-0.944,0.944-0.944h4.832C7.937,16.64,8.36,17.063,8.36,17.584z M7.64,23.36 H2.36v2.056c0,0.123,0.101,0.224,0.224,0.224h4.832c0.124,0,0.224-0.101,0.224-0.224C7.64,25.416,7.64,23.36,7.64,23.36z M7.64,17.584c0-0.123-0.101-0.224-0.224-0.224H2.584c-0.124,0-0.224,0.101-0.224,0.224v5.056h5.28 C7.64,22.64,7.64,17.584,7.64,17.584z" })), children);
26415
+ import React11 from "react";
26416
+ var _path548;
26417
+ var _path688;
26418
+ var _path1488;
26419
+ var AppDeveloper = /* @__PURE__ */ React11.forwardRef(function AppDeveloper2({ children, ...rest }, ref) {
26420
+ return /* @__PURE__ */ React11.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path548 || (_path548 = /* @__PURE__ */ React11.createElement("path", { d: "M3.254,9.254L2.746,8.746L3.991,7.5L2.746,6.254l0.509-0.509L5.009,7.5L3.254,9.254z M3,2 C2.724,2,2.5,2.224,2.5,2.5S2.724,3,3,3s0.5-0.224,0.5-0.5S3.276,2,3,2z M5.5,2.5C5.5,2.776,5.276,3,5,3S4.5,2.776,4.5,2.5 S4.724,2,5,2S5.5,2.224,5.5,2.5z M7.5,2.5C7.5,2.776,7.276,3,7,3S6.5,2.776,6.5,2.5S6.724,2,7,2S7.5,2.224,7.5,2.5z M18.5,6.5 C18.5,6.776,18.276,7,18,7s-0.5-0.224-0.5-0.5S17.724,6,18,6S18.5,6.224,18.5,6.5z M20.5,6.5C20.5,6.776,20.276,7,20,7 s-0.5-0.224-0.5-0.5S19.724,6,20,6S20.5,6.224,20.5,6.5z M22.5,6.5C22.5,6.776,22.276,7,22,7s-0.5-0.224-0.5-0.5S21.724,6,22,6 S22.5,6.224,22.5,6.5z M5.5,24.5C5.5,24.776,5.276,25,5,25s-0.5-0.224-0.5-0.5S4.724,24,5,24S5.5,24.224,5.5,24.5z M13,14.36H1 c-0.199,0-0.36-0.161-0.36-0.36V1c0-0.199,0.161-0.36,0.36-0.36h12c0.199,0,0.36,0.161,0.36,0.36v13 C13.36,14.199,13.199,14.36,13,14.36z M12.64,4.36H1.36v9.28h11.28C12.64,13.64,12.64,4.36,12.64,4.36z M12.64,1.36H1.36v2.281 h11.28C12.64,3.641,12.64,1.36,12.64,1.36z M31.36,5v17c0,0.199-0.161,0.36-0.36,0.36H19.691c-0.301,0.471-0.69,0.885-1.152,1.215 c2.875,1.05,4.819,3.778,4.819,6.902l0.002,0.521L22.639,31l-0.002-0.522c0-3.078-2.09-5.729-5.083-6.45 c-0.15-0.035-0.26-0.163-0.274-0.316s0.07-0.299,0.211-0.361c1.315-0.592,2.165-1.9,2.165-3.334c0-2.017-1.64-3.657-3.656-3.657 c-2.018,0-3.66,1.64-3.66,3.657c0,1.434,0.85,2.742,2.166,3.334c0.141,0.062,0.225,0.208,0.211,0.361s-0.125,0.281-0.274,0.316 c-2.993,0.721-5.084,3.372-5.084,6.449l0.001,0.521L8.64,31l-0.001-0.522c0-3.125,1.943-5.854,4.819-6.903 c-1.138-0.812-1.838-2.134-1.838-3.559c0-2.292,1.772-4.178,4.02-4.362V5c0-0.199,0.161-0.36,0.36-0.36h15 C31.199,4.64,31.36,4.801,31.36,5z M30.64,8.36H16.36v7.295c2.246,0.184,4.017,2.07,4.017,4.362c0,0.566-0.11,1.115-0.315,1.623 H30.64V8.36z M30.64,5.36H16.36v2.28h14.28V5.36z M22,11.64h-4v0.72h4V11.64z M23.64,17.5c0-1.577,1.283-2.86,2.86-2.86 s2.86,1.283,2.86,2.86s-1.283,2.86-2.86,2.86S23.64,19.077,23.64,17.5z M28.242,16.266l-1.383,1.383l-0.004,1.955 c1.01-0.171,1.784-1.046,1.784-2.104C28.64,17.04,28.49,16.615,28.242,16.266z M24.36,17.5c0,1.055,0.769,1.928,1.774,2.103 l0.006-2.253l1.592-1.593c-0.349-0.248-0.773-0.397-1.233-0.397C25.32,15.36,24.36,16.32,24.36,17.5z M8,9.64H5v0.72h3V9.64z M3.5,21.36h3v-0.72h-3V21.36z M3.5,19.36h3v-0.72h-3V19.36z M22,13.64h-4v0.72h4V13.64z M29,11.64h-4v0.72h4V11.64z M29,9.64h-4 v0.72h4V9.64z M22,9.64h-4v0.72h4V9.64z M8.36,17.584v7.832c0,0.521-0.423,0.944-0.944,0.944H2.584 c-0.521,0-0.944-0.424-0.944-0.944v-7.832c0-0.521,0.423-0.944,0.944-0.944h4.832C7.937,16.64,8.36,17.063,8.36,17.584z M7.64,23.36 H2.36v2.056c0,0.123,0.101,0.224,0.224,0.224h4.832c0.124,0,0.224-0.101,0.224-0.224C7.64,25.416,7.64,23.36,7.64,23.36z M7.64,17.584c0-0.123-0.101-0.224-0.224-0.224H2.584c-0.124,0-0.224,0.101-0.224,0.224v5.056h5.28 C7.64,22.64,7.64,17.584,7.64,17.584z" })), children);
23633
26421
  });
23634
- var AssetManagement = /* @__PURE__ */ React10.forwardRef(function AssetManagement2({ children, ...rest }, ref) {
23635
- return /* @__PURE__ */ React10.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path687 || (_path687 = /* @__PURE__ */ React10.createElement("path", { d: "M13.254,31.255l-0.509-0.51l1-1 c0.057-0.057,0.13-0.093,0.21-0.103l7.32-0.915c0.36-0.045,0.699-0.21,0.954-0.466l6.102-6.103c0.411-0.41,0.411-1.079,0-1.491 c-0.411-0.411-1.081-0.41-1.49,0.001l-6.207,5.046c-0.426,0.404-1.001,0.652-1.634,0.652h-5v-0.721h5 c0.397,0,0.763-0.141,1.048-0.374l-0.004-0.006l0.116-0.095c0.302-0.297,0.488-0.709,0.488-1.163c0-0.354-0.291-0.642-0.648-0.642 h-7.741v-0.721H20c0.755,0,1.369,0.61,1.369,1.36c0,0.063-0.003,0.127-0.008,0.188l4.998-4.061c0.663-0.666,1.79-0.667,2.48,0.024 c0.692,0.692,0.691,1.818,0.001,2.51l-6.102,6.102c-0.368,0.368-0.856,0.607-1.375,0.672l-7.197,0.899L13.254,31.255z M4.255,31.254 l-0.51-0.508l2.904-2.91c0.213-2.925,2.651-5.196,5.61-5.196v0.721c-2.622,0-4.774,2.043-4.9,4.651 c-0.004,0.089-0.042,0.174-0.104,0.236L4.255,31.254z M21,19.36H9c-0.199,0-0.36-0.161-0.36-0.36V4c0-0.199,0.161-0.36,0.36-0.36 h2.64V1c0-0.199,0.161-0.36,0.36-0.36h12c0.199,0,0.36,0.161,0.36,0.36v15c0,0.199-0.161,0.36-0.36,0.36h-2.64V19 C21.36,19.199,21.199,19.36,21,19.36z M9.36,18.64h11.28V8.36H17c-0.199,0-0.36-0.161-0.36-0.36V4.36H9.36V18.64z M21.36,15.64 h2.279V1.36H12.36v2.28H17c0.096,0,0.188,0.038,0.255,0.105l4,4C21.322,7.813,21.36,7.904,21.36,8V15.64z M17.36,7.64h2.771 L17.36,4.869V7.64z M19,15.36h-8v-0.72h8V15.36z M19,13.36h-8v-0.72h8V13.36z M19,11.36h-8v-0.72h8V11.36z" })), children);
26422
+ var AssetManagement = /* @__PURE__ */ React11.forwardRef(function AssetManagement2({ children, ...rest }, ref) {
26423
+ return /* @__PURE__ */ React11.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path688 || (_path688 = /* @__PURE__ */ React11.createElement("path", { d: "M13.254,31.255l-0.509-0.51l1-1 c0.057-0.057,0.13-0.093,0.21-0.103l7.32-0.915c0.36-0.045,0.699-0.21,0.954-0.466l6.102-6.103c0.411-0.41,0.411-1.079,0-1.491 c-0.411-0.411-1.081-0.41-1.49,0.001l-6.207,5.046c-0.426,0.404-1.001,0.652-1.634,0.652h-5v-0.721h5 c0.397,0,0.763-0.141,1.048-0.374l-0.004-0.006l0.116-0.095c0.302-0.297,0.488-0.709,0.488-1.163c0-0.354-0.291-0.642-0.648-0.642 h-7.741v-0.721H20c0.755,0,1.369,0.61,1.369,1.36c0,0.063-0.003,0.127-0.008,0.188l4.998-4.061c0.663-0.666,1.79-0.667,2.48,0.024 c0.692,0.692,0.691,1.818,0.001,2.51l-6.102,6.102c-0.368,0.368-0.856,0.607-1.375,0.672l-7.197,0.899L13.254,31.255z M4.255,31.254 l-0.51-0.508l2.904-2.91c0.213-2.925,2.651-5.196,5.61-5.196v0.721c-2.622,0-4.774,2.043-4.9,4.651 c-0.004,0.089-0.042,0.174-0.104,0.236L4.255,31.254z M21,19.36H9c-0.199,0-0.36-0.161-0.36-0.36V4c0-0.199,0.161-0.36,0.36-0.36 h2.64V1c0-0.199,0.161-0.36,0.36-0.36h12c0.199,0,0.36,0.161,0.36,0.36v15c0,0.199-0.161,0.36-0.36,0.36h-2.64V19 C21.36,19.199,21.199,19.36,21,19.36z M9.36,18.64h11.28V8.36H17c-0.199,0-0.36-0.161-0.36-0.36V4.36H9.36V18.64z M21.36,15.64 h2.279V1.36H12.36v2.28H17c0.096,0,0.188,0.038,0.255,0.105l4,4C21.322,7.813,21.36,7.904,21.36,8V15.64z M17.36,7.64h2.771 L17.36,4.869V7.64z M19,15.36h-8v-0.72h8V15.36z M19,13.36h-8v-0.72h8V13.36z M19,11.36h-8v-0.72h8V11.36z" })), children);
23636
26424
  });
23637
- var Carbon = /* @__PURE__ */ React10.forwardRef(function Carbon2({ children, ...rest }, ref) {
23638
- return /* @__PURE__ */ React10.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path1487 || (_path1487 = /* @__PURE__ */ React10.createElement("path", { d: "M14,31.36c-0.062,0-0.124-0.017-0.18-0.048l-10-5.75 c-0.111-0.064-0.18-0.184-0.18-0.312v-11.5c0-0.129,0.069-0.248,0.18-0.312l10-5.75c0.111-0.064,0.248-0.064,0.359,0l10,5.75 c0.111,0.064,0.181,0.183,0.181,0.312v11.5c0,0.129-0.069,0.248-0.181,0.312l-10,5.75C14.124,31.344,14.062,31.36,14,31.36z M4.36,25.042L14,30.585l9.64-5.543V13.958L14,8.415l-9.64,5.543C4.36,13.958,4.36,25.042,4.36,25.042z M28.36,18h-0.72V6.958 L18,1.415L8.18,7.062L7.82,6.438l10-5.75c0.111-0.064,0.248-0.064,0.359,0l10,5.75C28.29,6.502,28.36,6.621,28.36,6.75 C28.36,6.75,28.36,18,28.36,18z" })), children);
26425
+ var Carbon = /* @__PURE__ */ React11.forwardRef(function Carbon2({ children, ...rest }, ref) {
26426
+ return /* @__PURE__ */ React11.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path1488 || (_path1488 = /* @__PURE__ */ React11.createElement("path", { d: "M14,31.36c-0.062,0-0.124-0.017-0.18-0.048l-10-5.75 c-0.111-0.064-0.18-0.184-0.18-0.312v-11.5c0-0.129,0.069-0.248,0.18-0.312l10-5.75c0.111-0.064,0.248-0.064,0.359,0l10,5.75 c0.111,0.064,0.181,0.183,0.181,0.312v11.5c0,0.129-0.069,0.248-0.181,0.312l-10,5.75C14.124,31.344,14.062,31.36,14,31.36z M4.36,25.042L14,30.585l9.64-5.543V13.958L14,8.415l-9.64,5.543C4.36,13.958,4.36,25.042,4.36,25.042z M28.36,18h-0.72V6.958 L18,1.415L8.18,7.062L7.82,6.438l10-5.75c0.111-0.064,0.248-0.064,0.359,0l10,5.75C28.29,6.502,28.36,6.621,28.36,6.75 C28.36,6.75,28.36,18,28.36,18z" })), children);
23639
26427
  });
23640
26428
 
23641
26429
  // node_modules/@carbon/pictograms-react/es/__generated__/bucket-1.js
23642
- import React11 from "react";
23643
- var _path920;
23644
- var _path1520;
23645
- var _path1307;
23646
- var CodeExplanation = /* @__PURE__ */ React11.forwardRef(function CodeExplanation2({
26430
+ import React12 from "react";
26431
+ var _path921;
26432
+ var _path1521;
26433
+ var _path1308;
26434
+ var CodeExplanation = /* @__PURE__ */ React12.forwardRef(function CodeExplanation2({
23647
26435
  children,
23648
26436
  ...rest
23649
26437
  }, ref) {
23650
- return /* @__PURE__ */ React11.createElement(Icon3, _extends({
26438
+ return /* @__PURE__ */ React12.createElement(Icon3, _extends({
23651
26439
  width: 64,
23652
26440
  height: 64,
23653
26441
  viewBox: "0 0 32 32",
23654
26442
  xmlns: "http://www.w3.org/2000/svg",
23655
26443
  fill: "currentColor",
23656
26444
  ref
23657
- }, rest), _path920 || (_path920 = /* @__PURE__ */ React11.createElement("path", {
26445
+ }, rest), _path921 || (_path921 = /* @__PURE__ */ React12.createElement("path", {
23658
26446
  d: "M27,31.36H5c-0.199,0-0.36-0.161-0.36-0.36 v-4.162C3.232,26.66,2.14,25.455,2.14,24s1.092-2.66,2.5-2.838V17c0-0.199,0.161-0.36,0.36-0.36h1.817 c1.49-2,3.536-3.508,5.732-4.243C10.735,11.249,9.64,9.253,9.64,7c0-3.566,2.793-6.36,6.36-6.36S22.36,3.434,22.36,7 c0,2.253-1.095,4.249-2.909,5.397c2.195,0.734,4.242,2.242,5.731,4.243H27c0.199,0,0.36,0.161,0.36,0.36v4.162 c1.407,0.178,2.5,1.383,2.5,2.838s-1.093,2.66-2.5,2.838V31C27.36,31.199,27.199,31.36,27,31.36z M5.36,30.64h21.28v-3.802 c-1.407-0.178-2.5-1.383-2.5-2.838s1.093-2.66,2.5-2.838V17.36H5.36v3.802c1.408,0.178,2.5,1.383,2.5,2.838s-1.092,2.66-2.5,2.838 V30.64z M27,21.86c-1.18,0-2.14,0.96-2.14,2.14s0.96,2.14,2.14,2.14s2.14-0.96,2.14-2.14S28.18,21.86,27,21.86z M5,21.86 c-1.18,0-2.14,0.96-2.14,2.14S3.82,26.14,5,26.14S7.14,25.18,7.14,24S6.18,21.86,5,21.86z M7.731,16.64H24.27 c-1.558-1.904-3.657-3.27-5.853-3.79c-0.15-0.035-0.261-0.163-0.275-0.316c-0.015-0.154,0.07-0.3,0.211-0.363 C20.381,11.263,21.64,9.281,21.64,7c0-3.163-2.477-5.64-5.64-5.64S10.36,3.838,10.36,7c0,2.281,1.26,4.263,3.288,5.171 c0.141,0.063,0.226,0.209,0.211,0.363c-0.015,0.153-0.125,0.281-0.275,0.316C11.388,13.37,9.289,14.736,7.731,16.64z M14.322,28.161 l-0.644-0.322l4-8l0.645,0.322L14.322,28.161z M19.255,27.255l-0.51-0.51L21.491,24l-2.746-2.745l0.51-0.51L22.509,24L19.255,27.255 z M12.746,27.255L9.491,24l3.255-3.255l0.509,0.51L10.509,24l2.745,2.745L12.746,27.255z"
23659
26447
  })), children);
23660
26448
  });
23661
- var Collaboration = /* @__PURE__ */ React11.forwardRef(function Collaboration2({
26449
+ var Collaboration = /* @__PURE__ */ React12.forwardRef(function Collaboration2({
23662
26450
  children,
23663
26451
  ...rest
23664
26452
  }, ref) {
23665
- return /* @__PURE__ */ React11.createElement(Icon3, _extends({
26453
+ return /* @__PURE__ */ React12.createElement(Icon3, _extends({
23666
26454
  width: 64,
23667
26455
  height: 64,
23668
26456
  viewBox: "0 0 32 32",
23669
26457
  xmlns: "http://www.w3.org/2000/svg",
23670
26458
  fill: "currentColor",
23671
26459
  ref
23672
- }, rest), _path1520 || (_path1520 = /* @__PURE__ */ React11.createElement("path", {
26460
+ }, rest), _path1521 || (_path1521 = /* @__PURE__ */ React12.createElement("path", {
23673
26461
  d: "M1.36,11.318V16H0.64v-4.683c0-2.221,1.342-4.163,3.347-4.969C3.242,5.749,2.79,4.834,2.79,3.85 c0-1.77,1.44-3.21,3.21-3.21s3.21,1.44,3.21,3.21c0,0.984-0.452,1.898-1.197,2.499c2.005,0.806,3.347,2.748,3.347,4.969V16h-0.72 v-4.683c0-2.16-1.467-4.016-3.566-4.514C6.924,6.768,6.813,6.64,6.799,6.487c-0.014-0.154,0.071-0.3,0.212-0.363 c0.899-0.4,1.48-1.293,1.48-2.275c0-1.373-1.117-2.49-2.49-2.49S3.51,2.477,3.51,3.85c0,0.982,0.581,1.875,1.48,2.275 c0.141,0.063,0.226,0.209,0.212,0.362C5.188,6.641,5.077,6.769,4.926,6.804C2.827,7.302,1.36,9.158,1.36,11.318z M28.014,21.349 c0.745-0.601,1.197-1.516,1.197-2.499c0-1.771-1.44-3.21-3.211-3.21s-3.211,1.439-3.211,3.21c0,0.983,0.452,1.898,1.197,2.499 c-2.005,0.806-3.347,2.748-3.347,4.969V31h0.721v-4.683c0-2.16,1.466-4.016,3.565-4.514c0.15-0.036,0.261-0.163,0.275-0.317 c0.015-0.153-0.071-0.3-0.212-0.362c-0.899-0.399-1.479-1.292-1.479-2.274c0-1.373,1.117-2.49,2.49-2.49s2.49,1.117,2.49,2.49 c0,0.982-0.58,1.875-1.479,2.274c-0.141,0.062-0.227,0.209-0.212,0.362c0.015,0.154,0.125,0.281,0.275,0.317 c2.1,0.498,3.565,2.354,3.565,4.514V31h0.721v-4.683C31.36,24.097,30.019,22.154,28.014,21.349z M6.36,23v-5.131l2.386,2.386 l0.509-0.51L6,16.491l-3.254,3.254l0.509,0.51l2.386-2.386V23c0,2.404,1.956,4.36,4.36,4.36h9v-0.72h-9 C7.993,26.64,6.36,25.007,6.36,23z M25.64,8v5.13l-2.385-2.385l-0.51,0.509L26,14.509l3.255-3.255l-0.51-0.509L26.36,13.13V8 c0-2.404-1.956-4.36-4.36-4.36H11v0.72h11C24.007,4.36,25.64,5.993,25.64,8z"
23674
26462
  })), children);
23675
26463
  });
23676
- var DevicePairing = /* @__PURE__ */ React11.forwardRef(function DevicePairing2({
26464
+ var DevicePairing = /* @__PURE__ */ React12.forwardRef(function DevicePairing2({
23677
26465
  children,
23678
26466
  ...rest
23679
26467
  }, ref) {
23680
- return /* @__PURE__ */ React11.createElement(Icon3, _extends({
26468
+ return /* @__PURE__ */ React12.createElement(Icon3, _extends({
23681
26469
  width: 64,
23682
26470
  height: 64,
23683
26471
  viewBox: "0 0 32 32",
23684
26472
  xmlns: "http://www.w3.org/2000/svg",
23685
26473
  fill: "currentColor",
23686
26474
  ref
23687
- }, rest), _path1307 || (_path1307 = /* @__PURE__ */ React11.createElement("path", {
26475
+ }, rest), _path1308 || (_path1308 = /* @__PURE__ */ React12.createElement("path", {
23688
26476
  d: "M31,29.36h-9c-0.199,0-0.36-0.161-0.36-0.36v-6.64H1v-0.72h20.64v-1.28H4 c-0.75,0-1.36-0.61-1.36-1.36V4c0-0.749,0.61-1.359,1.36-1.36h22c0.75,0,1.36,0.61,1.36,1.36v8.64H31c0.199,0,0.36,0.161,0.36,0.36 v16C31.36,29.199,31.199,29.36,31,29.36z M22.36,28.64h8.279v-2.28H22.36V28.64z M22.36,25.64h8.279V13.36H22.36V25.64z M4,3.36 C3.647,3.361,3.36,3.648,3.36,4v15c0,0.353,0.287,0.64,0.64,0.64h17.64V13c0-0.199,0.161-0.36,0.36-0.36h4.64V4 c0-0.353-0.287-0.64-0.64-0.64C26,3.36,4,3.36,4,3.36z"
23689
26477
  })), children);
23690
26478
  });
23691
26479
 
23692
26480
  // node_modules/@carbon/pictograms-react/es/__generated__/bucket-2.js
23693
- import React12 from "react";
23694
- var _path707;
23695
- var _path1197;
26481
+ import React13 from "react";
26482
+ var _path708;
26483
+ var _path1198;
23696
26484
  var _path2362;
23697
- var Goals = /* @__PURE__ */ React12.forwardRef(function Goals2({
26485
+ var Goals = /* @__PURE__ */ React13.forwardRef(function Goals2({
23698
26486
  children,
23699
26487
  ...rest
23700
26488
  }, ref) {
23701
- return /* @__PURE__ */ React12.createElement(Icon3, _extends({
26489
+ return /* @__PURE__ */ React13.createElement(Icon3, _extends({
23702
26490
  width: 64,
23703
26491
  height: 64,
23704
26492
  viewBox: "0 0 32 32",
23705
26493
  xmlns: "http://www.w3.org/2000/svg",
23706
26494
  fill: "currentColor",
23707
26495
  ref
23708
- }, rest), _path707 || (_path707 = /* @__PURE__ */ React12.createElement("path", {
26496
+ }, rest), _path708 || (_path708 = /* @__PURE__ */ React13.createElement("path", {
23709
26497
  d: "M31,10.36h-9.36V1h0.721v8.131l8.385-8.385l0.51,0.509L22.869,9.64H31V10.36z M21.36,16 c0-2.956-2.405-5.36-5.36-5.36c-2.956,0-5.36,2.404-5.36,5.36c0,2.955,2.404,5.36,5.36,5.36C18.955,21.36,21.36,18.955,21.36,16z M20.64,16c0,2.559-2.081,4.64-4.64,4.64s-4.64-2.081-4.64-4.64s2.082-4.64,4.64-4.64S20.64,13.441,20.64,16z M31.36,16 c0-1.353-0.191-2.731-0.569-4.096l-0.693,0.191c0.359,1.303,0.542,2.616,0.542,3.904c0,8.072-6.567,14.64-14.64,14.64 C7.927,30.64,1.36,24.072,1.36,16C1.36,7.927,7.927,1.36,16,1.36c1.287,0,2.601,0.183,3.904,0.543l0.191-0.694 C18.729,0.832,17.352,0.64,16,0.64C7.53,0.64,0.64,7.53,0.64,16S7.53,31.36,16,31.36S31.36,24.47,31.36,16z M26.36,16 c0-1.433-0.292-2.828-0.868-4.144l-0.66,0.288C25.368,13.37,25.64,14.667,25.64,16c0,5.315-4.324,9.64-9.64,9.64 S6.36,21.315,6.36,16S10.685,6.36,16,6.36c1.333,0,2.631,0.272,3.855,0.808l0.289-0.659C18.827,5.932,17.434,5.64,16,5.64 C10.288,5.64,5.64,10.288,5.64,16c0,5.713,4.647,10.36,10.36,10.36S26.36,21.713,26.36,16z M16,15c-0.552,0-1,0.448-1,1s0.448,1,1,1 s1-0.448,1-1S16.552,15,16,15z"
23710
26498
  })), children);
23711
26499
  });
23712
- var Hills = /* @__PURE__ */ React12.forwardRef(function Hills2({
26500
+ var Hills = /* @__PURE__ */ React13.forwardRef(function Hills2({
23713
26501
  children,
23714
26502
  ...rest
23715
26503
  }, ref) {
23716
- return /* @__PURE__ */ React12.createElement(Icon3, _extends({
26504
+ return /* @__PURE__ */ React13.createElement(Icon3, _extends({
23717
26505
  width: 64,
23718
26506
  height: 64,
23719
26507
  viewBox: "0 0 32 32",
23720
26508
  xmlns: "http://www.w3.org/2000/svg",
23721
26509
  fill: "currentColor",
23722
26510
  ref
23723
- }, rest), _path1197 || (_path1197 = /* @__PURE__ */ React12.createElement("path", {
26511
+ }, rest), _path1198 || (_path1198 = /* @__PURE__ */ React13.createElement("path", {
23724
26512
  d: "M30.192,29.64L16.36,8.891V5.36h4.509l-1.86-1.86l1.86-1.86H15.64v7.251L1.807,29.64H1v0.721h30V29.64H30.192 z M16.36,2.36h2.771l-1.14,1.14l1.14,1.14H16.36V2.36z M2.673,29.64L8,21.649l5.327,7.99L2.673,29.64L2.673,29.64z M14.193,29.64 L8.433,21L12,15.649l9.327,13.991H14.193z M22.192,29.64L12.433,15L16,9.649L29.327,29.64H22.192z"
23725
26513
  })), children);
23726
26514
  });
23727
- var Leadership = /* @__PURE__ */ React12.forwardRef(function Leadership2({
26515
+ var Leadership = /* @__PURE__ */ React13.forwardRef(function Leadership2({
23728
26516
  children,
23729
26517
  ...rest
23730
26518
  }, ref) {
23731
- return /* @__PURE__ */ React12.createElement(Icon3, _extends({
26519
+ return /* @__PURE__ */ React13.createElement(Icon3, _extends({
23732
26520
  width: 64,
23733
26521
  height: 64,
23734
26522
  viewBox: "0 0 32 32",
23735
26523
  xmlns: "http://www.w3.org/2000/svg",
23736
26524
  fill: "currentColor",
23737
26525
  ref
23738
- }, rest), _path2362 || (_path2362 = /* @__PURE__ */ React12.createElement("path", {
26526
+ }, rest), _path2362 || (_path2362 = /* @__PURE__ */ React13.createElement("path", {
23739
26527
  d: "M31.36,31h-0.72c0-6.587-4.825-12.394-11.475-13.809 c-0.153-0.032-0.268-0.161-0.283-0.317c-0.016-0.156,0.072-0.304,0.217-0.366c2.91-1.246,4.791-4.095,4.791-7.258 c0-4.351-3.539-7.89-7.89-7.89S8.11,4.9,8.11,9.25c0,3.165,1.881,6.014,4.792,7.258c0.144,0.062,0.232,0.21,0.217,0.366 s-0.13,0.285-0.283,0.317C6.186,18.607,1.36,24.414,1.36,31H0.64c0-6.601,4.604-12.456,11.082-14.275 C9.062,15.203,7.39,12.366,7.39,9.25c0-4.748,3.862-8.61,8.61-8.61s8.61,3.862,8.61,8.61c0,3.116-1.672,5.951-4.333,7.473 C26.755,18.543,31.36,24.398,31.36,31z M19,29.36c-0.072,0-0.146-0.022-0.208-0.066L16,27.319l-2.792,1.975 c-0.127,0.091-0.299,0.089-0.424-0.006c-0.125-0.095-0.175-0.258-0.124-0.406l1.104-3.182l-2.725-1.969 c-0.126-0.092-0.18-0.254-0.131-0.402c0.048-0.149,0.186-0.25,0.342-0.25h3.371l1.037-3.19C15.706,19.74,15.844,19.64,16,19.64l0,0 c0.156,0,0.294,0.101,0.342,0.249l1.037,3.19h3.371c0.156,0,0.295,0.101,0.343,0.25c0.048,0.148-0.005,0.311-0.132,0.402 L18.236,25.7l1.104,3.182c0.052,0.148,0.002,0.312-0.123,0.406C19.152,29.336,19.076,29.36,19,29.36z M16,26.519 c0.073,0,0.146,0.022,0.208,0.066l2.085,1.474l-0.824-2.375c-0.053-0.15,0-0.316,0.129-0.41l2.04-1.474h-2.521 c-0.156,0-0.294-0.101-0.342-0.249L16,21.165l-0.775,2.386c-0.048,0.148-0.187,0.249-0.342,0.249h-2.52l2.04,1.474 c0.129,0.094,0.181,0.26,0.129,0.41l-0.824,2.375l2.084-1.474C15.854,26.541,15.927,26.519,16,26.519z"
23740
26528
  })), children);
23741
26529
  });
23742
26530
 
23743
26531
  // node_modules/@carbon/pictograms-react/es/__generated__/bucket-3.js
23744
- import React13 from "react";
23745
- var _path2314;
23746
- var _path947;
23747
- var _path11110;
23748
- var _path2017;
26532
+ import React14 from "react";
26533
+ var _path2315;
26534
+ var _path948;
26535
+ var _path11111;
26536
+ var _path2019;
23749
26537
  var _path2144;
23750
26538
  var _path2154;
23751
26539
  var _path2452;
23752
- var MagicWand = /* @__PURE__ */ React13.forwardRef(function MagicWand2({ children, ...rest }, ref) {
23753
- return /* @__PURE__ */ React13.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2314 || (_path2314 = /* @__PURE__ */ React13.createElement("path", { d: "M3.754,10.246c-0.141-0.141-0.368-0.141-0.509,0 l-1.5,1.5c-0.141,0.141-0.141,0.368,0,0.509l1.5,1.5c0.07,0.07,0.162,0.105,0.254,0.105s0.184-0.035,0.254-0.105l1.5-1.5 c0.141-0.141,0.141-0.368,0-0.509L3.754,10.246z M3.5,12.991L2.509,12L3.5,11.009L4.491,12L3.5,12.991z M4.746,5.254 C4.816,5.325,4.908,5.36,5,5.36s0.184-0.035,0.254-0.105l1.5-1.5c0.141-0.141,0.141-0.368,0-0.509l-1.5-1.5 c-0.141-0.141-0.368-0.141-0.509,0l-1.5,1.5c-0.141,0.141-0.141,0.368,0,0.509L4.746,5.254z M5,2.509L5.991,3.5L5,4.491L4.009,3.5 L5,2.509z M10.972,4.864C11.954,5.109,12.64,5.988,12.64,7c0,0.199,0.161,0.36,0.36,0.36S13.36,7.199,13.36,7 c0-1.012,0.686-1.891,1.729-2.151c0.159-0.04,0.271-0.184,0.271-0.349s-0.112-0.309-0.271-0.349l-0.06-0.015h-0.001 C14.046,3.891,13.36,3.012,13.36,2c0-0.199-0.161-0.36-0.36-0.36S12.64,1.801,12.64,2c0,1.012-0.686,1.891-1.729,2.151 c-0.16,0.041-0.242,0.192-0.241,0.357C10.67,4.673,10.812,4.825,10.972,4.864z M13,3.407c0.246,0.447,0.606,0.826,1.048,1.093 c-0.443,0.268-0.804,0.647-1.05,1.095c-0.245-0.443-0.606-0.82-1.055-1.09C12.39,4.237,12.753,3.857,13,3.407z M10.089,16.151 l-0.06-0.015h-0.001C9.046,15.891,8.36,15.012,8.36,14c0-0.199-0.161-0.36-0.36-0.36S7.64,13.801,7.64,14 c0,1.012-0.686,1.891-1.729,2.151c-0.16,0.041-0.242,0.192-0.241,0.357c0,0.165,0.143,0.316,0.302,0.356 C6.954,17.109,7.64,17.987,7.64,19c0,0.199,0.161,0.36,0.36,0.36S8.36,19.199,8.36,19c0-1.013,0.686-1.891,1.729-2.151 c0.159-0.041,0.271-0.185,0.271-0.349S10.248,16.191,10.089,16.151z M7.999,17.595c-0.245-0.442-0.606-0.819-1.055-1.09 C7.39,16.237,7.753,15.857,8,15.407c0.246,0.447,0.606,0.826,1.048,1.093C8.605,16.768,8.244,17.146,7.999,17.595z M30.255,28.245 l-22-22c-0.141-0.141-0.368-0.141-0.509,0l-1.5,1.5c-0.141,0.141-0.141,0.368,0,0.509l22,22c0.07,0.07,0.163,0.105,0.255,0.105 s0.185-0.035,0.255-0.105l1.5-1.5C30.396,28.614,30.396,28.386,30.255,28.245z M8,7.009l5.741,5.741l-0.991,0.991L7.009,8L8,7.009z M28.5,29.491L13.259,14.25l0.991-0.991L29.491,28.5L28.5,29.491z" })), children);
26540
+ var MagicWand = /* @__PURE__ */ React14.forwardRef(function MagicWand2({ children, ...rest }, ref) {
26541
+ return /* @__PURE__ */ React14.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2315 || (_path2315 = /* @__PURE__ */ React14.createElement("path", { d: "M3.754,10.246c-0.141-0.141-0.368-0.141-0.509,0 l-1.5,1.5c-0.141,0.141-0.141,0.368,0,0.509l1.5,1.5c0.07,0.07,0.162,0.105,0.254,0.105s0.184-0.035,0.254-0.105l1.5-1.5 c0.141-0.141,0.141-0.368,0-0.509L3.754,10.246z M3.5,12.991L2.509,12L3.5,11.009L4.491,12L3.5,12.991z M4.746,5.254 C4.816,5.325,4.908,5.36,5,5.36s0.184-0.035,0.254-0.105l1.5-1.5c0.141-0.141,0.141-0.368,0-0.509l-1.5-1.5 c-0.141-0.141-0.368-0.141-0.509,0l-1.5,1.5c-0.141,0.141-0.141,0.368,0,0.509L4.746,5.254z M5,2.509L5.991,3.5L5,4.491L4.009,3.5 L5,2.509z M10.972,4.864C11.954,5.109,12.64,5.988,12.64,7c0,0.199,0.161,0.36,0.36,0.36S13.36,7.199,13.36,7 c0-1.012,0.686-1.891,1.729-2.151c0.159-0.04,0.271-0.184,0.271-0.349s-0.112-0.309-0.271-0.349l-0.06-0.015h-0.001 C14.046,3.891,13.36,3.012,13.36,2c0-0.199-0.161-0.36-0.36-0.36S12.64,1.801,12.64,2c0,1.012-0.686,1.891-1.729,2.151 c-0.16,0.041-0.242,0.192-0.241,0.357C10.67,4.673,10.812,4.825,10.972,4.864z M13,3.407c0.246,0.447,0.606,0.826,1.048,1.093 c-0.443,0.268-0.804,0.647-1.05,1.095c-0.245-0.443-0.606-0.82-1.055-1.09C12.39,4.237,12.753,3.857,13,3.407z M10.089,16.151 l-0.06-0.015h-0.001C9.046,15.891,8.36,15.012,8.36,14c0-0.199-0.161-0.36-0.36-0.36S7.64,13.801,7.64,14 c0,1.012-0.686,1.891-1.729,2.151c-0.16,0.041-0.242,0.192-0.241,0.357c0,0.165,0.143,0.316,0.302,0.356 C6.954,17.109,7.64,17.987,7.64,19c0,0.199,0.161,0.36,0.36,0.36S8.36,19.199,8.36,19c0-1.013,0.686-1.891,1.729-2.151 c0.159-0.041,0.271-0.185,0.271-0.349S10.248,16.191,10.089,16.151z M7.999,17.595c-0.245-0.442-0.606-0.819-1.055-1.09 C7.39,16.237,7.753,15.857,8,15.407c0.246,0.447,0.606,0.826,1.048,1.093C8.605,16.768,8.244,17.146,7.999,17.595z M30.255,28.245 l-22-22c-0.141-0.141-0.368-0.141-0.509,0l-1.5,1.5c-0.141,0.141-0.141,0.368,0,0.509l22,22c0.07,0.07,0.163,0.105,0.255,0.105 s0.185-0.035,0.255-0.105l1.5-1.5C30.396,28.614,30.396,28.386,30.255,28.245z M8,7.009l5.741,5.741l-0.991,0.991L7.009,8L8,7.009z M28.5,29.491L13.259,14.25l0.991-0.991L29.491,28.5L28.5,29.491z" })), children);
23754
26542
  });
23755
- var Multitask = /* @__PURE__ */ React13.forwardRef(function Multitask2({ children, ...rest }, ref) {
23756
- return /* @__PURE__ */ React13.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path947 || (_path947 = /* @__PURE__ */ React13.createElement("path", { d: "M23.61,31h-0.72c0-3.114-2.104-5.849-5.115-6.65c-0.145-0.038-0.25-0.162-0.266-0.312 c-0.015-0.149,0.064-0.292,0.198-0.358c1.331-0.661,2.157-1.982,2.157-3.449c0-2.132-1.733-3.866-3.864-3.866 s-3.865,1.734-3.865,3.866c0,1.466,0.827,2.788,2.158,3.449c0.134,0.066,0.213,0.209,0.198,0.358s-0.121,0.273-0.266,0.312 C11.213,25.151,9.11,27.886,9.11,31H8.39c0-3.17,1.973-5.984,4.886-7.1c-1.165-0.855-1.861-2.201-1.861-3.67 c0-2.528,2.057-4.585,4.585-4.585s4.585,2.057,4.585,4.585c0,1.469-0.697,2.815-1.861,3.67C21.637,25.016,23.61,27.83,23.61,31z M27,17.36c-2.404,0-4.36-1.956-4.36-4.36S24.596,8.64,27,8.64s4.36,1.956,4.36,4.36S29.404,17.36,27,17.36z M27,9.36 c-2.007,0-3.64,1.633-3.64,3.64s1.633,3.64,3.64,3.64s3.64-1.633,3.64-3.64S29.007,9.36,27,9.36z M5,17.36 c-2.404,0-4.36-1.956-4.36-4.36S2.596,8.64,5,8.64S9.36,10.596,9.36,13S7.404,17.36,5,17.36z M5,9.36c-2.007,0-3.64,1.633-3.64,3.64 S2.993,16.64,5,16.64S8.64,15.007,8.64,13S7.007,9.36,5,9.36z M16,9.36c-2.404,0-4.36-1.956-4.36-4.36S13.596,0.64,16,0.64 S20.36,2.596,20.36,5S18.404,9.36,16,9.36z M16,1.36c-2.007,0-3.64,1.633-3.64,3.64S13.993,8.64,16,8.64S19.64,7.007,19.64,5 S18.007,1.36,16,1.36z" })), children);
26543
+ var Multitask = /* @__PURE__ */ React14.forwardRef(function Multitask2({ children, ...rest }, ref) {
26544
+ return /* @__PURE__ */ React14.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path948 || (_path948 = /* @__PURE__ */ React14.createElement("path", { d: "M23.61,31h-0.72c0-3.114-2.104-5.849-5.115-6.65c-0.145-0.038-0.25-0.162-0.266-0.312 c-0.015-0.149,0.064-0.292,0.198-0.358c1.331-0.661,2.157-1.982,2.157-3.449c0-2.132-1.733-3.866-3.864-3.866 s-3.865,1.734-3.865,3.866c0,1.466,0.827,2.788,2.158,3.449c0.134,0.066,0.213,0.209,0.198,0.358s-0.121,0.273-0.266,0.312 C11.213,25.151,9.11,27.886,9.11,31H8.39c0-3.17,1.973-5.984,4.886-7.1c-1.165-0.855-1.861-2.201-1.861-3.67 c0-2.528,2.057-4.585,4.585-4.585s4.585,2.057,4.585,4.585c0,1.469-0.697,2.815-1.861,3.67C21.637,25.016,23.61,27.83,23.61,31z M27,17.36c-2.404,0-4.36-1.956-4.36-4.36S24.596,8.64,27,8.64s4.36,1.956,4.36,4.36S29.404,17.36,27,17.36z M27,9.36 c-2.007,0-3.64,1.633-3.64,3.64s1.633,3.64,3.64,3.64s3.64-1.633,3.64-3.64S29.007,9.36,27,9.36z M5,17.36 c-2.404,0-4.36-1.956-4.36-4.36S2.596,8.64,5,8.64S9.36,10.596,9.36,13S7.404,17.36,5,17.36z M5,9.36c-2.007,0-3.64,1.633-3.64,3.64 S2.993,16.64,5,16.64S8.64,15.007,8.64,13S7.007,9.36,5,9.36z M16,9.36c-2.404,0-4.36-1.956-4.36-4.36S13.596,0.64,16,0.64 S20.36,2.596,20.36,5S18.404,9.36,16,9.36z M16,1.36c-2.007,0-3.64,1.633-3.64,3.64S13.993,8.64,16,8.64S19.64,7.007,19.64,5 S18.007,1.36,16,1.36z" })), children);
23757
26545
  });
23758
- var Networking_04 = /* @__PURE__ */ React13.forwardRef(function Networking_042({ children, ...rest }, ref) {
23759
- return /* @__PURE__ */ React13.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path11110 || (_path11110 = /* @__PURE__ */ React13.createElement("path", { d: "M13,18.64H1c-0.199,0-0.36,0.161-0.36,0.36v12c0,0.199,0.161,0.36,0.36,0.36h12 c0.199,0,0.36-0.161,0.36-0.36V19C13.36,18.801,13.199,18.64,13,18.64z M12.64,30.64H1.36V19.36h11.28 C12.64,19.36,12.64,30.64,12.64,30.64z M25,0.64c-3.507,0-6.36,2.853-6.36,6.36s2.854,6.36,6.36,6.36s6.36-2.853,6.36-6.36 S28.507,0.64,25,0.64z M25,12.64c-3.11,0-5.64-2.53-5.64-5.64S21.89,1.36,25,1.36S30.64,3.89,30.64,7S28.11,12.64,25,12.64z M9.36,26.5c0-0.615-0.3-1.161-0.761-1.5c0.461-0.339,0.761-0.885,0.761-1.5c0-1.025-0.834-1.86-1.86-1.86H4.641v6.721H7.5 C8.525,28.36,9.36,27.525,9.36,26.5z M5.36,22.36H7.5c0.628,0,1.14,0.511,1.14,1.14s-0.512,1.14-1.14,1.14H5.36V22.36z M5.36,25.36 H7.5c0.628,0,1.14,0.511,1.14,1.14s-0.512,1.14-1.14,1.14H5.36V25.36z M24.64,15h0.721v8c0,1.302-1.059,2.36-2.36,2.36H16.37 l2.214,2.213l-0.51,0.51L14.991,25l3.083-3.083l0.51,0.51L16.37,24.64H23c0.904,0,1.64-0.735,1.64-1.64V15z M17.009,7l-3.083,3.083 l-0.509-0.509l2.214-2.214H9C8.096,7.36,7.36,8.096,7.36,9v8H6.64V9c0-1.301,1.059-2.36,2.36-2.36h6.631l-2.214-2.214l0.509-0.509 L17.009,7z M24.671,3.862l-2.386,6l0.67,0.266l0.705-1.773h2.691l0.705,1.773l0.67-0.266l-2.385-6 C25.341,3.862,24.671,3.862,24.671,3.862z M23.946,7.635l1.06-2.666l1.059,2.666H23.946z" })), children);
26546
+ var Networking_04 = /* @__PURE__ */ React14.forwardRef(function Networking_042({ children, ...rest }, ref) {
26547
+ return /* @__PURE__ */ React14.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path11111 || (_path11111 = /* @__PURE__ */ React14.createElement("path", { d: "M13,18.64H1c-0.199,0-0.36,0.161-0.36,0.36v12c0,0.199,0.161,0.36,0.36,0.36h12 c0.199,0,0.36-0.161,0.36-0.36V19C13.36,18.801,13.199,18.64,13,18.64z M12.64,30.64H1.36V19.36h11.28 C12.64,19.36,12.64,30.64,12.64,30.64z M25,0.64c-3.507,0-6.36,2.853-6.36,6.36s2.854,6.36,6.36,6.36s6.36-2.853,6.36-6.36 S28.507,0.64,25,0.64z M25,12.64c-3.11,0-5.64-2.53-5.64-5.64S21.89,1.36,25,1.36S30.64,3.89,30.64,7S28.11,12.64,25,12.64z M9.36,26.5c0-0.615-0.3-1.161-0.761-1.5c0.461-0.339,0.761-0.885,0.761-1.5c0-1.025-0.834-1.86-1.86-1.86H4.641v6.721H7.5 C8.525,28.36,9.36,27.525,9.36,26.5z M5.36,22.36H7.5c0.628,0,1.14,0.511,1.14,1.14s-0.512,1.14-1.14,1.14H5.36V22.36z M5.36,25.36 H7.5c0.628,0,1.14,0.511,1.14,1.14s-0.512,1.14-1.14,1.14H5.36V25.36z M24.64,15h0.721v8c0,1.302-1.059,2.36-2.36,2.36H16.37 l2.214,2.213l-0.51,0.51L14.991,25l3.083-3.083l0.51,0.51L16.37,24.64H23c0.904,0,1.64-0.735,1.64-1.64V15z M17.009,7l-3.083,3.083 l-0.509-0.509l2.214-2.214H9C8.096,7.36,7.36,8.096,7.36,9v8H6.64V9c0-1.301,1.059-2.36,2.36-2.36h6.631l-2.214-2.214l0.509-0.509 L17.009,7z M24.671,3.862l-2.386,6l0.67,0.266l0.705-1.773h2.691l0.705,1.773l0.67-0.266l-2.385-6 C25.341,3.862,24.671,3.862,24.671,3.862z M23.946,7.635l1.06-2.666l1.059,2.666H23.946z" })), children);
23760
26548
  });
23761
- var PoughkeepsieBridge = /* @__PURE__ */ React13.forwardRef(function PoughkeepsieBridge2({ children, ...rest }, ref) {
23762
- return /* @__PURE__ */ React13.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2017 || (_path2017 = /* @__PURE__ */ React13.createElement("path", { d: "M22,25.36h-4 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36h4c0.199,0,0.36,0.161,0.36,0.36S22.199,25.36,22,25.36z M14,25.36h-4 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36h4c0.199,0,0.36,0.161,0.36,0.36S14.199,25.36,14,25.36z M26,23.36H6 c-0.199,0-0.36-0.161-0.36-0.36S5.801,22.64,6,22.64h20c0.199,0,0.36,0.161,0.36,0.36S26.199,23.36,26,23.36z M30,21.36h-9 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36h9c0.199,0,0.36,0.161,0.36,0.36S30.199,21.36,30,21.36z M18,21.36h-4 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36h4c0.199,0,0.36,0.161,0.36,0.36S18.199,21.36,18,21.36z M11,21.36H2 c-0.199,0-0.36-0.161-0.36-0.36S1.801,20.64,2,20.64h9c0.199,0,0.36,0.161,0.36,0.36S11.199,21.36,11,21.36z M25.36,21h-0.72v-1.64 h-1.28V21h-0.72v-8.64h-2.639H20h-0.001h-3.998c-0.001,0-0.002,0-0.003,0h-3.997c-0.001,0-0.002,0-0.003,0H9.36V21H8.64v-1.64H7.36 V21H6.64v-8.77l-2.697-0.87H1v-0.72h2.131L0.746,8.254L1,8V7.64h2.997c0.002,0,0.004,0,0.006,0h3.994c0.002,0,0.004,0,0.006,0h3.996 c0.001,0,0.002,0,0.003,0h3.997c0.001,0,0.002,0,0.003,0H20h0h0.001h3.996c0.002,0,0.004,0,0.006,0h3.994c0.002,0,0.004,0,0.006,0 H31V8l0.255,0.254l-2.386,2.386H31v0.72h-2.943l-2.696,0.87L25.36,21L25.36,21z M23.36,18.64h1.279v-6.28H24l0,0h-0.001H23.36V18.64 z M7.36,18.64h1.28v-6.28H8.001c-0.001,0-0.002,0-0.003,0H7.36V18.64z M20.869,11.64h2.262L22,10.509L20.869,11.64z M16.869,11.64 h2.262L18,10.509L16.869,11.64z M12.869,11.64h2.262L14,10.509L12.869,11.64z M8.869,11.64h2.262L10,10.509L8.869,11.64z M27.64,8.869l-2.759,2.759l2.759-0.89V8.869z M4.36,10.738l2.759,0.89L4.36,8.869V10.738z M18.509,10L20,11.491L21.491,10L20,8.509 L18.509,10z M14.509,10L16,11.491L17.491,10L16,8.509L14.509,10z M10.509,10L12,11.491L13.491,10L12,8.509L10.509,10z M24.36,8.36 v2.771l2.771-2.771H24.36z M22.509,10l1.131,1.131V8.869L22.509,10z M8.36,8.869v2.262L9.491,10L8.36,8.869z M4.869,8.36 l2.771,2.771V8.36H4.869z M28.36,8.36v1.771l1.771-1.771H28.36z M1.869,8.36l1.771,1.771V8.36H1.869z M20.869,8.36L22,9.491 l1.131-1.131C23.131,8.36,20.869,8.36,20.869,8.36z M16.869,8.36L18,9.491l1.131-1.131C19.131,8.36,16.869,8.36,16.869,8.36z M12.869,8.36L14,9.491l1.131-1.131C15.131,8.36,12.869,8.36,12.869,8.36z M8.869,8.36L10,9.491l1.131-1.131 C11.131,8.36,8.869,8.36,8.869,8.36z" })), children);
26549
+ var PoughkeepsieBridge = /* @__PURE__ */ React14.forwardRef(function PoughkeepsieBridge2({ children, ...rest }, ref) {
26550
+ return /* @__PURE__ */ React14.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2019 || (_path2019 = /* @__PURE__ */ React14.createElement("path", { d: "M22,25.36h-4 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36h4c0.199,0,0.36,0.161,0.36,0.36S22.199,25.36,22,25.36z M14,25.36h-4 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36h4c0.199,0,0.36,0.161,0.36,0.36S14.199,25.36,14,25.36z M26,23.36H6 c-0.199,0-0.36-0.161-0.36-0.36S5.801,22.64,6,22.64h20c0.199,0,0.36,0.161,0.36,0.36S26.199,23.36,26,23.36z M30,21.36h-9 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36h9c0.199,0,0.36,0.161,0.36,0.36S30.199,21.36,30,21.36z M18,21.36h-4 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36h4c0.199,0,0.36,0.161,0.36,0.36S18.199,21.36,18,21.36z M11,21.36H2 c-0.199,0-0.36-0.161-0.36-0.36S1.801,20.64,2,20.64h9c0.199,0,0.36,0.161,0.36,0.36S11.199,21.36,11,21.36z M25.36,21h-0.72v-1.64 h-1.28V21h-0.72v-8.64h-2.639H20h-0.001h-3.998c-0.001,0-0.002,0-0.003,0h-3.997c-0.001,0-0.002,0-0.003,0H9.36V21H8.64v-1.64H7.36 V21H6.64v-8.77l-2.697-0.87H1v-0.72h2.131L0.746,8.254L1,8V7.64h2.997c0.002,0,0.004,0,0.006,0h3.994c0.002,0,0.004,0,0.006,0h3.996 c0.001,0,0.002,0,0.003,0h3.997c0.001,0,0.002,0,0.003,0H20h0h0.001h3.996c0.002,0,0.004,0,0.006,0h3.994c0.002,0,0.004,0,0.006,0 H31V8l0.255,0.254l-2.386,2.386H31v0.72h-2.943l-2.696,0.87L25.36,21L25.36,21z M23.36,18.64h1.279v-6.28H24l0,0h-0.001H23.36V18.64 z M7.36,18.64h1.28v-6.28H8.001c-0.001,0-0.002,0-0.003,0H7.36V18.64z M20.869,11.64h2.262L22,10.509L20.869,11.64z M16.869,11.64 h2.262L18,10.509L16.869,11.64z M12.869,11.64h2.262L14,10.509L12.869,11.64z M8.869,11.64h2.262L10,10.509L8.869,11.64z M27.64,8.869l-2.759,2.759l2.759-0.89V8.869z M4.36,10.738l2.759,0.89L4.36,8.869V10.738z M18.509,10L20,11.491L21.491,10L20,8.509 L18.509,10z M14.509,10L16,11.491L17.491,10L16,8.509L14.509,10z M10.509,10L12,11.491L13.491,10L12,8.509L10.509,10z M24.36,8.36 v2.771l2.771-2.771H24.36z M22.509,10l1.131,1.131V8.869L22.509,10z M8.36,8.869v2.262L9.491,10L8.36,8.869z M4.869,8.36 l2.771,2.771V8.36H4.869z M28.36,8.36v1.771l1.771-1.771H28.36z M1.869,8.36l1.771,1.771V8.36H1.869z M20.869,8.36L22,9.491 l1.131-1.131C23.131,8.36,20.869,8.36,20.869,8.36z M16.869,8.36L18,9.491l1.131-1.131C19.131,8.36,16.869,8.36,16.869,8.36z M12.869,8.36L14,9.491l1.131-1.131C15.131,8.36,12.869,8.36,12.869,8.36z M8.869,8.36L10,9.491l1.131-1.131 C11.131,8.36,8.869,8.36,8.869,8.36z" })), children);
23763
26551
  });
23764
- var Presentation = /* @__PURE__ */ React13.forwardRef(function Presentation2({ children, ...rest }, ref) {
23765
- return /* @__PURE__ */ React13.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2144 || (_path2144 = /* @__PURE__ */ React13.createElement("path", { d: "M21.36,31h-0.72l-0.001-1.572c0-1.952-1.254-3.704-3.121-4.36c-0.136-0.048-0.229-0.171-0.24-0.314 c-0.01-0.143,0.065-0.278,0.193-0.345c1.073-0.559,1.739-1.646,1.739-2.837c0-1.771-1.44-3.211-3.211-3.211s-3.212,1.44-3.212,3.211 c0,1.191,0.667,2.279,1.74,2.838c0.127,0.066,0.203,0.202,0.193,0.345c-0.01,0.144-0.104,0.267-0.239,0.314 c-1.866,0.656-3.12,2.408-3.12,4.359L11.359,31h-0.72v-1.572c0-1.952-1.255-3.704-3.122-4.36c-0.135-0.048-0.229-0.171-0.239-0.314 c-0.01-0.143,0.065-0.278,0.192-0.345c1.073-0.559,1.739-1.646,1.739-2.837c0-1.771-1.441-3.211-3.211-3.211 c-1.771,0-3.212,1.44-3.212,3.211c0,1.191,0.667,2.279,1.74,2.838c0.127,0.066,0.203,0.202,0.193,0.345 c-0.01,0.144-0.104,0.267-0.239,0.314c-1.866,0.656-3.12,2.408-3.12,4.359V31H0.64v-1.572c0-2.022,1.162-3.858,2.954-4.763 c-0.956-0.737-1.527-1.87-1.527-3.094c0-2.168,1.764-3.932,3.932-3.932c2.167,0,3.931,1.764,3.931,3.932 c0,1.223-0.571,2.354-1.526,3.092c1.202,0.607,2.122,1.633,2.596,2.854c0.475-1.22,1.393-2.245,2.595-2.852 c-0.956-0.737-1.527-1.87-1.527-3.094c0-2.168,1.764-3.932,3.932-3.932s3.932,1.764,3.932,3.932c0,1.223-0.571,2.354-1.527,3.092 c1.203,0.607,2.122,1.634,2.597,2.854c0.475-1.221,1.394-2.246,2.595-2.853c-0.956-0.737-1.527-1.87-1.527-3.094 c0-2.168,1.764-3.932,3.932-3.932s3.932,1.764,3.932,3.932c0,1.223-0.571,2.354-1.526,3.092c1.793,0.905,2.956,2.742,2.956,4.765V31 H30.64v-1.572c0-1.952-1.254-3.704-3.121-4.36c-0.136-0.048-0.229-0.171-0.24-0.314c-0.01-0.143,0.065-0.278,0.193-0.345 c1.072-0.559,1.738-1.646,1.738-2.837c0-1.771-1.44-3.211-3.211-3.211s-3.211,1.44-3.211,3.211c0,1.192,0.666,2.279,1.739,2.838 c0.128,0.066,0.203,0.202,0.193,0.345c-0.011,0.144-0.104,0.267-0.24,0.314c-1.866,0.656-3.119,2.408-3.119,4.359L21.36,31z M31,15.36H16v-0.72h14.64V1.36H14.36v6.008h2.679c0.75,0,1.36,0.61,1.36,1.36s-0.61,1.36-1.36,1.36H10.36V15H9.64V9.728 c0-0.199,0.161-0.36,0.36-0.36h7.039c0.353,0,0.64-0.287,0.64-0.64s-0.287-0.64-0.64-0.64H7.616c-0.166,0-0.31-0.113-0.35-0.274 C7.227,7.652,7.303,7.485,7.45,7.408C8.519,6.85,9.184,5.763,9.184,4.572C9.184,2.801,7.755,1.36,6,1.36 c-1.774,0-3.218,1.441-3.218,3.212c0,1.192,0.665,2.279,1.735,2.837C4.644,7.475,4.72,7.611,4.709,7.754 C4.699,7.897,4.605,8.021,4.47,8.068c-1.86,0.656-3.11,2.408-3.11,4.36V15H0.64v-2.572c0-2.022,1.159-3.858,2.945-4.763 c-0.953-0.737-1.523-1.87-1.523-3.093C2.062,2.404,3.829,0.64,6,0.64c2.152,0,3.903,1.764,3.903,3.932 c0,1.069-0.435,2.069-1.181,2.796h4.918V1c0-0.199,0.161-0.36,0.36-0.36h17c0.199,0,0.36,0.161,0.36,0.36v14 C31.36,15.199,31.199,15.36,31,15.36z M26,11.36c-0.897,0-1.741-0.35-2.376-0.984C22.989,9.741,22.64,8.897,22.64,8 s0.35-1.741,0.984-2.375c1.27-1.27,3.482-1.27,4.752,0C29.011,6.259,29.36,7.103,29.36,8s-0.35,1.741-0.984,2.375l0,0l0,0l0,0 C27.741,11.01,26.897,11.36,26,11.36z M25.695,10.623c0.791,0.092,1.601-0.185,2.171-0.756l0,0C28.365,9.368,28.64,8.705,28.64,8 c0-0.58-0.186-1.131-0.528-1.586l-1.787,1.772L25.695,10.623z M23.562,6.984C23.43,7.302,23.36,7.646,23.36,8 c0,0.705,0.274,1.368,0.773,1.867c0.251,0.251,0.545,0.446,0.864,0.577l0.586-2.271L23.562,6.984z M23.928,6.364l2.016,1.185 l1.661-1.646c-1.009-0.775-2.558-0.684-3.471,0.23C24.06,6.207,23.991,6.284,23.928,6.364z M20,5.36h-4V4.64h4V5.36z M21,3.36h-5 V2.64h5V3.36z" })), children);
26552
+ var Presentation = /* @__PURE__ */ React14.forwardRef(function Presentation2({ children, ...rest }, ref) {
26553
+ return /* @__PURE__ */ React14.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2144 || (_path2144 = /* @__PURE__ */ React14.createElement("path", { d: "M21.36,31h-0.72l-0.001-1.572c0-1.952-1.254-3.704-3.121-4.36c-0.136-0.048-0.229-0.171-0.24-0.314 c-0.01-0.143,0.065-0.278,0.193-0.345c1.073-0.559,1.739-1.646,1.739-2.837c0-1.771-1.44-3.211-3.211-3.211s-3.212,1.44-3.212,3.211 c0,1.191,0.667,2.279,1.74,2.838c0.127,0.066,0.203,0.202,0.193,0.345c-0.01,0.144-0.104,0.267-0.239,0.314 c-1.866,0.656-3.12,2.408-3.12,4.359L11.359,31h-0.72v-1.572c0-1.952-1.255-3.704-3.122-4.36c-0.135-0.048-0.229-0.171-0.239-0.314 c-0.01-0.143,0.065-0.278,0.192-0.345c1.073-0.559,1.739-1.646,1.739-2.837c0-1.771-1.441-3.211-3.211-3.211 c-1.771,0-3.212,1.44-3.212,3.211c0,1.191,0.667,2.279,1.74,2.838c0.127,0.066,0.203,0.202,0.193,0.345 c-0.01,0.144-0.104,0.267-0.239,0.314c-1.866,0.656-3.12,2.408-3.12,4.359V31H0.64v-1.572c0-2.022,1.162-3.858,2.954-4.763 c-0.956-0.737-1.527-1.87-1.527-3.094c0-2.168,1.764-3.932,3.932-3.932c2.167,0,3.931,1.764,3.931,3.932 c0,1.223-0.571,2.354-1.526,3.092c1.202,0.607,2.122,1.633,2.596,2.854c0.475-1.22,1.393-2.245,2.595-2.852 c-0.956-0.737-1.527-1.87-1.527-3.094c0-2.168,1.764-3.932,3.932-3.932s3.932,1.764,3.932,3.932c0,1.223-0.571,2.354-1.527,3.092 c1.203,0.607,2.122,1.634,2.597,2.854c0.475-1.221,1.394-2.246,2.595-2.853c-0.956-0.737-1.527-1.87-1.527-3.094 c0-2.168,1.764-3.932,3.932-3.932s3.932,1.764,3.932,3.932c0,1.223-0.571,2.354-1.526,3.092c1.793,0.905,2.956,2.742,2.956,4.765V31 H30.64v-1.572c0-1.952-1.254-3.704-3.121-4.36c-0.136-0.048-0.229-0.171-0.24-0.314c-0.01-0.143,0.065-0.278,0.193-0.345 c1.072-0.559,1.738-1.646,1.738-2.837c0-1.771-1.44-3.211-3.211-3.211s-3.211,1.44-3.211,3.211c0,1.192,0.666,2.279,1.739,2.838 c0.128,0.066,0.203,0.202,0.193,0.345c-0.011,0.144-0.104,0.267-0.24,0.314c-1.866,0.656-3.119,2.408-3.119,4.359L21.36,31z M31,15.36H16v-0.72h14.64V1.36H14.36v6.008h2.679c0.75,0,1.36,0.61,1.36,1.36s-0.61,1.36-1.36,1.36H10.36V15H9.64V9.728 c0-0.199,0.161-0.36,0.36-0.36h7.039c0.353,0,0.64-0.287,0.64-0.64s-0.287-0.64-0.64-0.64H7.616c-0.166,0-0.31-0.113-0.35-0.274 C7.227,7.652,7.303,7.485,7.45,7.408C8.519,6.85,9.184,5.763,9.184,4.572C9.184,2.801,7.755,1.36,6,1.36 c-1.774,0-3.218,1.441-3.218,3.212c0,1.192,0.665,2.279,1.735,2.837C4.644,7.475,4.72,7.611,4.709,7.754 C4.699,7.897,4.605,8.021,4.47,8.068c-1.86,0.656-3.11,2.408-3.11,4.36V15H0.64v-2.572c0-2.022,1.159-3.858,2.945-4.763 c-0.953-0.737-1.523-1.87-1.523-3.093C2.062,2.404,3.829,0.64,6,0.64c2.152,0,3.903,1.764,3.903,3.932 c0,1.069-0.435,2.069-1.181,2.796h4.918V1c0-0.199,0.161-0.36,0.36-0.36h17c0.199,0,0.36,0.161,0.36,0.36v14 C31.36,15.199,31.199,15.36,31,15.36z M26,11.36c-0.897,0-1.741-0.35-2.376-0.984C22.989,9.741,22.64,8.897,22.64,8 s0.35-1.741,0.984-2.375c1.27-1.27,3.482-1.27,4.752,0C29.011,6.259,29.36,7.103,29.36,8s-0.35,1.741-0.984,2.375l0,0l0,0l0,0 C27.741,11.01,26.897,11.36,26,11.36z M25.695,10.623c0.791,0.092,1.601-0.185,2.171-0.756l0,0C28.365,9.368,28.64,8.705,28.64,8 c0-0.58-0.186-1.131-0.528-1.586l-1.787,1.772L25.695,10.623z M23.562,6.984C23.43,7.302,23.36,7.646,23.36,8 c0,0.705,0.274,1.368,0.773,1.867c0.251,0.251,0.545,0.446,0.864,0.577l0.586-2.271L23.562,6.984z M23.928,6.364l2.016,1.185 l1.661-1.646c-1.009-0.775-2.558-0.684-3.471,0.23C24.06,6.207,23.991,6.284,23.928,6.364z M20,5.36h-4V4.64h4V5.36z M21,3.36h-5 V2.64h5V3.36z" })), children);
23766
26554
  });
23767
- var Presenter = /* @__PURE__ */ React13.forwardRef(function Presenter2({ children, ...rest }, ref) {
23768
- return /* @__PURE__ */ React13.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2154 || (_path2154 = /* @__PURE__ */ React13.createElement("path", { d: "M16,19.14c-1.298,0-2.519,0.506-3.437,1.424C11.646,21.481,11.14,22.702,11.14,24 s0.506,2.519,1.424,3.437c0.917,0.918,2.138,1.424,3.437,1.424c1.298,0,2.519-0.506,3.437-1.424S20.86,25.298,20.86,24 s-0.506-2.519-1.424-3.437S17.298,19.14,16,19.14z M13.072,21.073c0.782-0.782,1.822-1.213,2.928-1.213 c0.989,0,1.926,0.345,2.672,0.978l-2.729,2.711l-3.319-1.946C12.757,21.415,12.907,21.238,13.072,21.073z M13.072,26.927 C12.291,26.146,11.86,25.105,11.86,24c0-0.625,0.138-1.229,0.398-1.777l3.325,1.95l-0.968,3.73 C14.041,27.7,13.515,27.37,13.072,26.927z M18.927,26.927c-0.945,0.947-2.318,1.377-3.615,1.156l1.012-3.897l2.856-2.837 c0.622,0.742,0.96,1.671,0.96,2.651C20.14,25.105,19.709,26.146,18.927,26.927z M29.86,24c0-1.454-1.094-2.644-2.5-2.824V17 c0-0.199-0.161-0.36-0.36-0.36h-1.817c-1.433-1.915-3.49-3.378-5.761-4.116c1.855-1.171,3.014-3.221,3.014-5.444 c0-3.551-2.89-6.44-6.44-6.44c-3.551,0-6.44,2.889-6.44,6.44c0,2.223,1.158,4.274,3.013,5.445c-2.265,0.736-4.319,2.2-5.75,4.115H5 c-0.199,0-0.36,0.161-0.36,0.36v4.176c-1.406,0.179-2.5,1.37-2.5,2.824s1.094,2.645,2.5,2.824V31c0,0.199,0.161,0.36,0.36,0.36h22 c0.199,0,0.36-0.161,0.36-0.36v-4.176C28.766,26.644,29.86,25.454,29.86,24z M13.608,12.98c0.15-0.035,0.261-0.163,0.275-0.316 c0.015-0.153-0.07-0.299-0.211-0.362c-2.063-0.924-3.397-2.974-3.397-5.221c0-3.154,2.566-5.72,5.72-5.72s5.72,2.566,5.72,5.72 c0,2.247-1.333,4.297-3.397,5.221c-0.141,0.063-0.226,0.209-0.211,0.362c0.015,0.154,0.125,0.281,0.275,0.316 c2.273,0.538,4.381,1.856,5.883,3.66H7.734C9.236,14.835,11.34,13.517,13.608,12.98z M2.86,24c0-1.18,0.96-2.14,2.14-2.14 S7.14,22.82,7.14,24S6.18,26.14,5,26.14S2.86,25.18,2.86,24z M5.36,30.64v-3.816c1.406-0.179,2.5-1.37,2.5-2.824 s-1.094-2.645-2.5-2.824V17.36h21.28v3.816c-1.406,0.179-2.5,1.37-2.5,2.824s1.094,2.644,2.5,2.824v3.816H5.36z M27,26.14 c-1.18,0-2.14-0.96-2.14-2.14s0.96-2.14,2.14-2.14s2.14,0.96,2.14,2.14S28.18,26.14,27,26.14z" })), children);
26555
+ var Presenter = /* @__PURE__ */ React14.forwardRef(function Presenter2({ children, ...rest }, ref) {
26556
+ return /* @__PURE__ */ React14.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2154 || (_path2154 = /* @__PURE__ */ React14.createElement("path", { d: "M16,19.14c-1.298,0-2.519,0.506-3.437,1.424C11.646,21.481,11.14,22.702,11.14,24 s0.506,2.519,1.424,3.437c0.917,0.918,2.138,1.424,3.437,1.424c1.298,0,2.519-0.506,3.437-1.424S20.86,25.298,20.86,24 s-0.506-2.519-1.424-3.437S17.298,19.14,16,19.14z M13.072,21.073c0.782-0.782,1.822-1.213,2.928-1.213 c0.989,0,1.926,0.345,2.672,0.978l-2.729,2.711l-3.319-1.946C12.757,21.415,12.907,21.238,13.072,21.073z M13.072,26.927 C12.291,26.146,11.86,25.105,11.86,24c0-0.625,0.138-1.229,0.398-1.777l3.325,1.95l-0.968,3.73 C14.041,27.7,13.515,27.37,13.072,26.927z M18.927,26.927c-0.945,0.947-2.318,1.377-3.615,1.156l1.012-3.897l2.856-2.837 c0.622,0.742,0.96,1.671,0.96,2.651C20.14,25.105,19.709,26.146,18.927,26.927z M29.86,24c0-1.454-1.094-2.644-2.5-2.824V17 c0-0.199-0.161-0.36-0.36-0.36h-1.817c-1.433-1.915-3.49-3.378-5.761-4.116c1.855-1.171,3.014-3.221,3.014-5.444 c0-3.551-2.89-6.44-6.44-6.44c-3.551,0-6.44,2.889-6.44,6.44c0,2.223,1.158,4.274,3.013,5.445c-2.265,0.736-4.319,2.2-5.75,4.115H5 c-0.199,0-0.36,0.161-0.36,0.36v4.176c-1.406,0.179-2.5,1.37-2.5,2.824s1.094,2.645,2.5,2.824V31c0,0.199,0.161,0.36,0.36,0.36h22 c0.199,0,0.36-0.161,0.36-0.36v-4.176C28.766,26.644,29.86,25.454,29.86,24z M13.608,12.98c0.15-0.035,0.261-0.163,0.275-0.316 c0.015-0.153-0.07-0.299-0.211-0.362c-2.063-0.924-3.397-2.974-3.397-5.221c0-3.154,2.566-5.72,5.72-5.72s5.72,2.566,5.72,5.72 c0,2.247-1.333,4.297-3.397,5.221c-0.141,0.063-0.226,0.209-0.211,0.362c0.015,0.154,0.125,0.281,0.275,0.316 c2.273,0.538,4.381,1.856,5.883,3.66H7.734C9.236,14.835,11.34,13.517,13.608,12.98z M2.86,24c0-1.18,0.96-2.14,2.14-2.14 S7.14,22.82,7.14,24S6.18,26.14,5,26.14S2.86,25.18,2.86,24z M5.36,30.64v-3.816c1.406-0.179,2.5-1.37,2.5-2.824 s-1.094-2.645-2.5-2.824V17.36h21.28v3.816c-1.406,0.179-2.5,1.37-2.5,2.824s1.094,2.644,2.5,2.824v3.816H5.36z M27,26.14 c-1.18,0-2.14-0.96-2.14-2.14s0.96-2.14,2.14-2.14s2.14,0.96,2.14,2.14S28.18,26.14,27,26.14z" })), children);
23769
26557
  });
23770
- var Question = /* @__PURE__ */ React13.forwardRef(function Question2({ children, ...rest }, ref) {
23771
- return /* @__PURE__ */ React13.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2452 || (_path2452 = /* @__PURE__ */ React13.createElement("path", { d: "M23.668,29.312l-0.359-0.623c4.522-2.61,7.331-7.473,7.331-12.688c0-8.073-6.567-14.64-14.64-14.64 C7.927,1.36,1.36,7.927,1.36,16c0,5.216,2.81,10.078,7.332,12.688l-0.36,0.623C3.587,26.573,0.64,21.473,0.64,16 C0.64,7.53,7.53,0.64,16,0.64S31.36,7.53,31.36,16C31.36,21.473,28.413,26.573,23.668,29.312z M16.355,23.995h-0.72 c0-3.844,1.823-5.201,3.585-6.515c1.599-1.19,3.108-2.315,3.108-5.41c0-3.308-2.657-5.709-6.319-5.709 c-3.485,0-6.32,2.849-6.32,6.35H8.97c0-3.898,3.158-7.07,7.04-7.07c4.079,0,7.04,2.704,7.04,6.429c0,3.456-1.729,4.743-3.398,5.987 C17.956,19.32,16.355,20.513,16.355,23.995z M16,28.5c-0.552,0-1,0.448-1,1s0.448,1,1,1s1-0.448,1-1S16.552,28.5,16,28.5z" })), children);
26558
+ var Question = /* @__PURE__ */ React14.forwardRef(function Question2({ children, ...rest }, ref) {
26559
+ return /* @__PURE__ */ React14.createElement(Icon3, _extends({ width: 64, height: 64, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", ref }, rest), _path2452 || (_path2452 = /* @__PURE__ */ React14.createElement("path", { d: "M23.668,29.312l-0.359-0.623c4.522-2.61,7.331-7.473,7.331-12.688c0-8.073-6.567-14.64-14.64-14.64 C7.927,1.36,1.36,7.927,1.36,16c0,5.216,2.81,10.078,7.332,12.688l-0.36,0.623C3.587,26.573,0.64,21.473,0.64,16 C0.64,7.53,7.53,0.64,16,0.64S31.36,7.53,31.36,16C31.36,21.473,28.413,26.573,23.668,29.312z M16.355,23.995h-0.72 c0-3.844,1.823-5.201,3.585-6.515c1.599-1.19,3.108-2.315,3.108-5.41c0-3.308-2.657-5.709-6.319-5.709 c-3.485,0-6.32,2.849-6.32,6.35H8.97c0-3.898,3.158-7.07,7.04-7.07c4.079,0,7.04,2.704,7.04,6.429c0,3.456-1.729,4.743-3.398,5.987 C17.956,19.32,16.355,20.513,16.355,23.995z M16,28.5c-0.552,0-1,0.448-1,1s0.448,1,1,1s1-0.448,1-1S16.552,28.5,16,28.5z" })), children);
23772
26560
  });
23773
26561
 
23774
26562
  // node_modules/@carbon/pictograms-react/es/__generated__/bucket-4.js
23775
- import React14 from "react";
26563
+ import React15 from "react";
23776
26564
  var _path2094;
23777
- var Teacher = /* @__PURE__ */ React14.forwardRef(function Teacher2({
26565
+ var Teacher = /* @__PURE__ */ React15.forwardRef(function Teacher2({
23778
26566
  children,
23779
26567
  ...rest
23780
26568
  }, ref) {
23781
- return /* @__PURE__ */ React14.createElement(Icon3, _extends({
26569
+ return /* @__PURE__ */ React15.createElement(Icon3, _extends({
23782
26570
  width: 64,
23783
26571
  height: 64,
23784
26572
  viewBox: "0 0 32 32",
23785
26573
  xmlns: "http://www.w3.org/2000/svg",
23786
26574
  fill: "currentColor",
23787
26575
  ref
23788
- }, rest), _path2094 || (_path2094 = /* @__PURE__ */ React14.createElement("path", {
26576
+ }, rest), _path2094 || (_path2094 = /* @__PURE__ */ React15.createElement("path", {
23789
26577
  d: "M21.813,31.36c-0.582,0-0.888-0.196-1.091-0.326 c-0.242-0.156-0.203-0.156-0.445,0c-0.203,0.13-0.509,0.326-1.091,0.326c-1.523,0-2.546-1.959-2.546-3.789 c0-1.836,0.789-2.932,2.11-2.932c0.501,0,0.804,0.136,1.071,0.254c0.111,0.05,0.211,0.094,0.318,0.126V24 c0-0.199,0.161-0.36,0.36-0.36c0.353,0,0.64-0.287,0.64-0.64h0.721c0,0.625-0.425,1.153-1,1.312v0.708 c0.107-0.032,0.207-0.076,0.318-0.126c0.268-0.118,0.57-0.254,1.071-0.254c1.321,0,2.11,1.096,2.11,2.932 c0,0.569-0.099,1.155-0.283,1.695C23.627,30.577,22.781,31.36,21.813,31.36z M20.5,30.211c0.273,0,0.461,0.12,0.611,0.217 c0.17,0.109,0.331,0.212,0.702,0.212c0.76,0,1.315-0.83,1.582-1.607c0.16-0.465,0.244-0.971,0.244-1.461 c0-0.826-0.181-2.211-1.39-2.211c-0.348,0-0.548,0.089-0.779,0.191c-0.249,0.111-0.532,0.237-0.971,0.237s-0.722-0.126-0.971-0.237 c-0.231-0.103-0.432-0.191-0.779-0.191c-1.209,0-1.39,1.385-1.39,2.211c0,1.448,0.781,3.068,1.826,3.068 c0.371,0,0.532-0.103,0.702-0.212C20.039,30.331,20.227,30.211,20.5,30.211z M31.36,31h-0.72c0-6.432-4.777-12.232-11.359-13.792 c-0.15-0.036-0.261-0.163-0.275-0.317s0.071-0.3,0.212-0.363c2.861-1.274,4.71-4.116,4.71-7.241c0-0.313-0.018-0.623-0.054-0.927 h-3.519c0.004,0.046,0.006,0.093,0.006,0.14c0,1.025-0.835,1.86-1.86,1.86s-1.86-0.834-1.86-1.86c0-0.353-0.287-0.64-0.64-0.64 s-0.64,0.287-0.64,0.64c0,1.025-0.834,1.86-1.86,1.86s-1.86-0.834-1.86-1.86c0-0.047,0.001-0.094,0.005-0.14h-3.52 C8.09,8.664,8.072,8.974,8.072,9.287c0,3.125,1.849,5.967,4.71,7.241c0.141,0.063,0.226,0.209,0.212,0.363s-0.125,0.281-0.275,0.317 C6.137,18.768,1.36,24.568,1.36,31H0.64c0-6.46,4.574-12.312,11.002-14.248c-2.634-1.539-4.29-4.375-4.29-7.465 c0-4.768,3.879-8.647,8.648-8.647c4.768,0,8.647,3.879,8.647,8.647c0,3.089-1.657,5.926-4.291,7.465 C26.785,18.688,31.36,24.54,31.36,31z M18.5,7.36c-0.629,0-1.14,0.512-1.14,1.14s0.511,1.14,1.14,1.14s1.14-0.512,1.14-1.14 S19.129,7.36,18.5,7.36z M13.5,7.36c-0.628,0-1.14,0.512-1.14,1.14s0.512,1.14,1.14,1.14s1.14-0.512,1.14-1.14 S14.128,7.36,13.5,7.36z M20.149,7.64h3.605C22.995,4.057,19.807,1.36,16,1.36S9.004,4.057,8.244,7.64h3.607 c0.311-0.594,0.934-1,1.649-1c0.661,0,1.242,0.346,1.572,0.867c0.486-0.455,1.37-0.455,1.856,0C17.258,6.986,17.84,6.64,18.5,6.64 C19.216,6.64,19.838,7.046,20.149,7.64z"
23790
26578
  })), children);
23791
26579
  });
23792
26580
 
23793
26581
  // node_modules/@carbon/pictograms-react/es/__generated__/bucket-5.js
23794
- import React15 from "react";
23795
- var _path1521;
23796
- var _path1620;
23797
- var _path637;
23798
- var _path677;
23799
- var TransactionalTrust = /* @__PURE__ */ React15.forwardRef(function TransactionalTrust2({
26582
+ import React16 from "react";
26583
+ var _path1528;
26584
+ var _path1621;
26585
+ var _path638;
26586
+ var _path678;
26587
+ var TransactionalTrust = /* @__PURE__ */ React16.forwardRef(function TransactionalTrust2({
23800
26588
  children,
23801
26589
  ...rest
23802
26590
  }, ref) {
23803
- return /* @__PURE__ */ React15.createElement(Icon3, _extends({
26591
+ return /* @__PURE__ */ React16.createElement(Icon3, _extends({
23804
26592
  width: 64,
23805
26593
  height: 64,
23806
26594
  viewBox: "0 0 32 32",
23807
26595
  xmlns: "http://www.w3.org/2000/svg",
23808
26596
  fill: "currentColor",
23809
26597
  ref
23810
- }, rest), _path1521 || (_path1521 = /* @__PURE__ */ React15.createElement("path", {
26598
+ }, rest), _path1528 || (_path1528 = /* @__PURE__ */ React16.createElement("path", {
23811
26599
  d: "M30.082,9.856l-0.66,0.288c0.761,1.74,1.154,3.589,1.2,5.496H13.86v-1.386 c0-1.765-1.042-3.314-2.613-3.996c0.558-0.493,0.893-1.209,0.893-1.978c0-1.456-1.184-2.64-2.64-2.64S6.86,6.824,6.86,8.28 c0,0.768,0.335,1.484,0.893,1.978c-1.57,0.682-2.613,2.231-2.613,3.996v1.386H1.378C1.569,7.855,7.855,1.569,15.64,1.378V13h0.72 V1.381c4.255,0.102,8.152,1.999,10.867,5.26H24v0.72h4.36V3h-0.72v3.015C24.716,2.599,20.539,0.64,16,0.64 C7.53,0.64,0.64,7.53,0.64,16c0,2.136,0.43,4.203,1.278,6.145l0.66-0.289c-0.761-1.739-1.154-3.588-1.2-5.496h29.243 c-0.091,3.722-1.576,7.098-3.954,9.635c-0.37-1.217-1.257-2.224-2.422-2.735c0.56-0.494,0.896-1.211,0.896-1.979 c0-1.456-1.185-2.641-2.641-2.641s-2.641,1.185-2.641,2.641c0,0.768,0.335,1.484,0.894,1.978c-1.57,0.681-2.613,2.23-2.613,3.996 v3.211c-0.584,0.086-1.176,0.141-1.78,0.156V19h-0.72v11.619c-4.255-0.102-8.152-1.998-10.867-5.259H8v-0.72H3.64V29h0.72v-3.017 C7.283,29.401,11.461,31.36,16,31.36c8.47,0,15.36-6.891,15.36-15.36C31.36,13.864,30.93,11.797,30.082,9.856z M18.86,27.254 c0-1.695,1.149-3.15,2.797-3.54c0.15-0.036,0.261-0.163,0.275-0.317c0.015-0.153-0.071-0.299-0.212-0.362 c-0.693-0.309-1.141-0.997-1.141-1.754c0-1.059,0.861-1.92,1.92-1.92s1.92,0.861,1.92,1.92c0,0.757-0.447,1.445-1.141,1.754 c-0.142,0.063-0.227,0.209-0.212,0.362c0.015,0.154,0.125,0.281,0.275,0.317c1.401,0.332,2.47,1.479,2.728,2.884 c-1.968,1.871-4.446,3.207-7.21,3.757L18.86,27.254L18.86,27.254z M5.86,14.254c0-1.694,1.15-3.15,2.797-3.541 c0.15-0.036,0.261-0.163,0.275-0.317c0.014-0.153-0.071-0.299-0.212-0.362C8.027,9.726,7.58,9.037,7.58,8.28 c0-1.059,0.861-1.92,1.92-1.92s1.92,0.861,1.92,1.92c0,0.757-0.448,1.445-1.142,1.753c-0.141,0.063-0.226,0.208-0.212,0.362 s0.125,0.281,0.275,0.317c1.647,0.391,2.798,1.847,2.798,3.541v1.386H5.86V14.254z"
23812
26600
  })), children);
23813
26601
  });
23814
- var Transform_01 = /* @__PURE__ */ React15.forwardRef(function Transform_012({
26602
+ var Transform_01 = /* @__PURE__ */ React16.forwardRef(function Transform_012({
23815
26603
  children,
23816
26604
  ...rest
23817
26605
  }, ref) {
23818
- return /* @__PURE__ */ React15.createElement(Icon3, _extends({
26606
+ return /* @__PURE__ */ React16.createElement(Icon3, _extends({
23819
26607
  width: 64,
23820
26608
  height: 64,
23821
26609
  viewBox: "0 0 32 32",
23822
26610
  xmlns: "http://www.w3.org/2000/svg",
23823
26611
  fill: "currentColor",
23824
26612
  ref
23825
- }, rest), _path1620 || (_path1620 = /* @__PURE__ */ React15.createElement("path", {
26613
+ }, rest), _path1621 || (_path1621 = /* @__PURE__ */ React16.createElement("path", {
23826
26614
  d: "M13,31.36H1c-0.199,0-0.36-0.161-0.36-0.36V19c0-0.199,0.161-0.36,0.36-0.36h12 c0.199,0,0.36,0.161,0.36,0.36v12C13.36,31.199,13.199,31.36,13,31.36z M1.36,30.64h11.28V19.36H1.36V30.64z M25,20.528 c-0.139,0-0.271-0.081-0.33-0.216c-0.079-0.183,0.004-0.395,0.186-0.475c3.514-1.535,5.784-5.004,5.784-8.838 c0-5.315-4.324-9.64-9.64-9.64c-3.833,0-7.303,2.271-8.838,5.784c-0.081,0.182-0.293,0.265-0.474,0.186 c-0.182-0.08-0.266-0.292-0.186-0.474C13.152,3.08,16.88,0.64,21,0.64c5.713,0,10.36,4.647,10.36,10.36 c0,4.12-2.44,7.849-6.216,9.498C25.098,20.519,25.048,20.528,25,20.528z M7.36,16.99c0-0.199-0.161-0.36-0.36-0.36 s-0.36,0.161-0.36,0.36V17c0,0.199,0.161,0.355,0.36,0.355S7.36,17.189,7.36,16.99z M17.089,25.36h-0.021 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36c0.199,0,0.37,0.161,0.37,0.36S17.288,25.36,17.089,25.36z M19.122,25.36 h-0.021c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36c0.199,0,0.37,0.161,0.37,0.36S19.321,25.36,19.122,25.36z M21.042,24.797c-0.132,0-0.259-0.073-0.322-0.199c-0.089-0.178-0.017-0.395,0.161-0.483c0.163-0.11,0.377-0.062,0.489,0.106 c0.109,0.165,0.055,0.395-0.111,0.505c-0.012,0.008-0.042,0.026-0.056,0.033C21.151,24.784,21.097,24.797,21.042,24.797z M22.459,23.363c-0.069,0-0.139-0.02-0.199-0.061c-0.166-0.11-0.211-0.334-0.101-0.499c0.089-0.18,0.302-0.238,0.477-0.151 c0.178,0.09,0.244,0.316,0.155,0.494c-0.007,0.014-0.024,0.044-0.032,0.056C22.689,23.307,22.575,23.363,22.459,23.363z M23,21.421 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.37,0.36-0.37s0.36,0.15,0.36,0.35v0.021C23.36,21.26,23.199,21.421,23,21.421z M23,19.382 c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.37,0.36-0.37s0.36,0.151,0.36,0.351v0.02C23.36,19.221,23.199,19.382,23,19.382z M23,17.344 c-0.199,0-0.36-0.161-0.36-0.36c0-0.199,0.161-0.37,0.36-0.37s0.36,0.151,0.36,0.35v0.02C23.36,17.183,23.199,17.344,23,17.344z M7,15.322c-0.199,0-0.36-0.151-0.36-0.35v-0.02c0-0.199,0.161-0.36,0.36-0.36s0.36,0.161,0.36,0.36S7.199,15.322,7,15.322z M23,15.305c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.37,0.36-0.37s0.36,0.151,0.36,0.35v0.02C23.36,15.144,23.199,15.305,23,15.305z M7,13.283c-0.004,0-0.009,0-0.013,0c-0.193-0.007-0.346-0.156-0.346-0.35c0-0.009,0-0.039,0.001-0.048 c0.016-0.197,0.183-0.345,0.387-0.331c0.198,0.015,0.346,0.188,0.331,0.387C7.345,13.129,7.188,13.283,7,13.283z M7.542,11.342 c-0.06,0-0.12-0.015-0.175-0.047c-0.172-0.1-0.235-0.312-0.135-0.483l0.01-0.018c0.101-0.171,0.323-0.229,0.492-0.129 c0.172,0.1,0.23,0.321,0.13,0.492C7.797,11.273,7.67,11.342,7.542,11.342z M22.442,11.329c-0.127,0-0.251-0.068-0.316-0.188 c-0.092-0.169-0.04-0.389,0.125-0.489c0.165-0.099,0.374-0.062,0.48,0.1c0.006,0.009,0.021,0.035,0.027,0.044 c0.095,0.174,0.03,0.393-0.144,0.488C22.56,11.315,22.501,11.329,22.442,11.329z M21.014,9.907c-0.062,0-0.124-0.016-0.182-0.049 c-0.172-0.1-0.238-0.326-0.138-0.498c0.1-0.171,0.311-0.235,0.483-0.135l0.018,0.01c0.172,0.1,0.229,0.321,0.129,0.493 C21.258,9.843,21.137,9.907,21.014,9.907z M8.964,9.561h0.009H8.964z M19.074,9.361c-0.008,0-0.017,0-0.025-0.001 c-0.193-0.014-0.352-0.178-0.345-0.372c0.007-0.202,0.217-0.366,0.396-0.346c0.198,0.014,0.348,0.186,0.334,0.385 C19.42,9.216,19.262,9.361,19.074,9.361z M17.035,9.36c-0.199,0-0.37-0.161-0.37-0.36s0.151-0.36,0.35-0.36h0.021 c0.199,0,0.36,0.161,0.36,0.36S17.234,9.36,17.035,9.36z M14.997,9.36c-0.199,0-0.37-0.161-0.37-0.36s0.151-0.36,0.35-0.36h0.02 c0.199,0,0.36,0.161,0.36,0.36S15.195,9.36,14.997,9.36z M12.958,9.36c-0.199,0-0.37-0.161-0.37-0.36s0.151-0.36,0.35-0.36h0.021 c0.199,0,0.36,0.161,0.36,0.36S13.157,9.36,12.958,9.36z M15.37,25c0-0.199-0.167-0.36-0.365-0.36s-0.36,0.161-0.36,0.36 s0.161,0.36,0.36,0.36h0.01C15.213,25.36,15.37,25.199,15.37,25z M10.905,9.36c-0.199,0-0.37-0.161-0.37-0.36s0.151-0.36,0.35-0.36 h0.021c0.199,0,0.36,0.161,0.36,0.36S11.104,9.36,10.905,9.36z M8.978,9.92c-0.199,0-0.37-0.161-0.37-0.36S8.759,9.2,8.958,9.2 h0.021c0.199,0,0.36,0.161,0.36,0.36S9.177,9.92,8.978,9.92z M23,13.294c-0.199,0-0.36-0.161-0.36-0.36s0.161-0.37,0.36-0.37 s0.36,0.151,0.36,0.35v0.02C23.36,13.133,23.199,13.294,23,13.294z"
23827
26615
  })), children);
23828
26616
  });
23829
- var User = /* @__PURE__ */ React15.forwardRef(function User2({
26617
+ var User = /* @__PURE__ */ React16.forwardRef(function User2({
23830
26618
  children,
23831
26619
  ...rest
23832
26620
  }, ref) {
23833
- return /* @__PURE__ */ React15.createElement(Icon3, _extends({
26621
+ return /* @__PURE__ */ React16.createElement(Icon3, _extends({
23834
26622
  width: 64,
23835
26623
  height: 64,
23836
26624
  viewBox: "0 0 32 32",
23837
26625
  xmlns: "http://www.w3.org/2000/svg",
23838
26626
  fill: "currentColor",
23839
26627
  ref
23840
- }, rest), _path637 || (_path637 = /* @__PURE__ */ React15.createElement("path", {
26628
+ }, rest), _path638 || (_path638 = /* @__PURE__ */ React16.createElement("path", {
23841
26629
  d: "M31.36,31h-0.72c0-6.432-4.777-12.232-11.359-13.792c-0.15-0.036-0.261-0.163-0.275-0.317 c-0.015-0.153,0.071-0.299,0.212-0.362c2.861-1.273,4.71-4.116,4.71-7.241c0-4.371-3.556-7.927-7.927-7.927 c-4.372,0-7.928,3.556-7.928,7.927c0,3.125,1.849,5.968,4.711,7.241c0.141,0.063,0.226,0.209,0.212,0.362 c-0.014,0.154-0.125,0.281-0.275,0.317C6.137,18.768,1.36,24.568,1.36,31H0.64c0-6.46,4.574-12.312,11.002-14.248 c-2.634-1.539-4.291-4.375-4.291-7.465c0-4.768,3.879-8.647,8.648-8.647c4.768,0,8.647,3.879,8.647,8.647 c0,3.09-1.656,5.926-4.29,7.465C26.786,18.688,31.36,24.54,31.36,31z"
23842
26630
  })), children);
23843
26631
  });
23844
- var UserInterface = /* @__PURE__ */ React15.forwardRef(function UserInterface2({
26632
+ var UserInterface = /* @__PURE__ */ React16.forwardRef(function UserInterface2({
23845
26633
  children,
23846
26634
  ...rest
23847
26635
  }, ref) {
23848
- return /* @__PURE__ */ React15.createElement(Icon3, _extends({
26636
+ return /* @__PURE__ */ React16.createElement(Icon3, _extends({
23849
26637
  width: 64,
23850
26638
  height: 64,
23851
26639
  viewBox: "0 0 32 32",
23852
26640
  xmlns: "http://www.w3.org/2000/svg",
23853
26641
  fill: "currentColor",
23854
26642
  ref
23855
- }, rest), _path677 || (_path677 = /* @__PURE__ */ React15.createElement("path", {
26643
+ }, rest), _path678 || (_path678 = /* @__PURE__ */ React16.createElement("path", {
23856
26644
  d: "M29,3.5C29,3.776,28.776,4,28.5,4S28,3.776,28,3.5S28.224,3,28.5,3S29,3.224,29,3.5 M26.5,3 C26.224,3,26,3.224,26,3.5S26.224,4,26.5,4S27,3.776,27,3.5S26.776,3,26.5,3 M24.5,3C24.224,3,24,3.224,24,3.5S24.224,4,24.5,4 S25,3.776,25,3.5S24.776,3,24.5,3 M31,30.36H1c-0.199,0-0.36-0.161-0.36-0.36V2c0-0.199,0.161-0.36,0.36-0.36h30 c0.199,0,0.36,0.161,0.36,0.36v28C31.36,30.199,31.199,30.36,31,30.36z M1.36,29.64h29.28V5.36H1.36V29.64z M1.36,4.64h29.28V2.36 H1.36V4.64z M15,25.36h-5c-0.199,0-0.36-0.161-0.36-0.36v-3c0-0.199,0.161-0.36,0.36-0.36h5c0.199,0,0.36,0.161,0.36,0.36v3 C15.36,25.199,15.199,25.36,15,25.36z M10.36,24.64h4.28v-2.28h-4.28C10.36,22.36,10.36,24.64,10.36,24.64z M22,20.36h-5 c-0.199,0-0.36-0.161-0.36-0.36v-3c0-0.199,0.161-0.36,0.36-0.36h5c0.199,0,0.36,0.161,0.36,0.36v3 C22.36,20.199,22.199,20.36,22,20.36z M17.36,19.64h4.279v-2.28H17.36V19.64z M15,20.36h-5c-0.199,0-0.36-0.161-0.36-0.36v-3 c0-0.199,0.161-0.36,0.36-0.36h5c0.199,0,0.36,0.161,0.36,0.36v3C15.36,20.199,15.199,20.36,15,20.36z M10.36,19.64h4.28v-2.28 h-4.28C10.36,17.36,10.36,19.64,10.36,19.64z M22,15.36h-5c-0.199,0-0.36-0.161-0.36-0.36v-3c0-0.199,0.161-0.36,0.36-0.36h5 c0.199,0,0.36,0.161,0.36,0.36v3C22.36,15.199,22.199,15.36,22,15.36z M17.36,14.64h4.279v-2.28H17.36V14.64z M15,15.36h-5 c-0.199,0-0.36-0.161-0.36-0.36v-3c0-0.199,0.161-0.36,0.36-0.36h5c0.199,0,0.36,0.161,0.36,0.36v3 C15.36,15.199,15.199,15.36,15,15.36z M10.36,14.64h4.28v-2.28h-4.28C10.36,12.36,10.36,14.64,10.36,14.64z M8,15.36H3 c-0.199,0-0.36-0.161-0.36-0.36v-3c0-0.199,0.161-0.36,0.36-0.36h5c0.199,0,0.36,0.161,0.36,0.36v3C8.36,15.199,8.199,15.36,8,15.36 z M3.36,14.64h4.28v-2.28H3.36V14.64z M29,10.36h-5c-0.199,0-0.36-0.161-0.36-0.36V7c0-0.199,0.161-0.36,0.36-0.36h5 c0.199,0,0.36,0.161,0.36,0.36v3C29.36,10.199,29.199,10.36,29,10.36z M24.36,9.64h4.279V7.36H24.36V9.64z M22,10.36h-5 c-0.199,0-0.36-0.161-0.36-0.36V7c0-0.199,0.161-0.36,0.36-0.36h5c0.199,0,0.36,0.161,0.36,0.36v3 C22.36,10.199,22.199,10.36,22,10.36z M17.36,9.64h4.279V7.36H17.36V9.64z M15,10.36h-5c-0.199,0-0.36-0.161-0.36-0.36V7 c0-0.199,0.161-0.36,0.36-0.36h5c0.199,0,0.36,0.161,0.36,0.36v3C15.36,10.199,15.199,10.36,15,10.36z M10.36,9.64h4.28V7.36h-4.28 C10.36,7.36,10.36,9.64,10.36,9.64z M8,10.36H3c-0.199,0-0.36-0.161-0.36-0.36V7c0-0.199,0.161-0.36,0.36-0.36h5 c0.199,0,0.36,0.161,0.36,0.36v3C8.36,10.199,8.199,10.36,8,10.36z M3.36,9.64h4.28V7.36H3.36V9.64z"
23857
26645
  })), children);
23858
26646
  });
@@ -23959,16 +26747,75 @@ var CustomPictogram = ({ name, size = "md", className }) => {
23959
26747
  };
23960
26748
  var CustomPictogram_default = CustomPictogram;
23961
26749
 
26750
+ // src/components/CustomQuotes/CustomQuotes.tsx
26751
+ import { useState as useState3, useEffect as useEffect2 } from "react";
26752
+ import clsx7 from "clsx";
26753
+
26754
+ // src/components/CustomQuotes/libs/functionUtils.ts
26755
+ var getRandomQuote = ({ quotes, previousQuote }) => {
26756
+ if (quotes.length === 0) return "";
26757
+ if (quotes.length === 1) return quotes[0];
26758
+ const availableQuotes = quotes.filter((quote) => quote !== previousQuote);
26759
+ const randomIndex = Math.floor(Math.random() * availableQuotes.length);
26760
+ return availableQuotes[randomIndex];
26761
+ };
26762
+
26763
+ // src/components/CustomQuotes/CustomQuotes.tsx
26764
+ import { Fragment as Fragment4, jsx as jsx14, jsxs as jsxs7 } from "react/jsx-runtime";
26765
+ var CustomQuotes = ({
26766
+ className,
26767
+ quotes,
26768
+ rotationTimer = 2
26769
+ }) => {
26770
+ const [currentQuote, setCurrentQuote] = useState3("");
26771
+ const [previousQuote, setPreviousQuote] = useState3("");
26772
+ useEffect2(() => {
26773
+ if (quotes.length > 0) {
26774
+ const initialQuote = getRandomQuote({
26775
+ quotes,
26776
+ previousQuote: ""
26777
+ // Start with empty previous quote
26778
+ });
26779
+ setCurrentQuote(initialQuote);
26780
+ setPreviousQuote(initialQuote);
26781
+ }
26782
+ }, [quotes]);
26783
+ useEffect2(() => {
26784
+ if (quotes.length <= 1) return;
26785
+ const intervalMs = rotationTimer * 60 * 1e3;
26786
+ const intervalId = setInterval(() => {
26787
+ setCurrentQuote((prevCurrent) => {
26788
+ const newQuote = getRandomQuote({
26789
+ quotes,
26790
+ previousQuote: prevCurrent
26791
+ });
26792
+ setPreviousQuote(prevCurrent);
26793
+ return newQuote;
26794
+ });
26795
+ }, intervalMs);
26796
+ return () => clearInterval(intervalId);
26797
+ }, [quotes, rotationTimer]);
26798
+ if (quotes.length === 0) {
26799
+ return /* @__PURE__ */ jsx14(Fragment4, { children: /* @__PURE__ */ jsx14(SkeletonAnimation_default, { part: "body" }) });
26800
+ }
26801
+ return /* @__PURE__ */ jsx14(Fragment4, { children: /* @__PURE__ */ jsxs7("div", { className: clsx7(className, "custom-quotes"), children: [
26802
+ /* @__PURE__ */ jsx14(Quotes, { className: "custom-quotes__icon" }),
26803
+ /* @__PURE__ */ jsx14("blockquote", { className: "custom-quotes__text", children: currentQuote }),
26804
+ /* @__PURE__ */ jsx14("hr", { className: "custom-quotes__hr" })
26805
+ ] }) });
26806
+ };
26807
+ var CustomQuotes_default = CustomQuotes;
26808
+
23962
26809
  // src/components/CustomTile/index.ts
23963
26810
  import { memo } from "react";
23964
26811
 
23965
26812
  // src/components/CustomTile/CustomTile.tsx
23966
- import { useState as useState3 } from "react";
23967
- import React17 from "react";
26813
+ import { useState as useState4 } from "react";
26814
+ import React19 from "react";
23968
26815
  import { Tile } from "@carbon/react";
23969
26816
 
23970
26817
  // src/components/CustomTile/lib/getCustomTileCSSClasses.tsx
23971
- import clsx7 from "clsx";
26818
+ import clsx8 from "clsx";
23972
26819
  var getCustomTileCSSClasses = ({
23973
26820
  layoutStyle,
23974
26821
  linksTo,
@@ -23977,7 +26824,7 @@ var getCustomTileCSSClasses = ({
23977
26824
  iconIsOnDisplay,
23978
26825
  imageIsOnDisplay,
23979
26826
  pictogramIsOnDisplay
23980
- }) => clsx7("enj-CustomTile", `enj-CustomTile--${layoutStyle}`, {
26827
+ }) => clsx8("enj-CustomTile", `enj-CustomTile--${layoutStyle}`, {
23981
26828
  "enj-CustomTile--has-link": linksTo,
23982
26829
  // Indicates that component opens a link
23983
26830
  "enj-CustomTile--has-link-external": linkIsExternal,
@@ -23990,7 +26837,7 @@ var getCustomTileCSSClasses = ({
23990
26837
  });
23991
26838
 
23992
26839
  // src/components/CustomTile/lib/getLinkwrapper.tsx
23993
- import { Fragment as Fragment4, jsx as jsx14 } from "react/jsx-runtime";
26840
+ import { Fragment as Fragment5, jsx as jsx15 } from "react/jsx-runtime";
23994
26841
  var getLinkWrapper = ({
23995
26842
  heading,
23996
26843
  linksTo,
@@ -24001,7 +26848,7 @@ var getLinkWrapper = ({
24001
26848
  className: "enj-CustomTile-anchor-tag",
24002
26849
  "aria-label": `Navigate to ${heading}${linkIsExternal ? " (opens in new tab)" : ""}`
24003
26850
  };
24004
- return linksTo ? /* @__PURE__ */ jsx14(
26851
+ return linksTo ? /* @__PURE__ */ jsx15(
24005
26852
  "a",
24006
26853
  {
24007
26854
  href: linksTo,
@@ -24009,12 +26856,12 @@ var getLinkWrapper = ({
24009
26856
  rel: linkIsExternal ? "noopener noreferrer" : void 0,
24010
26857
  ...customProps
24011
26858
  }
24012
- ) : /* @__PURE__ */ jsx14(Fragment4, {});
26859
+ ) : /* @__PURE__ */ jsx15(Fragment5, {});
24013
26860
  };
24014
26861
 
24015
26862
  // src/components/CustomTile/lib/getTileContent.tsx
24016
- import clsx8 from "clsx";
24017
- import { Fragment as Fragment5, jsx as jsx15, jsxs as jsxs7 } from "react/jsx-runtime";
26863
+ import clsx9 from "clsx";
26864
+ import { Fragment as Fragment6, jsx as jsx16, jsxs as jsxs8 } from "react/jsx-runtime";
24018
26865
  var getTileContent = ({
24019
26866
  featuredText,
24020
26867
  mediaPictogram,
@@ -24028,24 +26875,24 @@ var getTileContent = ({
24028
26875
  className: "enj-CustomTile-title"
24029
26876
  }
24030
26877
  };
24031
- return /* @__PURE__ */ jsxs7(Fragment5, { children: [
24032
- mediaPictogram && /* @__PURE__ */ jsx15(
26878
+ return /* @__PURE__ */ jsxs8(Fragment6, { children: [
26879
+ mediaPictogram && /* @__PURE__ */ jsx16(
24033
26880
  CustomPictogram_default,
24034
26881
  {
24035
26882
  name: mediaPictogram,
24036
- className: clsx8("enj-CustomTile-pictogram")
26883
+ className: clsx9("enj-CustomTile-pictogram")
24037
26884
  }
24038
26885
  ),
24039
- mediaImage && /* @__PURE__ */ jsx15(
26886
+ mediaImage && /* @__PURE__ */ jsx16(
24040
26887
  "img",
24041
26888
  {
24042
- className: clsx8("enj-CustomTile-image img-fluid"),
26889
+ className: clsx9("enj-CustomTile-image img-fluid"),
24043
26890
  src: mediaImage,
24044
26891
  alt: "",
24045
26892
  "aria-hidden": "true"
24046
26893
  }
24047
26894
  ),
24048
- /* @__PURE__ */ jsx15(FeatureText_default, { ...featuredTextLocalProps }),
26895
+ /* @__PURE__ */ jsx16(FeatureText_default, { ...featuredTextLocalProps }),
24049
26896
  iconContent && iconContent
24050
26897
  ] });
24051
26898
  };
@@ -24058,7 +26905,7 @@ import {
24058
26905
  ModalFooter,
24059
26906
  Button as Button2
24060
26907
  } from "@carbon/react";
24061
- import { Fragment as Fragment6, jsx as jsx16, jsxs as jsxs8 } from "react/jsx-runtime";
26908
+ import { Fragment as Fragment7, jsx as jsx17, jsxs as jsxs9 } from "react/jsx-runtime";
24062
26909
  var ContentModal = ({
24063
26910
  isOpen,
24064
26911
  setIsOpen,
@@ -24072,14 +26919,14 @@ var ContentModal = ({
24072
26919
  const handleClose = () => {
24073
26920
  setIsOpen(false);
24074
26921
  };
24075
- return /* @__PURE__ */ jsx16(Fragment6, { children: setIsOpen !== void 0 && /* @__PURE__ */ jsxs8(
26922
+ return /* @__PURE__ */ jsx17(Fragment7, { children: setIsOpen !== void 0 && /* @__PURE__ */ jsxs9(
24076
26923
  ComposedModal,
24077
26924
  {
24078
26925
  open: isOpen,
24079
26926
  onClose: handleClose,
24080
26927
  size: "md",
24081
26928
  children: [
24082
- /* @__PURE__ */ jsx16(
26929
+ /* @__PURE__ */ jsx17(
24083
26930
  ModalHeader,
24084
26931
  {
24085
26932
  label: modalLabel,
@@ -24087,11 +26934,11 @@ var ContentModal = ({
24087
26934
  closeModal: handleClose
24088
26935
  }
24089
26936
  ),
24090
- /* @__PURE__ */ jsxs8(ModalBody, { children: [
24091
- modalSubHeading && /* @__PURE__ */ jsx16("p", { style: { marginBottom: "1rem" }, children: modalSubHeading }),
26937
+ /* @__PURE__ */ jsxs9(ModalBody, { children: [
26938
+ modalSubHeading && /* @__PURE__ */ jsx17("p", { style: { marginBottom: "1rem" }, children: modalSubHeading }),
24092
26939
  children
24093
26940
  ] }),
24094
- /* @__PURE__ */ jsx16(ModalFooter, { children: /* @__PURE__ */ jsx16(
26941
+ /* @__PURE__ */ jsx17(ModalFooter, { children: /* @__PURE__ */ jsx17(
24095
26942
  Button2,
24096
26943
  {
24097
26944
  kind: "secondary",
@@ -24131,7 +26978,7 @@ function validateCTL_propsType({
24131
26978
  }
24132
26979
 
24133
26980
  // src/components/CustomTile/lib/getHeadingContent.ts
24134
- import React16 from "react";
26981
+ import React18 from "react";
24135
26982
  var getHeadingContent = (featuredText) => stripNonAlphanumeric(featuredText?.heading?.children);
24136
26983
  var stripNonAlphanumeric = (prop) => {
24137
26984
  const extractTextFromNode = (node) => {
@@ -24141,7 +26988,7 @@ var stripNonAlphanumeric = (prop) => {
24141
26988
  if (typeof node === "number" || typeof node === "boolean") {
24142
26989
  return String(node);
24143
26990
  }
24144
- if (React16.isValidElement(node)) {
26991
+ if (React18.isValidElement(node)) {
24145
26992
  if (node.props.children) {
24146
26993
  if (Array.isArray(node.props.children)) {
24147
26994
  return node.props.children.map(extractTextFromNode).join("");
@@ -24163,10 +27010,10 @@ var stripNonAlphanumeric = (prop) => {
24163
27010
  var isValidLinkTo = (value) => value ? value.startsWith("/") || value.startsWith("https://") || value.startsWith("http://") : false;
24164
27011
 
24165
27012
  // src/components/ArrowIcon/ArrowIcon.tsx
24166
- import { jsx as jsx17 } from "react/jsx-runtime";
27013
+ import { jsx as jsx18 } from "react/jsx-runtime";
24167
27014
  var ArrowIcon = ({ className, title, name }) => {
24168
27015
  const C = name === "Right" ? ArrowRight : ArrowUpRight;
24169
- return /* @__PURE__ */ jsx17(
27016
+ return /* @__PURE__ */ jsx18(
24170
27017
  C,
24171
27018
  {
24172
27019
  className,
@@ -24179,14 +27026,14 @@ var ArrowIcon = ({ className, title, name }) => {
24179
27026
  };
24180
27027
 
24181
27028
  // src/components/CustomTile/lib/getIconContent.tsx
24182
- import { jsx as jsx18, jsxs as jsxs9 } from "react/jsx-runtime";
27029
+ import { jsx as jsx19, jsxs as jsxs10 } from "react/jsx-runtime";
24183
27030
  var getIconContent = ({
24184
27031
  title,
24185
27032
  modalIsAvailable,
24186
27033
  iconName
24187
27034
  }) => {
24188
- return /* @__PURE__ */ jsxs9("div", { className: "enj-CustomTile-icon-wrapper", children: [
24189
- iconName && /* @__PURE__ */ jsx18(
27035
+ return /* @__PURE__ */ jsxs10("div", { className: "enj-CustomTile-icon-wrapper", children: [
27036
+ iconName && /* @__PURE__ */ jsx19(
24190
27037
  ArrowIcon,
24191
27038
  {
24192
27039
  className: "enj-CustomTile-icon",
@@ -24194,7 +27041,7 @@ var getIconContent = ({
24194
27041
  name: iconName
24195
27042
  }
24196
27043
  ),
24197
- modalIsAvailable && /* @__PURE__ */ jsx18(Information, { className: "enj-CustomTile-icon", "aria-label": title })
27044
+ modalIsAvailable && /* @__PURE__ */ jsx19(Information, { className: "enj-CustomTile-icon", "aria-label": title })
24198
27045
  ] });
24199
27046
  };
24200
27047
 
@@ -24206,7 +27053,7 @@ var get_CTL_role = ({
24206
27053
  };
24207
27054
 
24208
27055
  // src/components/CustomTile/CustomTile.tsx
24209
- import { Fragment as Fragment7, jsx as jsx19, jsxs as jsxs10 } from "react/jsx-runtime";
27056
+ import { Fragment as Fragment8, jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
24210
27057
  var CustomTile = ({
24211
27058
  className,
24212
27059
  featuredText,
@@ -24221,7 +27068,7 @@ var CustomTile = ({
24221
27068
  linksTo,
24222
27069
  linkTarget = "_self"
24223
27070
  }) => {
24224
- const [modalIsOpen, setModalIsOpen] = useState3(
27071
+ const [modalIsOpen, setModalIsOpen] = useState4(
24225
27072
  modalIsAvailable !== void 0 ? false : void 0
24226
27073
  );
24227
27074
  validateCTL_propsType({ linksTo, linkTarget, modalIsAvailable });
@@ -24264,25 +27111,25 @@ var CustomTile = ({
24264
27111
  activeBreakpoint
24265
27112
  // Closest possible breakpoint to wrapper's width
24266
27113
  } = useContainerSize();
24267
- return /* @__PURE__ */ jsxs10("div", { className: "enj-CustomTile-wrapper", ref: containerRef, children: [
24268
- /* @__PURE__ */ jsx19(
27114
+ return /* @__PURE__ */ jsxs11("div", { className: "enj-CustomTile-wrapper", ref: containerRef, children: [
27115
+ /* @__PURE__ */ jsx20(
24269
27116
  Tile,
24270
27117
  {
24271
27118
  className: `${wrapperClassNames} ${className} enj-CustomTile-${activeBreakpoint}`,
24272
27119
  "aria-label": `${componentTitle} tile`,
24273
27120
  role: ctl_role,
24274
27121
  onClick: () => handleCustomTileClick({ modalIsAvailable, setModalIsOpen }),
24275
- children: linksTo ? /* @__PURE__ */ jsx19(Fragment7, { children: React17.cloneElement(LinkWrapper, {}, tileContent) }) : tileContent
27122
+ children: linksTo ? /* @__PURE__ */ jsx20(Fragment8, { children: React19.cloneElement(LinkWrapper, {}, tileContent) }) : tileContent
24276
27123
  }
24277
27124
  ),
24278
- modalIsAvailable && modalIsOpen !== void 0 && /* @__PURE__ */ jsx19(
27125
+ modalIsAvailable && modalIsOpen !== void 0 && /* @__PURE__ */ jsx20(
24279
27126
  ContentModal,
24280
27127
  {
24281
27128
  isOpen: modalIsOpen,
24282
27129
  modalHeading: featuredText.heading.children,
24283
27130
  modalSecondaryButtonText: "Cancel",
24284
27131
  setIsOpen: setModalIsOpen,
24285
- children: /* @__PURE__ */ jsx19(
27132
+ children: /* @__PURE__ */ jsx20(
24286
27133
  SmartText_default,
24287
27134
  {
24288
27135
  plainText: modalPlainDescription,
@@ -24299,23 +27146,23 @@ var CustomTile_default = CustomTile;
24299
27146
  var MemoizedCustomTile = memo(CustomTile_default);
24300
27147
 
24301
27148
  // src/components/CustomTabs/CustomTabs.tsx
24302
- import { useState as useState4 } from "react";
27149
+ import { useState as useState5 } from "react";
24303
27150
  import { Tabs, TabList, Tab, TabPanels, TabPanel } from "@carbon/react";
24304
- import { jsx as jsx20, jsxs as jsxs11 } from "react/jsx-runtime";
27151
+ import { Fragment as Fragment9, jsx as jsx21, jsxs as jsxs12 } from "react/jsx-runtime";
24305
27152
  var CustomTabs = () => {
24306
- const [selected, setSelected] = useState4(0);
24307
- return /* @__PURE__ */ jsxs11(Tabs, { selectedIndex: selected, onChange: ({ selectedIndex }) => setSelected(selectedIndex), children: [
24308
- /* @__PURE__ */ jsxs11(TabList, { "aria-label": "Sample Tabs", children: [
24309
- /* @__PURE__ */ jsx20(Tab, { children: "Tab One *" }),
24310
- /* @__PURE__ */ jsx20(Tab, { children: "Tab Two #" }),
24311
- /* @__PURE__ */ jsx20(Tab, { children: "Tab Three" })
27153
+ const [selected, setSelected] = useState5(0);
27154
+ return /* @__PURE__ */ jsx21(Fragment9, { children: /* @__PURE__ */ jsxs12(Tabs, { selectedIndex: selected, onChange: ({ selectedIndex }) => setSelected(selectedIndex), children: [
27155
+ /* @__PURE__ */ jsxs12(TabList, { "aria-label": "Sample Tabs", children: [
27156
+ /* @__PURE__ */ jsx21(Tab, { children: "Tab One *" }),
27157
+ /* @__PURE__ */ jsx21(Tab, { children: "Tab Two #" }),
27158
+ /* @__PURE__ */ jsx21(Tab, { children: "Tab Three" })
24312
27159
  ] }),
24313
- /* @__PURE__ */ jsxs11(TabPanels, { children: [
24314
- /* @__PURE__ */ jsx20(TabPanel, { children: "Content for Tab One" }),
24315
- /* @__PURE__ */ jsx20(TabPanel, { children: "Content for Tab Two" }),
24316
- /* @__PURE__ */ jsx20(TabPanel, { children: "Content for Tab Three" })
27160
+ /* @__PURE__ */ jsxs12(TabPanels, { children: [
27161
+ /* @__PURE__ */ jsx21(TabPanel, { children: "Content for Tab One" }),
27162
+ /* @__PURE__ */ jsx21(TabPanel, { children: "Content for Tab Two" }),
27163
+ /* @__PURE__ */ jsx21(TabPanel, { children: "Content for Tab Three" })
24317
27164
  ] })
24318
- ] });
27165
+ ] }) });
24319
27166
  };
24320
27167
  var CustomTabs_default = CustomTabs;
24321
27168
 
@@ -24323,34 +27170,34 @@ var CustomTabs_default = CustomTabs;
24323
27170
  import { memo as memo2 } from "react";
24324
27171
 
24325
27172
  // src/components/HeadlinedList/HeadlinedList.tsx
24326
- import clsx11 from "clsx";
27173
+ import clsx12 from "clsx";
24327
27174
 
24328
27175
  // src/components/List/List.tsx
24329
- import clsx10 from "clsx";
27176
+ import clsx11 from "clsx";
24330
27177
 
24331
27178
  // src/components/ListItem/ListItem.tsx
24332
- import clsx9 from "clsx";
24333
- import { jsx as jsx21, jsxs as jsxs12 } from "react/jsx-runtime";
27179
+ import clsx10 from "clsx";
27180
+ import { jsx as jsx22, jsxs as jsxs13 } from "react/jsx-runtime";
24334
27181
  var ListItem = ({ content, href, className, children }) => {
24335
27182
  if (content === void 0) {
24336
- return /* @__PURE__ */ jsx21(SkeletonAnimation_default, { part: "list-item" });
27183
+ return /* @__PURE__ */ jsx22(SkeletonAnimation_default, { part: "list-item" });
24337
27184
  }
24338
- return /* @__PURE__ */ jsxs12("li", { className: clsx9(className), children: [
24339
- href ? /* @__PURE__ */ jsx21("a", { href, children: content }) : content,
27185
+ return /* @__PURE__ */ jsxs13("li", { className: clsx10(className), children: [
27186
+ href ? /* @__PURE__ */ jsx22("a", { href, children: content }) : content,
24340
27187
  children
24341
27188
  ] });
24342
27189
  };
24343
27190
  var ListItem_default = ListItem;
24344
27191
 
24345
27192
  // src/components/List/List.tsx
24346
- import { jsx as jsx22 } from "react/jsx-runtime";
27193
+ import { jsx as jsx23 } from "react/jsx-runtime";
24347
27194
  var List = ({ type = "unordered", className, content }) => {
24348
27195
  const ListWrapper = type === "unordered" ? "ul" : "ol";
24349
27196
  if (!content || content.length < 1) {
24350
- return /* @__PURE__ */ jsx22(SkeletonAnimation_default, { part: "list" });
27197
+ return /* @__PURE__ */ jsx23(SkeletonAnimation_default, { part: "list" });
24351
27198
  }
24352
- return /* @__PURE__ */ jsx22(ListWrapper, { className: clsx10("enj-list", className), children: content.map((item) => {
24353
- return /* @__PURE__ */ jsx22(
27199
+ return /* @__PURE__ */ jsx23(ListWrapper, { className: clsx11("enj-list", className), children: content.map((item) => {
27200
+ return /* @__PURE__ */ jsx23(
24354
27201
  ListItem_default,
24355
27202
  {
24356
27203
  content: item.content,
@@ -24365,16 +27212,16 @@ var List = ({ type = "unordered", className, content }) => {
24365
27212
  var List_default = List;
24366
27213
 
24367
27214
  // src/components/HeadlinedList/HeadlinedList.tsx
24368
- import { jsx as jsx23, jsxs as jsxs13 } from "react/jsx-runtime";
27215
+ import { jsx as jsx24, jsxs as jsxs14 } from "react/jsx-runtime";
24369
27216
  var HeadlinedList = ({
24370
27217
  wrapper = { tag: "div", cssClass: "" },
24371
27218
  heading = { children: void 0, level: 3, className: "" },
24372
27219
  list
24373
27220
  }) => {
24374
27221
  const Wrapper = wrapper.tag;
24375
- return /* @__PURE__ */ jsxs13(Wrapper, { className: clsx11("enj-HeadlinedList", wrapper.cssClass), children: [
24376
- /* @__PURE__ */ jsx23(Heading_default, { level: heading.level, className: heading.className, children: heading.children }),
24377
- list?.content?.length ? /* @__PURE__ */ jsx23(List_default, { ...list }) : /* @__PURE__ */ jsx23(List_default, {})
27222
+ return /* @__PURE__ */ jsxs14(Wrapper, { className: clsx12("enj-HeadlinedList", wrapper.cssClass), children: [
27223
+ /* @__PURE__ */ jsx24(Heading_default, { level: heading.level, className: heading.className, children: heading.children }),
27224
+ list?.content?.length ? /* @__PURE__ */ jsx24(List_default, { ...list }) : /* @__PURE__ */ jsx24(List_default, {})
24378
27225
  ] });
24379
27226
  };
24380
27227
  var HeadlinedList_default = HeadlinedList;
@@ -24394,6 +27241,7 @@ export {
24394
27241
  CP_pictogramMap,
24395
27242
  ContactButton_default as ContactButton,
24396
27243
  CustomPictogram_default as CustomPictogram,
27244
+ CustomQuotes_default as CustomQuotes,
24397
27245
  CustomTabs_default as CustomTabs,
24398
27246
  CustomTile_default as CustomTile,
24399
27247
  FeatureText_default as FeatureText,
@@ -24403,26 +27251,6 @@ export {
24403
27251
  };
24404
27252
  /*! Bundled license information:
24405
27253
 
24406
- react-is/cjs/react-is.production.min.js:
24407
- (** @license React v16.13.1
24408
- * react-is.production.min.js
24409
- *
24410
- * Copyright (c) Facebook, Inc. and its affiliates.
24411
- *
24412
- * This source code is licensed under the MIT license found in the
24413
- * LICENSE file in the root directory of this source tree.
24414
- *)
24415
-
24416
- react-is/cjs/react-is.development.js:
24417
- (** @license React v16.13.1
24418
- * react-is.development.js
24419
- *
24420
- * Copyright (c) Facebook, Inc. and its affiliates.
24421
- *
24422
- * This source code is licensed under the MIT license found in the
24423
- * LICENSE file in the root directory of this source tree.
24424
- *)
24425
-
24426
27254
  object-assign/index.js:
24427
27255
  (*
24428
27256
  object-assign