@7shifts/sous-chef 3.13.3 → 3.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/components/IconEnvelopeOpenDollar.d.ts +9 -0
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/index.js +229 -201
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +229 -202
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -2177,10 +2177,37 @@ var IconEllipsisV = forwardRef(function (_ref, ref) {
|
|
|
2177
2177
|
IconEllipsisV.displayName = 'IconEllipsisV';
|
|
2178
2178
|
|
|
2179
2179
|
var _excluded$W = ["testId"];
|
|
2180
|
+
var IconEnvelopeOpenDollar = forwardRef(function (_ref, ref) {
|
|
2181
|
+
var _ref$testId = _ref.testId,
|
|
2182
|
+
testId = _ref$testId === void 0 ? 'icon-envelope-open-dollar' : _ref$testId,
|
|
2183
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$W);
|
|
2184
|
+
|
|
2185
|
+
return React__default.createElement("svg", Object.assign({
|
|
2186
|
+
viewBox: "0 0 20 20",
|
|
2187
|
+
fill: "none",
|
|
2188
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2189
|
+
style: getIconStyles(props),
|
|
2190
|
+
"data-testid": testId,
|
|
2191
|
+
ref: ref
|
|
2192
|
+
}, props), React__default.createElement("g", {
|
|
2193
|
+
clipPath: "url(#icon-envelope-open-dollar_svg__a)"
|
|
2194
|
+
}, React__default.createElement("path", {
|
|
2195
|
+
d: "M19.32 6.427c-.077-.064-.867-.7-1.82-1.466V3.75c0-.69-.56-1.25-1.25-1.25h-1.815l-.399-.318C13.173 1.492 11.696 0 10 0 8.312 0 6.85 1.473 5.963 2.182l-.398.318H3.75c-.69 0-1.25.56-1.25 1.25v1.21L.684 6.422A1.875 1.875 0 0 0 0 7.87v10.255C0 19.16.84 20 1.875 20h16.25C19.16 20 20 19.16 20 18.125V7.871c0-.559-.25-1.089-.68-1.444ZM10 1.25c.85 0 1.744.653 2.466 1.25h-4.93C8.258 1.904 9.152 1.25 10 1.25Zm-6.25 2.5h12.5v6.771a792.911 792.911 0 0 1-3.382 2.71c-.659.524-1.961 1.784-2.868 1.769-.907.015-2.21-1.245-2.868-1.77-.831-.66-2.118-1.693-3.382-2.709V3.75Zm-2.5 4.12c0-.187.083-.363.228-.482L2.5 6.564v2.951L1.25 8.508V7.87Zm17.5 10.255c0 .345-.28.625-.625.625H1.875a.626.626 0 0 1-.625-.625v-8.011c1.67 1.345 3.88 3.121 5.105 4.094.8.64 2.216 2.052 3.645 2.042 1.424.01 2.823-1.386 3.645-2.042 1.227-.974 3.435-2.75 5.105-4.095v8.012Zm0-9.617L17.5 9.516V6.565c.564.454.969.78 1.023.825.145.119.227.294.227.481v.637Zm-9.808.89 1.758.527c.201.06.342.265.342.497 0 .284-.207.515-.46.515H9.482a.936.936 0 0 1-.5-.145.32.32 0 0 0-.396.029l-.46.438a.313.313 0 0 0 .023.474c.355.267.784.42 1.225.443v.636c0 .173.14.313.313.313h.625c.172 0 .312-.14.312-.313v-.63c.923-.024 1.667-.802 1.667-1.76 0-.78-.507-1.477-1.233-1.695L9.3 8.2c-.202-.06-.343-.265-.343-.497 0-.284.207-.516.461-.516h1.098c.178 0 .35.05.501.146a.32.32 0 0 0 .396-.029l.459-.438a.313.313 0 0 0-.023-.474 2.237 2.237 0 0 0-1.225-.443v-.636A.312.312 0 0 0 10.312 5h-.624a.312.312 0 0 0-.313.313v.63c-.923.024-1.667.802-1.667 1.76 0 .78.507 1.477 1.234 1.695Z",
|
|
2196
|
+
fill: "currentColor"
|
|
2197
|
+
})), React__default.createElement("defs", null, React__default.createElement("clipPath", {
|
|
2198
|
+
id: "icon-envelope-open-dollar_svg__a"
|
|
2199
|
+
}, React__default.createElement("path", {
|
|
2200
|
+
fill: "#fff",
|
|
2201
|
+
d: "M0 0h20v20H0z"
|
|
2202
|
+
}))));
|
|
2203
|
+
});
|
|
2204
|
+
IconEnvelopeOpenDollar.displayName = 'IconEnvelopeOpenDollar';
|
|
2205
|
+
|
|
2206
|
+
var _excluded$X = ["testId"];
|
|
2180
2207
|
var IconEnvelope = forwardRef(function (_ref, ref) {
|
|
2181
2208
|
var _ref$testId = _ref.testId,
|
|
2182
2209
|
testId = _ref$testId === void 0 ? 'icon-envelope' : _ref$testId,
|
|
2183
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2210
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$X);
|
|
2184
2211
|
|
|
2185
2212
|
return React__default.createElement("svg", Object.assign({
|
|
2186
2213
|
viewBox: "0 0 20 20",
|
|
@@ -2196,11 +2223,11 @@ var IconEnvelope = forwardRef(function (_ref, ref) {
|
|
|
2196
2223
|
});
|
|
2197
2224
|
IconEnvelope.displayName = 'IconEnvelope';
|
|
2198
2225
|
|
|
2199
|
-
var _excluded$
|
|
2226
|
+
var _excluded$Y = ["testId"];
|
|
2200
2227
|
var IconExclaimationTriangle = forwardRef(function (_ref, ref) {
|
|
2201
2228
|
var _ref$testId = _ref.testId,
|
|
2202
2229
|
testId = _ref$testId === void 0 ? 'icon-exclaimation-triangle' : _ref$testId,
|
|
2203
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2230
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Y);
|
|
2204
2231
|
|
|
2205
2232
|
return React__default.createElement("svg", Object.assign({
|
|
2206
2233
|
viewBox: "0 0 20 20",
|
|
@@ -2218,11 +2245,11 @@ var IconExclaimationTriangle = forwardRef(function (_ref, ref) {
|
|
|
2218
2245
|
});
|
|
2219
2246
|
IconExclaimationTriangle.displayName = 'IconExclaimationTriangle';
|
|
2220
2247
|
|
|
2221
|
-
var _excluded$
|
|
2248
|
+
var _excluded$Z = ["testId"];
|
|
2222
2249
|
var IconExclaimation = forwardRef(function (_ref, ref) {
|
|
2223
2250
|
var _ref$testId = _ref.testId,
|
|
2224
2251
|
testId = _ref$testId === void 0 ? 'icon-exclaimation' : _ref$testId,
|
|
2225
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2252
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$Z);
|
|
2226
2253
|
|
|
2227
2254
|
return React__default.createElement("svg", Object.assign({
|
|
2228
2255
|
viewBox: "0 0 20 20",
|
|
@@ -2238,11 +2265,11 @@ var IconExclaimation = forwardRef(function (_ref, ref) {
|
|
|
2238
2265
|
});
|
|
2239
2266
|
IconExclaimation.displayName = 'IconExclaimation';
|
|
2240
2267
|
|
|
2241
|
-
var _excluded$
|
|
2268
|
+
var _excluded$_ = ["testId"];
|
|
2242
2269
|
var IconExpand = forwardRef(function (_ref, ref) {
|
|
2243
2270
|
var _ref$testId = _ref.testId,
|
|
2244
2271
|
testId = _ref$testId === void 0 ? 'icon-expand' : _ref$testId,
|
|
2245
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2272
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$_);
|
|
2246
2273
|
|
|
2247
2274
|
return React__default.createElement("svg", Object.assign({
|
|
2248
2275
|
viewBox: "0 0 20 20",
|
|
@@ -2258,11 +2285,11 @@ var IconExpand = forwardRef(function (_ref, ref) {
|
|
|
2258
2285
|
});
|
|
2259
2286
|
IconExpand.displayName = 'IconExpand';
|
|
2260
2287
|
|
|
2261
|
-
var _excluded
|
|
2288
|
+
var _excluded$$ = ["testId"];
|
|
2262
2289
|
var IconExternalLink = forwardRef(function (_ref, ref) {
|
|
2263
2290
|
var _ref$testId = _ref.testId,
|
|
2264
2291
|
testId = _ref$testId === void 0 ? 'icon-external-link' : _ref$testId,
|
|
2265
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
2292
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$$);
|
|
2266
2293
|
|
|
2267
2294
|
return React__default.createElement("svg", Object.assign({
|
|
2268
2295
|
viewBox: "0 0 20 20",
|
|
@@ -2280,11 +2307,11 @@ var IconExternalLink = forwardRef(function (_ref, ref) {
|
|
|
2280
2307
|
});
|
|
2281
2308
|
IconExternalLink.displayName = 'IconExternalLink';
|
|
2282
2309
|
|
|
2283
|
-
var _excluded
|
|
2310
|
+
var _excluded$10 = ["testId"];
|
|
2284
2311
|
var IconEyeSlash = forwardRef(function (_ref, ref) {
|
|
2285
2312
|
var _ref$testId = _ref.testId,
|
|
2286
2313
|
testId = _ref$testId === void 0 ? 'icon-eye-slash' : _ref$testId,
|
|
2287
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded
|
|
2314
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$10);
|
|
2288
2315
|
|
|
2289
2316
|
return React__default.createElement("svg", Object.assign({
|
|
2290
2317
|
viewBox: "0 0 20 20",
|
|
@@ -2315,11 +2342,11 @@ var IconEyeSlash = forwardRef(function (_ref, ref) {
|
|
|
2315
2342
|
});
|
|
2316
2343
|
IconEyeSlash.displayName = 'IconEyeSlash';
|
|
2317
2344
|
|
|
2318
|
-
var _excluded$
|
|
2345
|
+
var _excluded$11 = ["testId"];
|
|
2319
2346
|
var IconEye = forwardRef(function (_ref, ref) {
|
|
2320
2347
|
var _ref$testId = _ref.testId,
|
|
2321
2348
|
testId = _ref$testId === void 0 ? 'icon-eye' : _ref$testId,
|
|
2322
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2349
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$11);
|
|
2323
2350
|
|
|
2324
2351
|
return React__default.createElement("svg", Object.assign({
|
|
2325
2352
|
viewBox: "0 0 20 20",
|
|
@@ -2343,11 +2370,11 @@ var IconEye = forwardRef(function (_ref, ref) {
|
|
|
2343
2370
|
});
|
|
2344
2371
|
IconEye.displayName = 'IconEye';
|
|
2345
2372
|
|
|
2346
|
-
var _excluded$
|
|
2373
|
+
var _excluded$12 = ["testId"];
|
|
2347
2374
|
var IconFilePdf = forwardRef(function (_ref, ref) {
|
|
2348
2375
|
var _ref$testId = _ref.testId,
|
|
2349
2376
|
testId = _ref$testId === void 0 ? 'icon-file-pdf' : _ref$testId,
|
|
2350
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2377
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$12);
|
|
2351
2378
|
|
|
2352
2379
|
return React__default.createElement("svg", Object.assign({
|
|
2353
2380
|
viewBox: "0 0 20 20",
|
|
@@ -2370,11 +2397,11 @@ var IconFilePdf = forwardRef(function (_ref, ref) {
|
|
|
2370
2397
|
});
|
|
2371
2398
|
IconFilePdf.displayName = 'IconFilePdf';
|
|
2372
2399
|
|
|
2373
|
-
var _excluded$
|
|
2400
|
+
var _excluded$13 = ["testId"];
|
|
2374
2401
|
var IconFile = forwardRef(function (_ref, ref) {
|
|
2375
2402
|
var _ref$testId = _ref.testId,
|
|
2376
2403
|
testId = _ref$testId === void 0 ? 'icon-file' : _ref$testId,
|
|
2377
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2404
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$13);
|
|
2378
2405
|
|
|
2379
2406
|
return React__default.createElement("svg", Object.assign({
|
|
2380
2407
|
viewBox: "0 0 20 20",
|
|
@@ -2397,11 +2424,11 @@ var IconFile = forwardRef(function (_ref, ref) {
|
|
|
2397
2424
|
});
|
|
2398
2425
|
IconFile.displayName = 'IconFile';
|
|
2399
2426
|
|
|
2400
|
-
var _excluded$
|
|
2427
|
+
var _excluded$14 = ["testId"];
|
|
2401
2428
|
var IconFlag = forwardRef(function (_ref, ref) {
|
|
2402
2429
|
var _ref$testId = _ref.testId,
|
|
2403
2430
|
testId = _ref$testId === void 0 ? 'icon-flag' : _ref$testId,
|
|
2404
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2431
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$14);
|
|
2405
2432
|
|
|
2406
2433
|
return React__default.createElement("svg", Object.assign({
|
|
2407
2434
|
viewBox: "0 0 20 20",
|
|
@@ -2424,11 +2451,11 @@ var IconFlag = forwardRef(function (_ref, ref) {
|
|
|
2424
2451
|
});
|
|
2425
2452
|
IconFlag.displayName = 'IconFlag';
|
|
2426
2453
|
|
|
2427
|
-
var _excluded$
|
|
2454
|
+
var _excluded$15 = ["testId"];
|
|
2428
2455
|
var IconFourDotsCircle = forwardRef(function (_ref, ref) {
|
|
2429
2456
|
var _ref$testId = _ref.testId,
|
|
2430
2457
|
testId = _ref$testId === void 0 ? 'icon-four-dots-circle' : _ref$testId,
|
|
2431
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2458
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$15);
|
|
2432
2459
|
|
|
2433
2460
|
return React__default.createElement("svg", Object.assign({
|
|
2434
2461
|
viewBox: "0 0 20 20",
|
|
@@ -2446,11 +2473,11 @@ var IconFourDotsCircle = forwardRef(function (_ref, ref) {
|
|
|
2446
2473
|
});
|
|
2447
2474
|
IconFourDotsCircle.displayName = 'IconFourDotsCircle';
|
|
2448
2475
|
|
|
2449
|
-
var _excluded$
|
|
2476
|
+
var _excluded$16 = ["testId"];
|
|
2450
2477
|
var IconFourSquares = forwardRef(function (_ref, ref) {
|
|
2451
2478
|
var _ref$testId = _ref.testId,
|
|
2452
2479
|
testId = _ref$testId === void 0 ? 'icon-four-squares' : _ref$testId,
|
|
2453
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2480
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$16);
|
|
2454
2481
|
|
|
2455
2482
|
return React__default.createElement("svg", Object.assign({
|
|
2456
2483
|
viewBox: "0 0 20 20",
|
|
@@ -2491,11 +2518,11 @@ var IconFourSquares = forwardRef(function (_ref, ref) {
|
|
|
2491
2518
|
});
|
|
2492
2519
|
IconFourSquares.displayName = 'IconFourSquares';
|
|
2493
2520
|
|
|
2494
|
-
var _excluded$
|
|
2521
|
+
var _excluded$17 = ["testId"];
|
|
2495
2522
|
var IconGavel = forwardRef(function (_ref, ref) {
|
|
2496
2523
|
var _ref$testId = _ref.testId,
|
|
2497
2524
|
testId = _ref$testId === void 0 ? 'icon-gavel' : _ref$testId,
|
|
2498
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2525
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$17);
|
|
2499
2526
|
|
|
2500
2527
|
return React__default.createElement("svg", Object.assign({
|
|
2501
2528
|
viewBox: "0 0 60 60",
|
|
@@ -2511,11 +2538,11 @@ var IconGavel = forwardRef(function (_ref, ref) {
|
|
|
2511
2538
|
});
|
|
2512
2539
|
IconGavel.displayName = 'IconGavel';
|
|
2513
2540
|
|
|
2514
|
-
var _excluded$
|
|
2541
|
+
var _excluded$18 = ["testId"];
|
|
2515
2542
|
var IconGif = forwardRef(function (_ref, ref) {
|
|
2516
2543
|
var _ref$testId = _ref.testId,
|
|
2517
2544
|
testId = _ref$testId === void 0 ? 'icon-gif' : _ref$testId,
|
|
2518
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2545
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$18);
|
|
2519
2546
|
|
|
2520
2547
|
return React__default.createElement("svg", Object.assign({
|
|
2521
2548
|
viewBox: "0 0 20 20",
|
|
@@ -2535,11 +2562,11 @@ var IconGif = forwardRef(function (_ref, ref) {
|
|
|
2535
2562
|
});
|
|
2536
2563
|
IconGif.displayName = 'IconGif';
|
|
2537
2564
|
|
|
2538
|
-
var _excluded$
|
|
2565
|
+
var _excluded$19 = ["testId"];
|
|
2539
2566
|
var IconGift = forwardRef(function (_ref, ref) {
|
|
2540
2567
|
var _ref$testId = _ref.testId,
|
|
2541
2568
|
testId = _ref$testId === void 0 ? 'icon-gift' : _ref$testId,
|
|
2542
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2569
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$19);
|
|
2543
2570
|
|
|
2544
2571
|
return React__default.createElement("svg", Object.assign({
|
|
2545
2572
|
viewBox: "0 0 20 20",
|
|
@@ -2555,11 +2582,11 @@ var IconGift = forwardRef(function (_ref, ref) {
|
|
|
2555
2582
|
});
|
|
2556
2583
|
IconGift.displayName = 'IconGift';
|
|
2557
2584
|
|
|
2558
|
-
var _excluded$
|
|
2585
|
+
var _excluded$1a = ["testId"];
|
|
2559
2586
|
var IconGoodMonochromatic = forwardRef(function (_ref, ref) {
|
|
2560
2587
|
var _ref$testId = _ref.testId,
|
|
2561
2588
|
testId = _ref$testId === void 0 ? 'icon-good-monochromatic' : _ref$testId,
|
|
2562
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2589
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
|
|
2563
2590
|
|
|
2564
2591
|
return React__default.createElement("svg", Object.assign({
|
|
2565
2592
|
viewBox: "0 0 20 20",
|
|
@@ -2593,11 +2620,11 @@ var IconGoodMonochromatic = forwardRef(function (_ref, ref) {
|
|
|
2593
2620
|
});
|
|
2594
2621
|
IconGoodMonochromatic.displayName = 'IconGoodMonochromatic';
|
|
2595
2622
|
|
|
2596
|
-
var _excluded$
|
|
2623
|
+
var _excluded$1b = ["testId"];
|
|
2597
2624
|
var IconGood = forwardRef(function (_ref, ref) {
|
|
2598
2625
|
var _ref$testId = _ref.testId,
|
|
2599
2626
|
testId = _ref$testId === void 0 ? 'icon-good' : _ref$testId,
|
|
2600
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2627
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1b);
|
|
2601
2628
|
|
|
2602
2629
|
return React__default.createElement("svg", Object.assign({
|
|
2603
2630
|
viewBox: "0 0 20 20",
|
|
@@ -2619,11 +2646,11 @@ var IconGood = forwardRef(function (_ref, ref) {
|
|
|
2619
2646
|
});
|
|
2620
2647
|
IconGood.displayName = 'IconGood';
|
|
2621
2648
|
|
|
2622
|
-
var _excluded$
|
|
2649
|
+
var _excluded$1c = ["testId"];
|
|
2623
2650
|
var IconGreatMonochromatic = forwardRef(function (_ref, ref) {
|
|
2624
2651
|
var _ref$testId = _ref.testId,
|
|
2625
2652
|
testId = _ref$testId === void 0 ? 'icon-great-monochromatic' : _ref$testId,
|
|
2626
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2653
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1c);
|
|
2627
2654
|
|
|
2628
2655
|
return React__default.createElement("svg", Object.assign({
|
|
2629
2656
|
viewBox: "0 0 20 20",
|
|
@@ -2659,11 +2686,11 @@ var IconGreatMonochromatic = forwardRef(function (_ref, ref) {
|
|
|
2659
2686
|
});
|
|
2660
2687
|
IconGreatMonochromatic.displayName = 'IconGreatMonochromatic';
|
|
2661
2688
|
|
|
2662
|
-
var _excluded$
|
|
2689
|
+
var _excluded$1d = ["testId"];
|
|
2663
2690
|
var IconGreat = forwardRef(function (_ref, ref) {
|
|
2664
2691
|
var _ref$testId = _ref.testId,
|
|
2665
2692
|
testId = _ref$testId === void 0 ? 'icon-great' : _ref$testId,
|
|
2666
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2693
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1d);
|
|
2667
2694
|
|
|
2668
2695
|
return React__default.createElement("svg", Object.assign({
|
|
2669
2696
|
viewBox: "0 0 20 20",
|
|
@@ -2687,11 +2714,11 @@ var IconGreat = forwardRef(function (_ref, ref) {
|
|
|
2687
2714
|
});
|
|
2688
2715
|
IconGreat.displayName = 'IconGreat';
|
|
2689
2716
|
|
|
2690
|
-
var _excluded$
|
|
2717
|
+
var _excluded$1e = ["testId"];
|
|
2691
2718
|
var IconGrinBeam = forwardRef(function (_ref, ref) {
|
|
2692
2719
|
var _ref$testId = _ref.testId,
|
|
2693
2720
|
testId = _ref$testId === void 0 ? 'icon-grin-beam' : _ref$testId,
|
|
2694
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2721
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1e);
|
|
2695
2722
|
|
|
2696
2723
|
return React__default.createElement("svg", Object.assign({
|
|
2697
2724
|
viewBox: "0 0 20 20",
|
|
@@ -2707,11 +2734,11 @@ var IconGrinBeam = forwardRef(function (_ref, ref) {
|
|
|
2707
2734
|
});
|
|
2708
2735
|
IconGrinBeam.displayName = 'IconGrinBeam';
|
|
2709
2736
|
|
|
2710
|
-
var _excluded$
|
|
2737
|
+
var _excluded$1f = ["testId"];
|
|
2711
2738
|
var IconGripVertical = forwardRef(function (_ref, ref) {
|
|
2712
2739
|
var _ref$testId = _ref.testId,
|
|
2713
2740
|
testId = _ref$testId === void 0 ? 'icon-grip-vertical' : _ref$testId,
|
|
2714
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2741
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1f);
|
|
2715
2742
|
|
|
2716
2743
|
return React__default.createElement("svg", Object.assign({
|
|
2717
2744
|
viewBox: "0 0 20 20",
|
|
@@ -2754,11 +2781,11 @@ var IconGripVertical = forwardRef(function (_ref, ref) {
|
|
|
2754
2781
|
});
|
|
2755
2782
|
IconGripVertical.displayName = 'IconGripVertical';
|
|
2756
2783
|
|
|
2757
|
-
var _excluded$
|
|
2784
|
+
var _excluded$1g = ["testId"];
|
|
2758
2785
|
var IconHandshake = forwardRef(function (_ref, ref) {
|
|
2759
2786
|
var _ref$testId = _ref.testId,
|
|
2760
2787
|
testId = _ref$testId === void 0 ? 'icon-handshake' : _ref$testId,
|
|
2761
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2788
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1g);
|
|
2762
2789
|
|
|
2763
2790
|
return React__default.createElement("svg", Object.assign({
|
|
2764
2791
|
viewBox: "0 0 20 20",
|
|
@@ -2782,11 +2809,11 @@ var IconHandshake = forwardRef(function (_ref, ref) {
|
|
|
2782
2809
|
});
|
|
2783
2810
|
IconHandshake.displayName = 'IconHandshake';
|
|
2784
2811
|
|
|
2785
|
-
var _excluded$
|
|
2812
|
+
var _excluded$1h = ["testId"];
|
|
2786
2813
|
var IconImage = forwardRef(function (_ref, ref) {
|
|
2787
2814
|
var _ref$testId = _ref.testId,
|
|
2788
2815
|
testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
|
|
2789
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2816
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
|
|
2790
2817
|
|
|
2791
2818
|
return React__default.createElement("svg", Object.assign({
|
|
2792
2819
|
viewBox: "0 0 20 20",
|
|
@@ -2809,11 +2836,11 @@ var IconImage = forwardRef(function (_ref, ref) {
|
|
|
2809
2836
|
});
|
|
2810
2837
|
IconImage.displayName = 'IconImage';
|
|
2811
2838
|
|
|
2812
|
-
var _excluded$
|
|
2839
|
+
var _excluded$1i = ["testId"];
|
|
2813
2840
|
var IconIslandTropical = forwardRef(function (_ref, ref) {
|
|
2814
2841
|
var _ref$testId = _ref.testId,
|
|
2815
2842
|
testId = _ref$testId === void 0 ? 'icon-island-tropical' : _ref$testId,
|
|
2816
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2843
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1i);
|
|
2817
2844
|
|
|
2818
2845
|
return React__default.createElement("svg", Object.assign({
|
|
2819
2846
|
viewBox: "0 0 20 20",
|
|
@@ -2831,11 +2858,11 @@ var IconIslandTropical = forwardRef(function (_ref, ref) {
|
|
|
2831
2858
|
});
|
|
2832
2859
|
IconIslandTropical.displayName = 'IconIslandTropical';
|
|
2833
2860
|
|
|
2834
|
-
var _excluded$
|
|
2861
|
+
var _excluded$1j = ["testId"];
|
|
2835
2862
|
var IconItalic = forwardRef(function (_ref, ref) {
|
|
2836
2863
|
var _ref$testId = _ref.testId,
|
|
2837
2864
|
testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
|
|
2838
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2865
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1j);
|
|
2839
2866
|
|
|
2840
2867
|
return React__default.createElement("svg", Object.assign({
|
|
2841
2868
|
viewBox: "0 0 20 20",
|
|
@@ -2851,11 +2878,11 @@ var IconItalic = forwardRef(function (_ref, ref) {
|
|
|
2851
2878
|
});
|
|
2852
2879
|
IconItalic.displayName = 'IconItalic';
|
|
2853
2880
|
|
|
2854
|
-
var _excluded$
|
|
2881
|
+
var _excluded$1k = ["testId"];
|
|
2855
2882
|
var IconLaptopSearch = forwardRef(function (_ref, ref) {
|
|
2856
2883
|
var _ref$testId = _ref.testId,
|
|
2857
2884
|
testId = _ref$testId === void 0 ? 'icon-laptop-search' : _ref$testId,
|
|
2858
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2885
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1k);
|
|
2859
2886
|
|
|
2860
2887
|
return React__default.createElement("svg", Object.assign({
|
|
2861
2888
|
viewBox: "0 0 20 20",
|
|
@@ -2880,11 +2907,11 @@ var IconLaptopSearch = forwardRef(function (_ref, ref) {
|
|
|
2880
2907
|
});
|
|
2881
2908
|
IconLaptopSearch.displayName = 'IconLaptopSearch';
|
|
2882
2909
|
|
|
2883
|
-
var _excluded$
|
|
2910
|
+
var _excluded$1l = ["testId"];
|
|
2884
2911
|
var IconLink = forwardRef(function (_ref, ref) {
|
|
2885
2912
|
var _ref$testId = _ref.testId,
|
|
2886
2913
|
testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
|
|
2887
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2914
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
|
|
2888
2915
|
|
|
2889
2916
|
return React__default.createElement("svg", Object.assign({
|
|
2890
2917
|
viewBox: "0 0 20 20",
|
|
@@ -2907,11 +2934,11 @@ var IconLink = forwardRef(function (_ref, ref) {
|
|
|
2907
2934
|
});
|
|
2908
2935
|
IconLink.displayName = 'IconLink';
|
|
2909
2936
|
|
|
2910
|
-
var _excluded$
|
|
2937
|
+
var _excluded$1m = ["testId"];
|
|
2911
2938
|
var IconListOI = forwardRef(function (_ref, ref) {
|
|
2912
2939
|
var _ref$testId = _ref.testId,
|
|
2913
2940
|
testId = _ref$testId === void 0 ? 'icon-list-o-i' : _ref$testId,
|
|
2914
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2941
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
|
|
2915
2942
|
|
|
2916
2943
|
return React__default.createElement("svg", Object.assign({
|
|
2917
2944
|
viewBox: "0 0 20 20",
|
|
@@ -2934,11 +2961,11 @@ var IconListOI = forwardRef(function (_ref, ref) {
|
|
|
2934
2961
|
});
|
|
2935
2962
|
IconListOI.displayName = 'IconListOI';
|
|
2936
2963
|
|
|
2937
|
-
var _excluded$
|
|
2964
|
+
var _excluded$1n = ["testId"];
|
|
2938
2965
|
var IconList = forwardRef(function (_ref, ref) {
|
|
2939
2966
|
var _ref$testId = _ref.testId,
|
|
2940
2967
|
testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
|
|
2941
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2968
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
|
|
2942
2969
|
|
|
2943
2970
|
return React__default.createElement("svg", Object.assign({
|
|
2944
2971
|
viewBox: "0 0 20 20",
|
|
@@ -2954,11 +2981,11 @@ var IconList = forwardRef(function (_ref, ref) {
|
|
|
2954
2981
|
});
|
|
2955
2982
|
IconList.displayName = 'IconList';
|
|
2956
2983
|
|
|
2957
|
-
var _excluded$
|
|
2984
|
+
var _excluded$1o = ["testId"];
|
|
2958
2985
|
var IconLock = forwardRef(function (_ref, ref) {
|
|
2959
2986
|
var _ref$testId = _ref.testId,
|
|
2960
2987
|
testId = _ref$testId === void 0 ? 'icon-lock' : _ref$testId,
|
|
2961
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2988
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
|
|
2962
2989
|
|
|
2963
2990
|
return React__default.createElement("svg", Object.assign({
|
|
2964
2991
|
viewBox: "0 0 20 20",
|
|
@@ -2974,11 +3001,11 @@ var IconLock = forwardRef(function (_ref, ref) {
|
|
|
2974
3001
|
});
|
|
2975
3002
|
IconLock.displayName = 'IconLock';
|
|
2976
3003
|
|
|
2977
|
-
var _excluded$
|
|
3004
|
+
var _excluded$1p = ["testId"];
|
|
2978
3005
|
var IconMagicSolid = forwardRef(function (_ref, ref) {
|
|
2979
3006
|
var _ref$testId = _ref.testId,
|
|
2980
3007
|
testId = _ref$testId === void 0 ? 'icon-magic-solid' : _ref$testId,
|
|
2981
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3008
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
|
|
2982
3009
|
|
|
2983
3010
|
return React__default.createElement("svg", Object.assign({
|
|
2984
3011
|
viewBox: "0 0 20 20",
|
|
@@ -2996,11 +3023,11 @@ var IconMagicSolid = forwardRef(function (_ref, ref) {
|
|
|
2996
3023
|
});
|
|
2997
3024
|
IconMagicSolid.displayName = 'IconMagicSolid';
|
|
2998
3025
|
|
|
2999
|
-
var _excluded$
|
|
3026
|
+
var _excluded$1q = ["testId"];
|
|
3000
3027
|
var IconMapMarker = forwardRef(function (_ref, ref) {
|
|
3001
3028
|
var _ref$testId = _ref.testId,
|
|
3002
3029
|
testId = _ref$testId === void 0 ? 'icon-map-marker' : _ref$testId,
|
|
3003
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3030
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
|
|
3004
3031
|
|
|
3005
3032
|
return React__default.createElement("svg", Object.assign({
|
|
3006
3033
|
viewBox: "0 0 20 20",
|
|
@@ -3018,11 +3045,11 @@ var IconMapMarker = forwardRef(function (_ref, ref) {
|
|
|
3018
3045
|
});
|
|
3019
3046
|
IconMapMarker.displayName = 'IconMapMarker';
|
|
3020
3047
|
|
|
3021
|
-
var _excluded$
|
|
3048
|
+
var _excluded$1r = ["testId"];
|
|
3022
3049
|
var IconMegaphone = forwardRef(function (_ref, ref) {
|
|
3023
3050
|
var _ref$testId = _ref.testId,
|
|
3024
3051
|
testId = _ref$testId === void 0 ? 'icon-megaphone' : _ref$testId,
|
|
3025
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3052
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
|
|
3026
3053
|
|
|
3027
3054
|
return React__default.createElement("svg", Object.assign({
|
|
3028
3055
|
viewBox: "0 0 20 20",
|
|
@@ -3040,11 +3067,11 @@ var IconMegaphone = forwardRef(function (_ref, ref) {
|
|
|
3040
3067
|
});
|
|
3041
3068
|
IconMegaphone.displayName = 'IconMegaphone';
|
|
3042
3069
|
|
|
3043
|
-
var _excluded$
|
|
3070
|
+
var _excluded$1s = ["testId"];
|
|
3044
3071
|
var IconMessages = forwardRef(function (_ref, ref) {
|
|
3045
3072
|
var _ref$testId = _ref.testId,
|
|
3046
3073
|
testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
|
|
3047
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3074
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
|
|
3048
3075
|
|
|
3049
3076
|
return React__default.createElement("svg", Object.assign({
|
|
3050
3077
|
viewBox: "0 0 20 18",
|
|
@@ -3060,11 +3087,11 @@ var IconMessages = forwardRef(function (_ref, ref) {
|
|
|
3060
3087
|
});
|
|
3061
3088
|
IconMessages.displayName = 'IconMessages';
|
|
3062
3089
|
|
|
3063
|
-
var _excluded$
|
|
3090
|
+
var _excluded$1t = ["testId"];
|
|
3064
3091
|
var IconMinusCircle = forwardRef(function (_ref, ref) {
|
|
3065
3092
|
var _ref$testId = _ref.testId,
|
|
3066
3093
|
testId = _ref$testId === void 0 ? 'icon-minus-circle' : _ref$testId,
|
|
3067
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3094
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
|
|
3068
3095
|
|
|
3069
3096
|
return React__default.createElement("svg", Object.assign({
|
|
3070
3097
|
viewBox: "0 0 20 20",
|
|
@@ -3080,11 +3107,11 @@ var IconMinusCircle = forwardRef(function (_ref, ref) {
|
|
|
3080
3107
|
});
|
|
3081
3108
|
IconMinusCircle.displayName = 'IconMinusCircle';
|
|
3082
3109
|
|
|
3083
|
-
var _excluded$
|
|
3110
|
+
var _excluded$1u = ["testId"];
|
|
3084
3111
|
var IconMinus = forwardRef(function (_ref, ref) {
|
|
3085
3112
|
var _ref$testId = _ref.testId,
|
|
3086
3113
|
testId = _ref$testId === void 0 ? 'icon-minus' : _ref$testId,
|
|
3087
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3114
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
|
|
3088
3115
|
|
|
3089
3116
|
return React__default.createElement("svg", Object.assign({
|
|
3090
3117
|
viewBox: "0 0 20 20",
|
|
@@ -3100,11 +3127,11 @@ var IconMinus = forwardRef(function (_ref, ref) {
|
|
|
3100
3127
|
});
|
|
3101
3128
|
IconMinus.displayName = 'IconMinus';
|
|
3102
3129
|
|
|
3103
|
-
var _excluded$
|
|
3130
|
+
var _excluded$1v = ["testId"];
|
|
3104
3131
|
var IconMoneyBill = forwardRef(function (_ref, ref) {
|
|
3105
3132
|
var _ref$testId = _ref.testId,
|
|
3106
3133
|
testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
|
|
3107
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3134
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
|
|
3108
3135
|
|
|
3109
3136
|
return React__default.createElement("svg", Object.assign({
|
|
3110
3137
|
viewBox: "0 0 20 20",
|
|
@@ -3120,11 +3147,11 @@ var IconMoneyBill = forwardRef(function (_ref, ref) {
|
|
|
3120
3147
|
});
|
|
3121
3148
|
IconMoneyBill.displayName = 'IconMoneyBill';
|
|
3122
3149
|
|
|
3123
|
-
var _excluded$
|
|
3150
|
+
var _excluded$1w = ["testId"];
|
|
3124
3151
|
var IconMugSaucerSolid = forwardRef(function (_ref, ref) {
|
|
3125
3152
|
var _ref$testId = _ref.testId,
|
|
3126
3153
|
testId = _ref$testId === void 0 ? 'icon-mug-saucer-solid' : _ref$testId,
|
|
3127
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3154
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
|
|
3128
3155
|
|
|
3129
3156
|
return React__default.createElement("svg", Object.assign({
|
|
3130
3157
|
viewBox: "0 0 21 20",
|
|
@@ -3140,11 +3167,11 @@ var IconMugSaucerSolid = forwardRef(function (_ref, ref) {
|
|
|
3140
3167
|
});
|
|
3141
3168
|
IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
|
|
3142
3169
|
|
|
3143
|
-
var _excluded$
|
|
3170
|
+
var _excluded$1x = ["testId"];
|
|
3144
3171
|
var IconNotesMedical = forwardRef(function (_ref, ref) {
|
|
3145
3172
|
var _ref$testId = _ref.testId,
|
|
3146
3173
|
testId = _ref$testId === void 0 ? 'icon-notes-medical' : _ref$testId,
|
|
3147
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3174
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
|
|
3148
3175
|
|
|
3149
3176
|
return React__default.createElement("svg", Object.assign({
|
|
3150
3177
|
viewBox: "0 0 20 20",
|
|
@@ -3160,11 +3187,11 @@ var IconNotesMedical = forwardRef(function (_ref, ref) {
|
|
|
3160
3187
|
});
|
|
3161
3188
|
IconNotesMedical.displayName = 'IconNotesMedical';
|
|
3162
3189
|
|
|
3163
|
-
var _excluded$
|
|
3190
|
+
var _excluded$1y = ["testId"];
|
|
3164
3191
|
var IconOvertime = forwardRef(function (_ref, ref) {
|
|
3165
3192
|
var _ref$testId = _ref.testId,
|
|
3166
3193
|
testId = _ref$testId === void 0 ? 'icon-overtime' : _ref$testId,
|
|
3167
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3194
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
|
|
3168
3195
|
|
|
3169
3196
|
return React__default.createElement("svg", Object.assign({
|
|
3170
3197
|
viewBox: "0 0 21 20",
|
|
@@ -3188,11 +3215,11 @@ var IconOvertime = forwardRef(function (_ref, ref) {
|
|
|
3188
3215
|
});
|
|
3189
3216
|
IconOvertime.displayName = 'IconOvertime';
|
|
3190
3217
|
|
|
3191
|
-
var _excluded$
|
|
3218
|
+
var _excluded$1z = ["testId"];
|
|
3192
3219
|
var IconPaperPlaneClock = forwardRef(function (_ref, ref) {
|
|
3193
3220
|
var _ref$testId = _ref.testId,
|
|
3194
3221
|
testId = _ref$testId === void 0 ? 'icon-paper-plane-clock' : _ref$testId,
|
|
3195
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3222
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
|
|
3196
3223
|
|
|
3197
3224
|
return React__default.createElement("svg", Object.assign({
|
|
3198
3225
|
viewBox: "0 0 20 20",
|
|
@@ -3220,11 +3247,11 @@ var IconPaperPlaneClock = forwardRef(function (_ref, ref) {
|
|
|
3220
3247
|
});
|
|
3221
3248
|
IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
|
|
3222
3249
|
|
|
3223
|
-
var _excluded$
|
|
3250
|
+
var _excluded$1A = ["testId"];
|
|
3224
3251
|
var IconPaperPlane = forwardRef(function (_ref, ref) {
|
|
3225
3252
|
var _ref$testId = _ref.testId,
|
|
3226
3253
|
testId = _ref$testId === void 0 ? 'icon-paper-plane' : _ref$testId,
|
|
3227
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3254
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
|
|
3228
3255
|
|
|
3229
3256
|
return React__default.createElement("svg", Object.assign({
|
|
3230
3257
|
viewBox: "0 0 19 20",
|
|
@@ -3242,11 +3269,11 @@ var IconPaperPlane = forwardRef(function (_ref, ref) {
|
|
|
3242
3269
|
});
|
|
3243
3270
|
IconPaperPlane.displayName = 'IconPaperPlane';
|
|
3244
3271
|
|
|
3245
|
-
var _excluded$
|
|
3272
|
+
var _excluded$1B = ["testId"];
|
|
3246
3273
|
var IconPaperclip = forwardRef(function (_ref, ref) {
|
|
3247
3274
|
var _ref$testId = _ref.testId,
|
|
3248
3275
|
testId = _ref$testId === void 0 ? 'icon-paperclip' : _ref$testId,
|
|
3249
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3276
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
|
|
3250
3277
|
|
|
3251
3278
|
return React__default.createElement("svg", Object.assign({
|
|
3252
3279
|
viewBox: "0 0 20 20",
|
|
@@ -3269,11 +3296,11 @@ var IconPaperclip = forwardRef(function (_ref, ref) {
|
|
|
3269
3296
|
});
|
|
3270
3297
|
IconPaperclip.displayName = 'IconPaperclip';
|
|
3271
3298
|
|
|
3272
|
-
var _excluded$
|
|
3299
|
+
var _excluded$1C = ["testId"];
|
|
3273
3300
|
var IconPencil = forwardRef(function (_ref, ref) {
|
|
3274
3301
|
var _ref$testId = _ref.testId,
|
|
3275
3302
|
testId = _ref$testId === void 0 ? 'icon-pencil' : _ref$testId,
|
|
3276
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3303
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
|
|
3277
3304
|
|
|
3278
3305
|
return React__default.createElement("svg", Object.assign({
|
|
3279
3306
|
viewBox: "0 0 20 20",
|
|
@@ -3291,11 +3318,11 @@ var IconPencil = forwardRef(function (_ref, ref) {
|
|
|
3291
3318
|
});
|
|
3292
3319
|
IconPencil.displayName = 'IconPencil';
|
|
3293
3320
|
|
|
3294
|
-
var _excluded$
|
|
3321
|
+
var _excluded$1D = ["testId"];
|
|
3295
3322
|
var IconPercentage = forwardRef(function (_ref, ref) {
|
|
3296
3323
|
var _ref$testId = _ref.testId,
|
|
3297
3324
|
testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
|
|
3298
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3325
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
|
|
3299
3326
|
|
|
3300
3327
|
return React__default.createElement("svg", Object.assign({
|
|
3301
3328
|
viewBox: "0 0 20 20",
|
|
@@ -3311,11 +3338,11 @@ var IconPercentage = forwardRef(function (_ref, ref) {
|
|
|
3311
3338
|
});
|
|
3312
3339
|
IconPercentage.displayName = 'IconPercentage';
|
|
3313
3340
|
|
|
3314
|
-
var _excluded$
|
|
3341
|
+
var _excluded$1E = ["testId"];
|
|
3315
3342
|
var IconPhone = forwardRef(function (_ref, ref) {
|
|
3316
3343
|
var _ref$testId = _ref.testId,
|
|
3317
3344
|
testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
|
|
3318
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3345
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
|
|
3319
3346
|
|
|
3320
3347
|
return React__default.createElement("svg", Object.assign({
|
|
3321
3348
|
viewBox: "0 0 20 20",
|
|
@@ -3331,11 +3358,11 @@ var IconPhone = forwardRef(function (_ref, ref) {
|
|
|
3331
3358
|
});
|
|
3332
3359
|
IconPhone.displayName = 'IconPhone';
|
|
3333
3360
|
|
|
3334
|
-
var _excluded$
|
|
3361
|
+
var _excluded$1F = ["testId"];
|
|
3335
3362
|
var IconPlug = forwardRef(function (_ref, ref) {
|
|
3336
3363
|
var _ref$testId = _ref.testId,
|
|
3337
3364
|
testId = _ref$testId === void 0 ? 'icon-plug' : _ref$testId,
|
|
3338
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3365
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
|
|
3339
3366
|
|
|
3340
3367
|
return React__default.createElement("svg", Object.assign({
|
|
3341
3368
|
viewBox: "0 0 20 20",
|
|
@@ -3353,11 +3380,11 @@ var IconPlug = forwardRef(function (_ref, ref) {
|
|
|
3353
3380
|
});
|
|
3354
3381
|
IconPlug.displayName = 'IconPlug';
|
|
3355
3382
|
|
|
3356
|
-
var _excluded$
|
|
3383
|
+
var _excluded$1G = ["testId"];
|
|
3357
3384
|
var IconPlus = forwardRef(function (_ref, ref) {
|
|
3358
3385
|
var _ref$testId = _ref.testId,
|
|
3359
3386
|
testId = _ref$testId === void 0 ? 'icon-plus' : _ref$testId,
|
|
3360
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3387
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
|
|
3361
3388
|
|
|
3362
3389
|
return React__default.createElement("svg", Object.assign({
|
|
3363
3390
|
viewBox: "0 0 20 20",
|
|
@@ -3375,11 +3402,11 @@ var IconPlus = forwardRef(function (_ref, ref) {
|
|
|
3375
3402
|
});
|
|
3376
3403
|
IconPlus.displayName = 'IconPlus';
|
|
3377
3404
|
|
|
3378
|
-
var _excluded$
|
|
3405
|
+
var _excluded$1H = ["testId"];
|
|
3379
3406
|
var IconPrint = forwardRef(function (_ref, ref) {
|
|
3380
3407
|
var _ref$testId = _ref.testId,
|
|
3381
3408
|
testId = _ref$testId === void 0 ? 'icon-print' : _ref$testId,
|
|
3382
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3409
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
|
|
3383
3410
|
|
|
3384
3411
|
return React__default.createElement("svg", Object.assign({
|
|
3385
3412
|
viewBox: "0 0 20 20",
|
|
@@ -3397,11 +3424,11 @@ var IconPrint = forwardRef(function (_ref, ref) {
|
|
|
3397
3424
|
});
|
|
3398
3425
|
IconPrint.displayName = 'IconPrint';
|
|
3399
3426
|
|
|
3400
|
-
var _excluded$
|
|
3427
|
+
var _excluded$1I = ["testId"];
|
|
3401
3428
|
var IconQuestionCircle = forwardRef(function (_ref, ref) {
|
|
3402
3429
|
var _ref$testId = _ref.testId,
|
|
3403
3430
|
testId = _ref$testId === void 0 ? 'icon-question-circle' : _ref$testId,
|
|
3404
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3431
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
|
|
3405
3432
|
|
|
3406
3433
|
return React__default.createElement("svg", Object.assign({
|
|
3407
3434
|
viewBox: "0 0 20 20",
|
|
@@ -3417,11 +3444,11 @@ var IconQuestionCircle = forwardRef(function (_ref, ref) {
|
|
|
3417
3444
|
});
|
|
3418
3445
|
IconQuestionCircle.displayName = 'IconQuestionCircle';
|
|
3419
3446
|
|
|
3420
|
-
var _excluded$
|
|
3447
|
+
var _excluded$1J = ["testId"];
|
|
3421
3448
|
var IconRepeat = forwardRef(function (_ref, ref) {
|
|
3422
3449
|
var _ref$testId = _ref.testId,
|
|
3423
3450
|
testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
|
|
3424
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3451
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
|
|
3425
3452
|
|
|
3426
3453
|
return React__default.createElement("svg", Object.assign({
|
|
3427
3454
|
viewBox: "0 0 20 20",
|
|
@@ -3437,11 +3464,11 @@ var IconRepeat = forwardRef(function (_ref, ref) {
|
|
|
3437
3464
|
});
|
|
3438
3465
|
IconRepeat.displayName = 'IconRepeat';
|
|
3439
3466
|
|
|
3440
|
-
var _excluded$
|
|
3467
|
+
var _excluded$1K = ["testId"];
|
|
3441
3468
|
var IconReply = forwardRef(function (_ref, ref) {
|
|
3442
3469
|
var _ref$testId = _ref.testId,
|
|
3443
3470
|
testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
|
|
3444
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3471
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
|
|
3445
3472
|
|
|
3446
3473
|
return React__default.createElement("svg", Object.assign({
|
|
3447
3474
|
viewBox: "0 0 20 20",
|
|
@@ -3457,11 +3484,11 @@ var IconReply = forwardRef(function (_ref, ref) {
|
|
|
3457
3484
|
});
|
|
3458
3485
|
IconReply.displayName = 'IconReply';
|
|
3459
3486
|
|
|
3460
|
-
var _excluded$
|
|
3487
|
+
var _excluded$1L = ["testId"];
|
|
3461
3488
|
var IconSearch = forwardRef(function (_ref, ref) {
|
|
3462
3489
|
var _ref$testId = _ref.testId,
|
|
3463
3490
|
testId = _ref$testId === void 0 ? 'icon-search' : _ref$testId,
|
|
3464
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3491
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
|
|
3465
3492
|
|
|
3466
3493
|
return React__default.createElement("svg", Object.assign({
|
|
3467
3494
|
viewBox: "0 0 20 20",
|
|
@@ -3479,11 +3506,11 @@ var IconSearch = forwardRef(function (_ref, ref) {
|
|
|
3479
3506
|
});
|
|
3480
3507
|
IconSearch.displayName = 'IconSearch';
|
|
3481
3508
|
|
|
3482
|
-
var _excluded$
|
|
3509
|
+
var _excluded$1M = ["testId"];
|
|
3483
3510
|
var IconSignOut = forwardRef(function (_ref, ref) {
|
|
3484
3511
|
var _ref$testId = _ref.testId,
|
|
3485
3512
|
testId = _ref$testId === void 0 ? 'icon-sign-out' : _ref$testId,
|
|
3486
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3513
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
|
|
3487
3514
|
|
|
3488
3515
|
return React__default.createElement("svg", Object.assign({
|
|
3489
3516
|
viewBox: "0 0 20 20",
|
|
@@ -3499,11 +3526,11 @@ var IconSignOut = forwardRef(function (_ref, ref) {
|
|
|
3499
3526
|
});
|
|
3500
3527
|
IconSignOut.displayName = 'IconSignOut';
|
|
3501
3528
|
|
|
3502
|
-
var _excluded$
|
|
3529
|
+
var _excluded$1N = ["testId"];
|
|
3503
3530
|
var IconSitemap = forwardRef(function (_ref, ref) {
|
|
3504
3531
|
var _ref$testId = _ref.testId,
|
|
3505
3532
|
testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
|
|
3506
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3533
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
|
|
3507
3534
|
|
|
3508
3535
|
return React__default.createElement("svg", Object.assign({
|
|
3509
3536
|
viewBox: "0 0 20 20",
|
|
@@ -3521,11 +3548,11 @@ var IconSitemap = forwardRef(function (_ref, ref) {
|
|
|
3521
3548
|
});
|
|
3522
3549
|
IconSitemap.displayName = 'IconSitemap';
|
|
3523
3550
|
|
|
3524
|
-
var _excluded$
|
|
3551
|
+
var _excluded$1O = ["testId"];
|
|
3525
3552
|
var IconSlidersH = forwardRef(function (_ref, ref) {
|
|
3526
3553
|
var _ref$testId = _ref.testId,
|
|
3527
3554
|
testId = _ref$testId === void 0 ? 'icon-sliders-h' : _ref$testId,
|
|
3528
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3555
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
|
|
3529
3556
|
|
|
3530
3557
|
return React__default.createElement("svg", Object.assign({
|
|
3531
3558
|
viewBox: "0 0 20 20",
|
|
@@ -3548,11 +3575,11 @@ var IconSlidersH = forwardRef(function (_ref, ref) {
|
|
|
3548
3575
|
});
|
|
3549
3576
|
IconSlidersH.displayName = 'IconSlidersH';
|
|
3550
3577
|
|
|
3551
|
-
var _excluded$
|
|
3578
|
+
var _excluded$1P = ["testId"];
|
|
3552
3579
|
var IconSort = forwardRef(function (_ref, ref) {
|
|
3553
3580
|
var _ref$testId = _ref.testId,
|
|
3554
3581
|
testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
|
|
3555
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3582
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
|
|
3556
3583
|
|
|
3557
3584
|
return React__default.createElement("svg", Object.assign({
|
|
3558
3585
|
viewBox: "0 0 20 20",
|
|
@@ -3568,11 +3595,11 @@ var IconSort = forwardRef(function (_ref, ref) {
|
|
|
3568
3595
|
});
|
|
3569
3596
|
IconSort.displayName = 'IconSort';
|
|
3570
3597
|
|
|
3571
|
-
var _excluded$
|
|
3598
|
+
var _excluded$1Q = ["testId"];
|
|
3572
3599
|
var IconStarSolid = forwardRef(function (_ref, ref) {
|
|
3573
3600
|
var _ref$testId = _ref.testId,
|
|
3574
3601
|
testId = _ref$testId === void 0 ? 'icon-star-solid' : _ref$testId,
|
|
3575
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3602
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
|
|
3576
3603
|
|
|
3577
3604
|
return React__default.createElement("svg", Object.assign({
|
|
3578
3605
|
viewBox: "0 0 20 20",
|
|
@@ -3588,11 +3615,11 @@ var IconStarSolid = forwardRef(function (_ref, ref) {
|
|
|
3588
3615
|
});
|
|
3589
3616
|
IconStarSolid.displayName = 'IconStarSolid';
|
|
3590
3617
|
|
|
3591
|
-
var _excluded$
|
|
3618
|
+
var _excluded$1R = ["testId"];
|
|
3592
3619
|
var IconStar = forwardRef(function (_ref, ref) {
|
|
3593
3620
|
var _ref$testId = _ref.testId,
|
|
3594
3621
|
testId = _ref$testId === void 0 ? 'icon-star' : _ref$testId,
|
|
3595
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3622
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
|
|
3596
3623
|
|
|
3597
3624
|
return React__default.createElement("svg", Object.assign({
|
|
3598
3625
|
viewBox: "0 0 20 20",
|
|
@@ -3608,11 +3635,11 @@ var IconStar = forwardRef(function (_ref, ref) {
|
|
|
3608
3635
|
});
|
|
3609
3636
|
IconStar.displayName = 'IconStar';
|
|
3610
3637
|
|
|
3611
|
-
var _excluded$
|
|
3638
|
+
var _excluded$1S = ["testId"];
|
|
3612
3639
|
var IconStickyNoteLines = forwardRef(function (_ref, ref) {
|
|
3613
3640
|
var _ref$testId = _ref.testId,
|
|
3614
3641
|
testId = _ref$testId === void 0 ? 'icon-sticky-note-lines' : _ref$testId,
|
|
3615
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3642
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
|
|
3616
3643
|
|
|
3617
3644
|
return React__default.createElement("svg", Object.assign({
|
|
3618
3645
|
viewBox: "0 0 20 20",
|
|
@@ -3631,11 +3658,11 @@ var IconStickyNoteLines = forwardRef(function (_ref, ref) {
|
|
|
3631
3658
|
});
|
|
3632
3659
|
IconStickyNoteLines.displayName = 'IconStickyNoteLines';
|
|
3633
3660
|
|
|
3634
|
-
var _excluded$
|
|
3661
|
+
var _excluded$1T = ["testId"];
|
|
3635
3662
|
var IconStopwatch = forwardRef(function (_ref, ref) {
|
|
3636
3663
|
var _ref$testId = _ref.testId,
|
|
3637
3664
|
testId = _ref$testId === void 0 ? 'icon-stopwatch' : _ref$testId,
|
|
3638
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3665
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
|
|
3639
3666
|
|
|
3640
3667
|
return React__default.createElement("svg", Object.assign({
|
|
3641
3668
|
viewBox: "0 0 20 20",
|
|
@@ -3653,11 +3680,11 @@ var IconStopwatch = forwardRef(function (_ref, ref) {
|
|
|
3653
3680
|
});
|
|
3654
3681
|
IconStopwatch.displayName = 'IconStopwatch';
|
|
3655
3682
|
|
|
3656
|
-
var _excluded$
|
|
3683
|
+
var _excluded$1U = ["testId"];
|
|
3657
3684
|
var IconStrikethrough = forwardRef(function (_ref, ref) {
|
|
3658
3685
|
var _ref$testId = _ref.testId,
|
|
3659
3686
|
testId = _ref$testId === void 0 ? 'icon-strikethrough' : _ref$testId,
|
|
3660
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3687
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
|
|
3661
3688
|
|
|
3662
3689
|
return React__default.createElement("svg", Object.assign({
|
|
3663
3690
|
viewBox: "0 0 20 20",
|
|
@@ -3680,11 +3707,11 @@ var IconStrikethrough = forwardRef(function (_ref, ref) {
|
|
|
3680
3707
|
});
|
|
3681
3708
|
IconStrikethrough.displayName = 'IconStrikethrough';
|
|
3682
3709
|
|
|
3683
|
-
var _excluded$
|
|
3710
|
+
var _excluded$1V = ["testId"];
|
|
3684
3711
|
var IconSyncExclaimation = forwardRef(function (_ref, ref) {
|
|
3685
3712
|
var _ref$testId = _ref.testId,
|
|
3686
3713
|
testId = _ref$testId === void 0 ? 'icon-sync-exclaimation' : _ref$testId,
|
|
3687
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3714
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
|
|
3688
3715
|
|
|
3689
3716
|
return React__default.createElement("svg", Object.assign({
|
|
3690
3717
|
viewBox: "0 0 20 20",
|
|
@@ -3700,11 +3727,11 @@ var IconSyncExclaimation = forwardRef(function (_ref, ref) {
|
|
|
3700
3727
|
});
|
|
3701
3728
|
IconSyncExclaimation.displayName = 'IconSyncExclaimation';
|
|
3702
3729
|
|
|
3703
|
-
var _excluded$
|
|
3730
|
+
var _excluded$1W = ["testId"];
|
|
3704
3731
|
var IconSync = forwardRef(function (_ref, ref) {
|
|
3705
3732
|
var _ref$testId = _ref.testId,
|
|
3706
3733
|
testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
|
|
3707
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3734
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
|
|
3708
3735
|
|
|
3709
3736
|
return React__default.createElement("svg", Object.assign({
|
|
3710
3737
|
viewBox: "0 0 20 20",
|
|
@@ -3720,11 +3747,11 @@ var IconSync = forwardRef(function (_ref, ref) {
|
|
|
3720
3747
|
});
|
|
3721
3748
|
IconSync.displayName = 'IconSync';
|
|
3722
3749
|
|
|
3723
|
-
var _excluded$
|
|
3750
|
+
var _excluded$1X = ["testId"];
|
|
3724
3751
|
var IconTable = forwardRef(function (_ref, ref) {
|
|
3725
3752
|
var _ref$testId = _ref.testId,
|
|
3726
3753
|
testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
|
|
3727
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3754
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
|
|
3728
3755
|
|
|
3729
3756
|
return React__default.createElement("svg", Object.assign({
|
|
3730
3757
|
viewBox: "0 0 20 20",
|
|
@@ -3747,11 +3774,11 @@ var IconTable = forwardRef(function (_ref, ref) {
|
|
|
3747
3774
|
});
|
|
3748
3775
|
IconTable.displayName = 'IconTable';
|
|
3749
3776
|
|
|
3750
|
-
var _excluded$
|
|
3777
|
+
var _excluded$1Y = ["testId"];
|
|
3751
3778
|
var IconTachometer = forwardRef(function (_ref, ref) {
|
|
3752
3779
|
var _ref$testId = _ref.testId,
|
|
3753
3780
|
testId = _ref$testId === void 0 ? 'icon-tachometer' : _ref$testId,
|
|
3754
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3781
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
|
|
3755
3782
|
|
|
3756
3783
|
return React__default.createElement("svg", Object.assign({
|
|
3757
3784
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3766,11 +3793,11 @@ var IconTachometer = forwardRef(function (_ref, ref) {
|
|
|
3766
3793
|
});
|
|
3767
3794
|
IconTachometer.displayName = 'IconTachometer';
|
|
3768
3795
|
|
|
3769
|
-
var _excluded$
|
|
3796
|
+
var _excluded$1Z = ["testId"];
|
|
3770
3797
|
var IconTimesOctagon = forwardRef(function (_ref, ref) {
|
|
3771
3798
|
var _ref$testId = _ref.testId,
|
|
3772
3799
|
testId = _ref$testId === void 0 ? 'icon-times-octagon' : _ref$testId,
|
|
3773
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3800
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
|
|
3774
3801
|
|
|
3775
3802
|
return React__default.createElement("svg", Object.assign({
|
|
3776
3803
|
viewBox: "0 0 20 20",
|
|
@@ -3788,11 +3815,11 @@ var IconTimesOctagon = forwardRef(function (_ref, ref) {
|
|
|
3788
3815
|
});
|
|
3789
3816
|
IconTimesOctagon.displayName = 'IconTimesOctagon';
|
|
3790
3817
|
|
|
3791
|
-
var _excluded$
|
|
3818
|
+
var _excluded$1_ = ["testId"];
|
|
3792
3819
|
var IconTimes = forwardRef(function (_ref, ref) {
|
|
3793
3820
|
var _ref$testId = _ref.testId,
|
|
3794
3821
|
testId = _ref$testId === void 0 ? 'icon-times' : _ref$testId,
|
|
3795
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3822
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
|
|
3796
3823
|
|
|
3797
3824
|
return React__default.createElement("svg", Object.assign({
|
|
3798
3825
|
viewBox: "0 0 20 20",
|
|
@@ -3810,11 +3837,11 @@ var IconTimes = forwardRef(function (_ref, ref) {
|
|
|
3810
3837
|
});
|
|
3811
3838
|
IconTimes.displayName = 'IconTimes';
|
|
3812
3839
|
|
|
3813
|
-
var _excluded$
|
|
3840
|
+
var _excluded$1$ = ["testId"];
|
|
3814
3841
|
var IconTrash = forwardRef(function (_ref, ref) {
|
|
3815
3842
|
var _ref$testId = _ref.testId,
|
|
3816
3843
|
testId = _ref$testId === void 0 ? 'icon-trash' : _ref$testId,
|
|
3817
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3844
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
|
|
3818
3845
|
|
|
3819
3846
|
return React__default.createElement("svg", Object.assign({
|
|
3820
3847
|
viewBox: "0 0 20 20",
|
|
@@ -3832,11 +3859,11 @@ var IconTrash = forwardRef(function (_ref, ref) {
|
|
|
3832
3859
|
});
|
|
3833
3860
|
IconTrash.displayName = 'IconTrash';
|
|
3834
3861
|
|
|
3835
|
-
var _excluded$
|
|
3862
|
+
var _excluded$20 = ["testId"];
|
|
3836
3863
|
var IconUnderline = forwardRef(function (_ref, ref) {
|
|
3837
3864
|
var _ref$testId = _ref.testId,
|
|
3838
3865
|
testId = _ref$testId === void 0 ? 'icon-underline' : _ref$testId,
|
|
3839
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3866
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
|
|
3840
3867
|
|
|
3841
3868
|
return React__default.createElement("svg", Object.assign({
|
|
3842
3869
|
viewBox: "0 0 20 20",
|
|
@@ -3852,11 +3879,11 @@ var IconUnderline = forwardRef(function (_ref, ref) {
|
|
|
3852
3879
|
});
|
|
3853
3880
|
IconUnderline.displayName = 'IconUnderline';
|
|
3854
3881
|
|
|
3855
|
-
var _excluded$
|
|
3882
|
+
var _excluded$21 = ["testId"];
|
|
3856
3883
|
var IconUndo = forwardRef(function (_ref, ref) {
|
|
3857
3884
|
var _ref$testId = _ref.testId,
|
|
3858
3885
|
testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
|
|
3859
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3886
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
|
|
3860
3887
|
|
|
3861
3888
|
return React__default.createElement("svg", Object.assign({
|
|
3862
3889
|
viewBox: "0 0 20 20",
|
|
@@ -3872,11 +3899,11 @@ var IconUndo = forwardRef(function (_ref, ref) {
|
|
|
3872
3899
|
});
|
|
3873
3900
|
IconUndo.displayName = 'IconUndo';
|
|
3874
3901
|
|
|
3875
|
-
var _excluded$
|
|
3902
|
+
var _excluded$22 = ["testId"];
|
|
3876
3903
|
var IconUniversity = forwardRef(function (_ref, ref) {
|
|
3877
3904
|
var _ref$testId = _ref.testId,
|
|
3878
3905
|
testId = _ref$testId === void 0 ? 'icon-university' : _ref$testId,
|
|
3879
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3906
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
|
|
3880
3907
|
|
|
3881
3908
|
return React__default.createElement("svg", Object.assign({
|
|
3882
3909
|
viewBox: "0 0 20 20",
|
|
@@ -3899,11 +3926,11 @@ var IconUniversity = forwardRef(function (_ref, ref) {
|
|
|
3899
3926
|
});
|
|
3900
3927
|
IconUniversity.displayName = 'IconUniversity';
|
|
3901
3928
|
|
|
3902
|
-
var _excluded$
|
|
3929
|
+
var _excluded$23 = ["testId"];
|
|
3903
3930
|
var IconUserComputer = forwardRef(function (_ref, ref) {
|
|
3904
3931
|
var _ref$testId = _ref.testId,
|
|
3905
3932
|
testId = _ref$testId === void 0 ? 'icon-user-computer' : _ref$testId,
|
|
3906
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3933
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
|
|
3907
3934
|
|
|
3908
3935
|
return React__default.createElement("svg", Object.assign({
|
|
3909
3936
|
viewBox: "0 0 20 20",
|
|
@@ -3930,11 +3957,11 @@ var IconUserComputer = forwardRef(function (_ref, ref) {
|
|
|
3930
3957
|
});
|
|
3931
3958
|
IconUserComputer.displayName = 'IconUserComputer';
|
|
3932
3959
|
|
|
3933
|
-
var _excluded$
|
|
3960
|
+
var _excluded$24 = ["testId"];
|
|
3934
3961
|
var IconUserFriends = forwardRef(function (_ref, ref) {
|
|
3935
3962
|
var _ref$testId = _ref.testId,
|
|
3936
3963
|
testId = _ref$testId === void 0 ? 'icon-user-friends' : _ref$testId,
|
|
3937
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3964
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
|
|
3938
3965
|
|
|
3939
3966
|
return React__default.createElement("svg", Object.assign({
|
|
3940
3967
|
viewBox: "0 0 20 20",
|
|
@@ -3950,11 +3977,11 @@ var IconUserFriends = forwardRef(function (_ref, ref) {
|
|
|
3950
3977
|
});
|
|
3951
3978
|
IconUserFriends.displayName = 'IconUserFriends';
|
|
3952
3979
|
|
|
3953
|
-
var _excluded$
|
|
3980
|
+
var _excluded$25 = ["testId"];
|
|
3954
3981
|
var IconUserLight = forwardRef(function (_ref, ref) {
|
|
3955
3982
|
var _ref$testId = _ref.testId,
|
|
3956
3983
|
testId = _ref$testId === void 0 ? 'icon-user-light' : _ref$testId,
|
|
3957
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3984
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
|
|
3958
3985
|
|
|
3959
3986
|
return React__default.createElement("svg", Object.assign({
|
|
3960
3987
|
viewBox: "0 0 20 20",
|
|
@@ -3972,11 +3999,11 @@ var IconUserLight = forwardRef(function (_ref, ref) {
|
|
|
3972
3999
|
});
|
|
3973
4000
|
IconUserLight.displayName = 'IconUserLight';
|
|
3974
4001
|
|
|
3975
|
-
var _excluded$
|
|
4002
|
+
var _excluded$26 = ["testId"];
|
|
3976
4003
|
var IconUserPlus = forwardRef(function (_ref, ref) {
|
|
3977
4004
|
var _ref$testId = _ref.testId,
|
|
3978
4005
|
testId = _ref$testId === void 0 ? 'icon-user-plus' : _ref$testId,
|
|
3979
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4006
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
|
|
3980
4007
|
|
|
3981
4008
|
return React__default.createElement("svg", Object.assign({
|
|
3982
4009
|
viewBox: "0 0 20 20",
|
|
@@ -3992,11 +4019,11 @@ var IconUserPlus = forwardRef(function (_ref, ref) {
|
|
|
3992
4019
|
});
|
|
3993
4020
|
IconUserPlus.displayName = 'IconUserPlus';
|
|
3994
4021
|
|
|
3995
|
-
var _excluded$
|
|
4022
|
+
var _excluded$27 = ["testId"];
|
|
3996
4023
|
var IconUserSearch = forwardRef(function (_ref, ref) {
|
|
3997
4024
|
var _ref$testId = _ref.testId,
|
|
3998
4025
|
testId = _ref$testId === void 0 ? 'icon-user-search' : _ref$testId,
|
|
3999
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4026
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
|
|
4000
4027
|
|
|
4001
4028
|
return React__default.createElement("svg", Object.assign({
|
|
4002
4029
|
viewBox: "0 0 20 20",
|
|
@@ -4021,11 +4048,11 @@ var IconUserSearch = forwardRef(function (_ref, ref) {
|
|
|
4021
4048
|
});
|
|
4022
4049
|
IconUserSearch.displayName = 'IconUserSearch';
|
|
4023
4050
|
|
|
4024
|
-
var _excluded$
|
|
4051
|
+
var _excluded$28 = ["testId"];
|
|
4025
4052
|
var IconUserSlash = forwardRef(function (_ref, ref) {
|
|
4026
4053
|
var _ref$testId = _ref.testId,
|
|
4027
4054
|
testId = _ref$testId === void 0 ? 'icon-user-slash' : _ref$testId,
|
|
4028
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4055
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
|
|
4029
4056
|
|
|
4030
4057
|
return React__default.createElement("svg", Object.assign({
|
|
4031
4058
|
viewBox: "0 0 20 20",
|
|
@@ -4048,11 +4075,11 @@ var IconUserSlash = forwardRef(function (_ref, ref) {
|
|
|
4048
4075
|
});
|
|
4049
4076
|
IconUserSlash.displayName = 'IconUserSlash';
|
|
4050
4077
|
|
|
4051
|
-
var _excluded$
|
|
4078
|
+
var _excluded$29 = ["testId"];
|
|
4052
4079
|
var IconUserSolid = forwardRef(function (_ref, ref) {
|
|
4053
4080
|
var _ref$testId = _ref.testId,
|
|
4054
4081
|
testId = _ref$testId === void 0 ? 'icon-user-solid' : _ref$testId,
|
|
4055
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4082
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
|
|
4056
4083
|
|
|
4057
4084
|
return React__default.createElement("svg", Object.assign({
|
|
4058
4085
|
viewBox: "0 0 20 20",
|
|
@@ -4068,11 +4095,11 @@ var IconUserSolid = forwardRef(function (_ref, ref) {
|
|
|
4068
4095
|
});
|
|
4069
4096
|
IconUserSolid.displayName = 'IconUserSolid';
|
|
4070
4097
|
|
|
4071
|
-
var _excluded$
|
|
4098
|
+
var _excluded$2a = ["testId"];
|
|
4072
4099
|
var IconUserTag = forwardRef(function (_ref, ref) {
|
|
4073
4100
|
var _ref$testId = _ref.testId,
|
|
4074
4101
|
testId = _ref$testId === void 0 ? 'icon-user-tag' : _ref$testId,
|
|
4075
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4102
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
|
|
4076
4103
|
|
|
4077
4104
|
return React__default.createElement("svg", Object.assign({
|
|
4078
4105
|
viewBox: "0 0 20 20",
|
|
@@ -4090,11 +4117,11 @@ var IconUserTag = forwardRef(function (_ref, ref) {
|
|
|
4090
4117
|
});
|
|
4091
4118
|
IconUserTag.displayName = 'IconUserTag';
|
|
4092
4119
|
|
|
4093
|
-
var _excluded$
|
|
4120
|
+
var _excluded$2b = ["testId"];
|
|
4094
4121
|
var IconUserTie = forwardRef(function (_ref, ref) {
|
|
4095
4122
|
var _ref$testId = _ref.testId,
|
|
4096
4123
|
testId = _ref$testId === void 0 ? 'icon-user-tie' : _ref$testId,
|
|
4097
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4124
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
4098
4125
|
|
|
4099
4126
|
return React__default.createElement("svg", Object.assign({
|
|
4100
4127
|
viewBox: "0 0 20 20",
|
|
@@ -4110,11 +4137,11 @@ var IconUserTie = forwardRef(function (_ref, ref) {
|
|
|
4110
4137
|
});
|
|
4111
4138
|
IconUserTie.displayName = 'IconUserTie';
|
|
4112
4139
|
|
|
4113
|
-
var _excluded$
|
|
4140
|
+
var _excluded$2c = ["testId"];
|
|
4114
4141
|
var IconUsers = forwardRef(function (_ref, ref) {
|
|
4115
4142
|
var _ref$testId = _ref.testId,
|
|
4116
4143
|
testId = _ref$testId === void 0 ? 'icon-users' : _ref$testId,
|
|
4117
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4144
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
|
|
4118
4145
|
|
|
4119
4146
|
return React__default.createElement("svg", Object.assign({
|
|
4120
4147
|
viewBox: "0 0 20 20",
|
|
@@ -4130,11 +4157,11 @@ var IconUsers = forwardRef(function (_ref, ref) {
|
|
|
4130
4157
|
});
|
|
4131
4158
|
IconUsers.displayName = 'IconUsers';
|
|
4132
4159
|
|
|
4133
|
-
var _excluded$
|
|
4160
|
+
var _excluded$2d = ["testId"];
|
|
4134
4161
|
var IconVideo = forwardRef(function (_ref, ref) {
|
|
4135
4162
|
var _ref$testId = _ref.testId,
|
|
4136
4163
|
testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
|
|
4137
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4164
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
4138
4165
|
|
|
4139
4166
|
return React__default.createElement("svg", Object.assign({
|
|
4140
4167
|
viewBox: "0 0 20 20",
|
|
@@ -4150,11 +4177,11 @@ var IconVideo = forwardRef(function (_ref, ref) {
|
|
|
4150
4177
|
});
|
|
4151
4178
|
IconVideo.displayName = 'IconVideo';
|
|
4152
4179
|
|
|
4153
|
-
var _excluded$
|
|
4180
|
+
var _excluded$2e = ["testId"];
|
|
4154
4181
|
var IconVolumeMute = forwardRef(function (_ref, ref) {
|
|
4155
4182
|
var _ref$testId = _ref.testId,
|
|
4156
4183
|
testId = _ref$testId === void 0 ? 'icon-volume-mute' : _ref$testId,
|
|
4157
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4184
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
|
|
4158
4185
|
|
|
4159
4186
|
return React__default.createElement("svg", Object.assign({
|
|
4160
4187
|
viewBox: "0 0 20 20",
|
|
@@ -4170,11 +4197,11 @@ var IconVolumeMute = forwardRef(function (_ref, ref) {
|
|
|
4170
4197
|
});
|
|
4171
4198
|
IconVolumeMute.displayName = 'IconVolumeMute';
|
|
4172
4199
|
|
|
4173
|
-
var _excluded$
|
|
4200
|
+
var _excluded$2f = ["testId"];
|
|
4174
4201
|
var IconVolume = forwardRef(function (_ref, ref) {
|
|
4175
4202
|
var _ref$testId = _ref.testId,
|
|
4176
4203
|
testId = _ref$testId === void 0 ? 'icon-volume' : _ref$testId,
|
|
4177
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4204
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
|
|
4178
4205
|
|
|
4179
4206
|
return React__default.createElement("svg", Object.assign({
|
|
4180
4207
|
viewBox: "0 0 20 20",
|
|
@@ -4190,11 +4217,11 @@ var IconVolume = forwardRef(function (_ref, ref) {
|
|
|
4190
4217
|
});
|
|
4191
4218
|
IconVolume.displayName = 'IconVolume';
|
|
4192
4219
|
|
|
4193
|
-
var _excluded$
|
|
4220
|
+
var _excluded$2g = ["testId"];
|
|
4194
4221
|
var IconWrench = forwardRef(function (_ref, ref) {
|
|
4195
4222
|
var _ref$testId = _ref.testId,
|
|
4196
4223
|
testId = _ref$testId === void 0 ? 'icon-wrench' : _ref$testId,
|
|
4197
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4224
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
|
|
4198
4225
|
|
|
4199
4226
|
return React__default.createElement("svg", Object.assign({
|
|
4200
4227
|
viewBox: "0 0 20 20",
|
|
@@ -5128,7 +5155,7 @@ var TimeFieldInput = function TimeFieldInput(_ref) {
|
|
|
5128
5155
|
})));
|
|
5129
5156
|
};
|
|
5130
5157
|
|
|
5131
|
-
var _excluded$
|
|
5158
|
+
var _excluded$2h = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
|
|
5132
5159
|
|
|
5133
5160
|
var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
5134
5161
|
var _ref$placeholder = _ref.placeholder,
|
|
@@ -5138,7 +5165,7 @@ var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
|
5138
5165
|
selectedTimeOption = _ref.selectedTimeOption,
|
|
5139
5166
|
prefix = _ref.prefix,
|
|
5140
5167
|
duration = _ref.duration,
|
|
5141
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5168
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
5142
5169
|
|
|
5143
5170
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
5144
5171
|
placeholder: placeholder,
|
|
@@ -5471,7 +5498,7 @@ var ALIGNMENTS = {
|
|
|
5471
5498
|
|
|
5472
5499
|
var styles$o = {"text":"_3CIA3","text__body":"_1nnj8","text__caption":"_37K6o","text__insight":"_avqxy","text--bold":"_2TG6E","text--italic":"_2hlsn","text--underline":"_1Pjo6","text--monospace":"_eDdDI","text--align-left":"_2gNwS","text--align-right":"_ufv1W","text--align-center":"_2WMN6","text--align-justify":"_2iH-J"};
|
|
5473
5500
|
|
|
5474
|
-
var _excluded$
|
|
5501
|
+
var _excluded$2i = ["children", "as", "emphasis", "alignment", "color", "testId"];
|
|
5475
5502
|
|
|
5476
5503
|
var Text = function Text(_ref) {
|
|
5477
5504
|
var _classnames;
|
|
@@ -5483,7 +5510,7 @@ var Text = function Text(_ref) {
|
|
|
5483
5510
|
alignment = _ref.alignment,
|
|
5484
5511
|
color = _ref.color,
|
|
5485
5512
|
testId = _ref.testId,
|
|
5486
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5513
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
|
|
5487
5514
|
|
|
5488
5515
|
var positionStyles = usePositionStyles(positionProps);
|
|
5489
5516
|
var elementProps = {
|
|
@@ -6261,7 +6288,7 @@ var DataTableEditableCellElement = function DataTableEditableCellElement(_ref, r
|
|
|
6261
6288
|
|
|
6262
6289
|
var DataTableEditableCell = forwardRef(DataTableEditableCellElement);
|
|
6263
6290
|
|
|
6264
|
-
var _excluded$
|
|
6291
|
+
var _excluded$2j = ["children", "onClick", "isSelected", "actions", "hasDefaultPadding", "hasDefaultCell", "testId"];
|
|
6265
6292
|
|
|
6266
6293
|
var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
6267
6294
|
var _classnames;
|
|
@@ -6275,7 +6302,7 @@ var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
|
6275
6302
|
_ref$hasDefaultCell = _ref.hasDefaultCell,
|
|
6276
6303
|
hasDefaultCell = _ref$hasDefaultCell === void 0 ? true : _ref$hasDefaultCell,
|
|
6277
6304
|
testId = _ref.testId,
|
|
6278
|
-
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6305
|
+
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
|
|
6279
6306
|
|
|
6280
6307
|
var _useDataTableContext = useDataTableContext(),
|
|
6281
6308
|
showActionMenu = _useDataTableContext.showActionMenu;
|
|
@@ -6517,13 +6544,13 @@ var isReactSelectElement = function isReactSelectElement(element) {
|
|
|
6517
6544
|
|
|
6518
6545
|
var styles$x = {"custom-control":"_1cDCR"};
|
|
6519
6546
|
|
|
6520
|
-
var _excluded$
|
|
6547
|
+
var _excluded$2k = ["children"];
|
|
6521
6548
|
|
|
6522
6549
|
function CustomControl(_ref) {
|
|
6523
6550
|
var _props$getValue;
|
|
6524
6551
|
|
|
6525
6552
|
var children = _ref.children,
|
|
6526
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6553
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
|
|
6527
6554
|
|
|
6528
6555
|
var SelectedOptionPrefix = props.selectProps.componentsProps.SelectedOptionPrefix;
|
|
6529
6556
|
var selectedOption = (_props$getValue = props.getValue()) === null || _props$getValue === void 0 ? void 0 : _props$getValue[0];
|
|
@@ -6541,11 +6568,11 @@ function CustomControl(_ref) {
|
|
|
6541
6568
|
}, props)), children)) : children);
|
|
6542
6569
|
}
|
|
6543
6570
|
|
|
6544
|
-
var _excluded$
|
|
6571
|
+
var _excluded$2l = ["children"];
|
|
6545
6572
|
|
|
6546
6573
|
function CustomOption(_ref) {
|
|
6547
6574
|
var children = _ref.children,
|
|
6548
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6575
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
|
|
6549
6576
|
|
|
6550
6577
|
var UserCustomOption = props.selectProps.componentsProps.UserCustomOption;
|
|
6551
6578
|
return React__default.createElement(components.Option, Object.assign({}, props), React__default.createElement(UserCustomOption, Object.assign({}, props), children));
|
|
@@ -6698,11 +6725,11 @@ var CustomContainer = function CustomContainer(props) {
|
|
|
6698
6725
|
|
|
6699
6726
|
var styles$y = {"custom-menu-text-field":"_2-zhH","custom-menu-hr":"_3sdnK","custom-menu-div":"_2F1jP"};
|
|
6700
6727
|
|
|
6701
|
-
var _excluded$
|
|
6728
|
+
var _excluded$2m = ["children"];
|
|
6702
6729
|
|
|
6703
6730
|
function CustomMenu(_ref) {
|
|
6704
6731
|
var children = _ref.children,
|
|
6705
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6732
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
|
|
6706
6733
|
|
|
6707
6734
|
var _props$selectProps$co = props.selectProps.componentsProps,
|
|
6708
6735
|
creatableButton = _props$selectProps$co.creatableButton,
|
|
@@ -7188,7 +7215,7 @@ var styles$D = {"form--standard-size":"_3CaV0"};
|
|
|
7188
7215
|
|
|
7189
7216
|
var styles$E = {"card":"_29ZIp","card__body":"_3Q8NT","card__body--interactive":"_2Fah6","card--focus":"_SGno0","card__body--focus":"_1zqRN","card__body--with-kebab":"_3Hwms","card__kebab":"_TmEUS"};
|
|
7190
7217
|
|
|
7191
|
-
var _excluded$
|
|
7218
|
+
var _excluded$2n = ["children", "onClick", "isSelected", "actions", "testId"];
|
|
7192
7219
|
|
|
7193
7220
|
var Card = function Card(_ref) {
|
|
7194
7221
|
var _classnames, _classnames2;
|
|
@@ -7199,7 +7226,7 @@ var Card = function Card(_ref) {
|
|
|
7199
7226
|
isSelected = _ref$isSelected === void 0 ? false : _ref$isSelected,
|
|
7200
7227
|
actions = _ref.actions,
|
|
7201
7228
|
testId = _ref.testId,
|
|
7202
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7229
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
|
|
7203
7230
|
|
|
7204
7231
|
var positionStyles = usePositionStyles(positionProps);
|
|
7205
7232
|
return React__default.createElement("div", {
|
|
@@ -7606,12 +7633,12 @@ var TextAreaField = function TextAreaField(_ref) {
|
|
|
7606
7633
|
}, toolbar)));
|
|
7607
7634
|
};
|
|
7608
7635
|
|
|
7609
|
-
var _excluded$
|
|
7636
|
+
var _excluded$2o = ["prefix", "suffix"];
|
|
7610
7637
|
|
|
7611
7638
|
var TextFieldElement = function TextFieldElement(_ref, ref) {
|
|
7612
7639
|
var prefix = _ref.prefix,
|
|
7613
7640
|
suffix = _ref.suffix,
|
|
7614
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7641
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
|
|
7615
7642
|
|
|
7616
7643
|
var _useTextField = useTextField(_extends({}, props, {
|
|
7617
7644
|
ref: ref
|
|
@@ -8320,13 +8347,13 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
8320
8347
|
|
|
8321
8348
|
var styles$T = {"custom-list":"_uC4zU"};
|
|
8322
8349
|
|
|
8323
|
-
var _excluded$
|
|
8350
|
+
var _excluded$2p = ["children", "hasMoreOptions", "hasMoreOptionsFirstLoad"];
|
|
8324
8351
|
|
|
8325
8352
|
var CustomList = function CustomList(_ref) {
|
|
8326
8353
|
var children = _ref.children,
|
|
8327
8354
|
hasMoreOptions = _ref.hasMoreOptions,
|
|
8328
8355
|
hasMoreOptionsFirstLoad = _ref.hasMoreOptionsFirstLoad,
|
|
8329
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8356
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
|
|
8330
8357
|
|
|
8331
8358
|
var showFooter = hasMoreOptions;
|
|
8332
8359
|
|
|
@@ -8341,11 +8368,11 @@ var CustomList = function CustomList(_ref) {
|
|
|
8341
8368
|
}, getLocalizedString('main.START_TYPING_TO_SEE_MORE_OPTIONS')))));
|
|
8342
8369
|
};
|
|
8343
8370
|
|
|
8344
|
-
var _excluded$
|
|
8371
|
+
var _excluded$2q = ["loadOptions"];
|
|
8345
8372
|
|
|
8346
8373
|
var AsyncSelectField = function AsyncSelectField(_ref) {
|
|
8347
8374
|
var loadOptions = _ref.loadOptions,
|
|
8348
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8375
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
|
|
8349
8376
|
|
|
8350
8377
|
var _useState = useState(false),
|
|
8351
8378
|
hasMoreOptions = _useState[0],
|
|
@@ -9237,7 +9264,7 @@ var TimeFieldDropdown = function TimeFieldDropdown(_ref) {
|
|
|
9237
9264
|
})));
|
|
9238
9265
|
};
|
|
9239
9266
|
|
|
9240
|
-
var _excluded$
|
|
9267
|
+
var _excluded$2r = ["interval", "startTime", "prefix", "endField", "duration"];
|
|
9241
9268
|
|
|
9242
9269
|
var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
9243
9270
|
var _ref$interval = _ref.interval,
|
|
@@ -9247,7 +9274,7 @@ var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
|
9247
9274
|
_ref$endField = _ref.endField,
|
|
9248
9275
|
endField = _ref$endField === void 0 ? false : _ref$endField,
|
|
9249
9276
|
duration = _ref.duration,
|
|
9250
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9277
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
|
|
9251
9278
|
|
|
9252
9279
|
var internalRef = useRef(null);
|
|
9253
9280
|
var ref = forwardedRef || internalRef;
|
|
@@ -9432,14 +9459,14 @@ var TimeRangeField = function TimeRangeField(_ref) {
|
|
|
9432
9459
|
})));
|
|
9433
9460
|
};
|
|
9434
9461
|
|
|
9435
|
-
var _excluded$
|
|
9462
|
+
var _excluded$2s = ["currencySymbol", "step"];
|
|
9436
9463
|
|
|
9437
9464
|
var CurrencyFieldElement = function CurrencyFieldElement(_ref, ref) {
|
|
9438
9465
|
var _ref$currencySymbol = _ref.currencySymbol,
|
|
9439
9466
|
currencySymbol = _ref$currencySymbol === void 0 ? '$' : _ref$currencySymbol,
|
|
9440
9467
|
_ref$step = _ref.step,
|
|
9441
9468
|
step = _ref$step === void 0 ? 0.01 : _ref$step,
|
|
9442
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9469
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
|
|
9443
9470
|
|
|
9444
9471
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
9445
9472
|
ref: ref
|
|
@@ -9478,7 +9505,7 @@ var CurrencyFieldElement = function CurrencyFieldElement(_ref, ref) {
|
|
|
9478
9505
|
|
|
9479
9506
|
var CurrencyField = forwardRef(CurrencyFieldElement);
|
|
9480
9507
|
|
|
9481
|
-
var _excluded$
|
|
9508
|
+
var _excluded$2t = ["max", "min", "precision", "stepSize"];
|
|
9482
9509
|
|
|
9483
9510
|
var PercentageElement = function PercentageElement(_ref, ref) {
|
|
9484
9511
|
var _ref$max = _ref.max,
|
|
@@ -9489,7 +9516,7 @@ var PercentageElement = function PercentageElement(_ref, ref) {
|
|
|
9489
9516
|
precision = _ref$precision === void 0 ? 0 : _ref$precision,
|
|
9490
9517
|
_ref$stepSize = _ref.stepSize,
|
|
9491
9518
|
stepSize = _ref$stepSize === void 0 ? 1 : _ref$stepSize,
|
|
9492
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9519
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
|
|
9493
9520
|
|
|
9494
9521
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
9495
9522
|
ref: ref
|
|
@@ -9673,7 +9700,7 @@ var InlineBannerIcon = function InlineBannerIcon(_ref) {
|
|
|
9673
9700
|
}
|
|
9674
9701
|
};
|
|
9675
9702
|
|
|
9676
|
-
var _excluded$
|
|
9703
|
+
var _excluded$2u = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
|
|
9677
9704
|
|
|
9678
9705
|
var InlineBanner = function InlineBanner(_ref) {
|
|
9679
9706
|
var _classnames, _classnames2;
|
|
@@ -9687,7 +9714,7 @@ var InlineBanner = function InlineBanner(_ref) {
|
|
|
9687
9714
|
primaryButton = _ref.primaryButton,
|
|
9688
9715
|
secondaryButton = _ref.secondaryButton,
|
|
9689
9716
|
testId = _ref.testId,
|
|
9690
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9717
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
|
|
9691
9718
|
|
|
9692
9719
|
var positionStyles = usePositionStyles(positionProps);
|
|
9693
9720
|
var multiLine = !!title;
|
|
@@ -9908,7 +9935,7 @@ var ProgressBar = function ProgressBar(_ref) {
|
|
|
9908
9935
|
|
|
9909
9936
|
var styles$$ = {"badge":"_2f81N","badge--warning":"_2g1GI","badge--danger":"_2zLnM","badge--success":"_27QOo","badge--info":"_2gmsM"};
|
|
9910
9937
|
|
|
9911
|
-
var _excluded$
|
|
9938
|
+
var _excluded$2v = ["children", "theme", "title", "testId"];
|
|
9912
9939
|
|
|
9913
9940
|
var Badge = function Badge(_ref, forwardedRef) {
|
|
9914
9941
|
var _classnames;
|
|
@@ -9917,7 +9944,7 @@ var Badge = function Badge(_ref, forwardedRef) {
|
|
|
9917
9944
|
theme = _ref.theme,
|
|
9918
9945
|
title = _ref.title,
|
|
9919
9946
|
testId = _ref.testId,
|
|
9920
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9947
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
|
|
9921
9948
|
|
|
9922
9949
|
var internalRef = useRef(null);
|
|
9923
9950
|
var ref = forwardedRef || internalRef;
|
|
@@ -10285,5 +10312,5 @@ var EmptyState = function EmptyState(_ref) {
|
|
|
10285
10312
|
}, children);
|
|
10286
10313
|
};
|
|
10287
10314
|
|
|
10288
|
-
export { AsyncSelectField, Avatar, Badge$1 as Badge, Bold, BreadcrumbItem, Breadcrumbs, Button$1 as Button, COLORS, Calendar, Card, CheckboxField, Chip, CircularProgress, CurrencyField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateFilter, DateRangeField, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, EmptyState, Form, FormFeedback, FormFooter, FormRow, FormSection, IconAnalytics, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowTurnDownRight, IconArrowUp, IconAward, IconAwful, IconAwfulMonochromatic, IconBad, IconBadMonochromatic, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBirthdayCake, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarStar, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDecent, IconDecentMonochromatic, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGavel, IconGif, IconGift, IconGood, IconGoodMonochromatic, IconGreat, IconGreatMonochromatic, IconGrinBeam, IconGripVertical, IconHandshake, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMegaphone, IconMessages, IconMinus, IconMinusCircle, IconMoneyBill, IconMugSaucerSolid, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconReply, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStarSolid, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTable, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUniversity, IconUserComputer, IconUserFriends, IconUserLight, IconUserPlus, IconUserSearch, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, InlineBanner, Italic, Link, Modal, ModalBody, ModalFooter, MultiSelectField, Page, PaginationControls, PasswordField, Paywall, PercentageField, PersistentBanner, Pill, PillSelectField, ProgressBar, RadioGroupBoxOption, RadioGroupField, RadioGroupOption, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SegmentedControl, SelectField, SousChefProvider, Spinner, Stack, Text, TextAreaField, TextField, TimeField, TimeRangeField, Toggle, ToolbarSelect, Tooltip$1 as Tooltip, Underline, WeekField, toast };
|
|
10315
|
+
export { AsyncSelectField, Avatar, Badge$1 as Badge, Bold, BreadcrumbItem, Breadcrumbs, Button$1 as Button, COLORS, Calendar, Card, CheckboxField, Chip, CircularProgress, CurrencyField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateFilter, DateRangeField, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, EmptyState, Form, FormFeedback, FormFooter, FormRow, FormSection, IconAnalytics, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowTurnDownRight, IconArrowUp, IconAward, IconAwful, IconAwfulMonochromatic, IconBad, IconBadMonochromatic, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBirthdayCake, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarStar, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDecent, IconDecentMonochromatic, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconEnvelopeOpenDollar, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGavel, IconGif, IconGift, IconGood, IconGoodMonochromatic, IconGreat, IconGreatMonochromatic, IconGrinBeam, IconGripVertical, IconHandshake, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMegaphone, IconMessages, IconMinus, IconMinusCircle, IconMoneyBill, IconMugSaucerSolid, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconReply, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStarSolid, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTable, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUniversity, IconUserComputer, IconUserFriends, IconUserLight, IconUserPlus, IconUserSearch, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, InlineBanner, Italic, Link, Modal, ModalBody, ModalFooter, MultiSelectField, Page, PaginationControls, PasswordField, Paywall, PercentageField, PersistentBanner, Pill, PillSelectField, ProgressBar, RadioGroupBoxOption, RadioGroupField, RadioGroupOption, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SegmentedControl, SelectField, SousChefProvider, Spinner, Stack, Text, TextAreaField, TextField, TimeField, TimeRangeField, Toggle, ToolbarSelect, Tooltip$1 as Tooltip, Underline, WeekField, toast };
|
|
10289
10316
|
//# sourceMappingURL=index.modern.js.map
|