@kentico/xperience-admin-components 29.7.3 → 30.0.1

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/entry.d.ts CHANGED
@@ -75,6 +75,10 @@ export declare interface ActionTileProps extends UITestProps {
75
75
  * Displayed icon name.
76
76
  */
77
77
  readonly icon: IconName;
78
+ /**
79
+ * Icon set name
80
+ */
81
+ readonly iconSet?: IconSet;
78
82
  /**
79
83
  * Tab index.
80
84
  */
@@ -1798,16 +1802,34 @@ declare interface IconButtonProps extends Pick<ToggleButtonBaseProps, 'onClick'
1798
1802
  readonly icon: IconName;
1799
1803
  }
1800
1804
 
1801
- export declare type IconName = keyof typeof KXIcons;
1805
+ export declare type IconName = IconNameMap[keyof typeof KXIconSets];
1806
+
1807
+ declare type IconNameMap = {
1808
+ [K in IconSet]: keyof (typeof KXIconSets)[K];
1809
+ };
1802
1810
 
1803
1811
  /** Icon component properties */
1804
1812
  export declare interface IconProps {
1805
- /** Icon name */
1813
+ /**
1814
+ * Icon name.
1815
+ */
1806
1816
  readonly name: IconName;
1807
- /** Used as fallbcak icon name in case of missing primary icon. */
1817
+ /**
1818
+ * Used as fallback icon name in case of missing primary icon.
1819
+ */
1808
1820
  readonly fallbackIconName?: IconName;
1821
+ /**
1822
+ * Icon set.
1823
+ */
1824
+ readonly iconSet?: keyof typeof KXIconSets;
1825
+ /**
1826
+ * Fallback icon set.
1827
+ */
1828
+ readonly fallbackIconSet?: keyof typeof KXIconSets;
1809
1829
  }
1810
1830
 
1831
+ declare type IconSet = keyof typeof KXIconSets;
1832
+
1811
1833
  export declare enum IconSize {
1812
1834
  XXS = "8px",
1813
1835
  XS = "12px",
@@ -1969,6 +1991,7 @@ export declare const KXIcons: {
1969
1991
  'xp-a-lowercase': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
1970
1992
  'xp-accordion': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
1971
1993
  'xp-add-module': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
1994
+ 'xp-adjust': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
1972
1995
  'xp-android': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
1973
1996
  'xp-apple': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
1974
1997
  'xp-arrow-crooked-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -2138,8 +2161,8 @@ export declare const KXIcons: {
2138
2161
  'xp-down-dir': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2139
2162
  'xp-drawers': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2140
2163
  'xp-e-book': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2141
- 'xp-earth': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2142
2164
  'xp-earth-micro': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2165
+ 'xp-earth': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2143
2166
  'xp-edge': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2144
2167
  'xp-edit': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2145
2168
  'xp-ekg-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -2163,6 +2186,7 @@ export declare const KXIcons: {
2163
2186
  'xp-folder-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2164
2187
  'xp-folder-move': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2165
2188
  'xp-folder-opened': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2189
+ 'xp-folder-plus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2166
2190
  'xp-folder': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2167
2191
  'xp-form': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2168
2192
  'xp-funnel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -2176,8 +2200,8 @@ export declare const KXIcons: {
2176
2200
  'xp-h-4': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2177
2201
  'xp-half-arrows-right-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2178
2202
  'xp-hat-moustache': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2179
- 'xp-headless': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2180
2203
  'xp-headless-micro': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2204
+ 'xp-headless': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2181
2205
  'xp-heart': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2182
2206
  'xp-heartshake': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2183
2207
  'xp-highlighter': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -2247,6 +2271,7 @@ export declare const KXIcons: {
2247
2271
  'xp-list': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2248
2272
  'xp-lock-unlocked': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2249
2273
  'xp-lock': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2274
+ 'xp-log-activity': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2250
2275
  'xp-loop': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2251
2276
  'xp-magic-edit': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2252
2277
  'xp-magnifier-minus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -2259,8 +2284,8 @@ export declare const KXIcons: {
2259
2284
  'xp-media-player': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2260
2285
  'xp-menu': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2261
2286
  'xp-merge': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2262
- 'xp-message': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2263
2287
  'xp-message-micro': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2288
+ 'xp-message': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2264
2289
  'xp-messages': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2265
2290
  'xp-microphone': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2266
2291
  'xp-minus-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -2382,8 +2407,8 @@ export declare const KXIcons: {
2382
2407
  'xp-tree-structure': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2383
2408
  'xp-triangle-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2384
2409
  'xp-trophy': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2385
- 'xp-truck': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2386
2410
  'xp-truck-moving': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2411
+ 'xp-truck': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2387
2412
  'xp-two-rectangles-h': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2388
2413
  'xp-two-rectangles-stacked-times': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2389
2414
  'xp-two-rectangles-stacked': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
@@ -2404,6 +2429,720 @@ export declare const KXIcons: {
2404
2429
  'xp-xml-tag': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2405
2430
  };
2406
2431
 
2432
+ export declare const KXIconSetNames: {
2433
+ readonly default: "xp-default-icon-set";
2434
+ readonly flags: "xp-flags-icon-set";
2435
+ };
2436
+
2437
+ export declare const KXIconSets: {
2438
+ 'xp-default-icon-set': {
2439
+ 'xp-a-lowercase': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2440
+ 'xp-accordion': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2441
+ 'xp-add-module': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2442
+ 'xp-adjust': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2443
+ 'xp-android': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2444
+ 'xp-apple': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2445
+ 'xp-arrow-crooked-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2446
+ 'xp-arrow-crooked-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2447
+ 'xp-arrow-curved-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2448
+ 'xp-arrow-curved-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2449
+ 'xp-arrow-double-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2450
+ 'xp-arrow-double-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2451
+ 'xp-arrow-down-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2452
+ 'xp-arrow-down-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2453
+ 'xp-arrow-down': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2454
+ 'xp-arrow-enter-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2455
+ 'xp-arrow-leave-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2456
+ 'xp-arrow-left-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2457
+ 'xp-arrow-left-rect': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2458
+ 'xp-arrow-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2459
+ 'xp-arrow-right-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2460
+ 'xp-arrow-right-rect': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2461
+ 'xp-arrow-right-top-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2462
+ 'xp-arrow-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2463
+ 'xp-arrow-send': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2464
+ 'xp-arrow-u-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2465
+ 'xp-arrow-u-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2466
+ 'xp-arrow-up-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2467
+ 'xp-arrow-up-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2468
+ 'xp-arrow-up': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2469
+ 'xp-arrows-crooked': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2470
+ 'xp-arrows-h': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2471
+ 'xp-arrows-v': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2472
+ 'xp-arrows': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2473
+ 'xp-b': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2474
+ 'xp-badge': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2475
+ 'xp-ban-sign': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2476
+ 'xp-bell': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2477
+ 'xp-bezier-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2478
+ 'xp-bin': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2479
+ 'xp-binder': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2480
+ 'xp-book-opened': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2481
+ 'xp-box-cart': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2482
+ 'xp-box-cogwheel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2483
+ 'xp-box': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2484
+ 'xp-boxes': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2485
+ 'xp-braces-octothorpe': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2486
+ 'xp-braces': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2487
+ 'xp-brand-bing': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2488
+ 'xp-brand-facebook': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2489
+ 'xp-brand-google-plus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2490
+ 'xp-brand-google': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2491
+ 'xp-brand-instagram': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2492
+ 'xp-brand-linkedin': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2493
+ 'xp-brand-mstranslator': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2494
+ 'xp-brand-open-id': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2495
+ 'xp-brand-pinterest': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2496
+ 'xp-brand-sharepoint': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2497
+ 'xp-brand-twitter': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2498
+ 'xp-brand-youtube': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2499
+ 'xp-breadcrumb': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2500
+ 'xp-briefcase': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2501
+ 'xp-broom': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2502
+ 'xp-brush-slashed': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2503
+ 'xp-brush': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2504
+ 'xp-bubble-censored': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2505
+ 'xp-bubble-check': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2506
+ 'xp-bubble-hide': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2507
+ 'xp-bubble-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2508
+ 'xp-bubble-pencil': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2509
+ 'xp-bubble-show': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2510
+ 'xp-bubble-times': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2511
+ 'xp-bubble-with-lines': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2512
+ 'xp-bubble': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2513
+ 'xp-bubbles': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2514
+ 'xp-bucket-shovel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2515
+ 'xp-bug': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2516
+ 'xp-building-block': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2517
+ 'xp-building': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2518
+ 'xp-bullseye': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2519
+ 'xp-c-sharp': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2520
+ 'xp-calendar-number': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2521
+ 'xp-calendar': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2522
+ 'xp-camera': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2523
+ 'xp-cancel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2524
+ 'xp-caret-down': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2525
+ 'xp-caret-left-aligned-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2526
+ 'xp-caret-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2527
+ 'xp-caret-right-aligned-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2528
+ 'xp-caret-right-down': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2529
+ 'xp-caret-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2530
+ 'xp-caret-up': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2531
+ 'xp-carousel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2532
+ 'xp-cb-check-disabled': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2533
+ 'xp-cb-check-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2534
+ 'xp-cb-check-minus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2535
+ 'xp-cb-check-preview': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2536
+ 'xp-cb-check-sign': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2537
+ 'xp-cb-check': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2538
+ 'xp-cb-uncheck': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2539
+ 'xp-chain-broken': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2540
+ 'xp-chain-slash': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2541
+ 'xp-chain': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2542
+ 'xp-check-circle-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2543
+ 'xp-check-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2544
+ 'xp-check': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2545
+ 'xp-checklist': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2546
+ 'xp-chevron-double-down': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2547
+ 'xp-chevron-double-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2548
+ 'xp-chevron-double-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2549
+ 'xp-chevron-double-up': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2550
+ 'xp-chevron-down-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2551
+ 'xp-chevron-down-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2552
+ 'xp-chevron-down-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2553
+ 'xp-chevron-down': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2554
+ 'xp-chevron-left-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2555
+ 'xp-chevron-left-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2556
+ 'xp-chevron-left-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2557
+ 'xp-chevron-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2558
+ 'xp-chevron-right-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2559
+ 'xp-chevron-right-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2560
+ 'xp-chevron-right-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2561
+ 'xp-chevron-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2562
+ 'xp-chevron-up-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2563
+ 'xp-chevron-up-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2564
+ 'xp-chevron-up-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2565
+ 'xp-chevron-up': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2566
+ 'xp-choice-multi-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2567
+ 'xp-choice-single-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2568
+ 'xp-choice-user-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2569
+ 'xp-chrome': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2570
+ 'xp-circle-dashed': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2571
+ 'xp-circle-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2572
+ 'xp-circle-slashed': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2573
+ 'xp-circle-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2574
+ 'xp-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2575
+ 'xp-clapperboard': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2576
+ 'xp-clipboard-checklist': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2577
+ 'xp-clipboard-list': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2578
+ 'xp-clock': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2579
+ 'xp-cloud': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2580
+ 'xp-cogwheel-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2581
+ 'xp-cogwheel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2582
+ 'xp-cogwheels': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2583
+ 'xp-collapse-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2584
+ 'xp-collapse': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2585
+ 'xp-compass': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2586
+ 'xp-convert': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2587
+ 'xp-cookie': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2588
+ 'xp-crosshair-f': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2589
+ 'xp-crosshair-o': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2590
+ 'xp-cup': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2591
+ 'xp-custom-element': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2592
+ 'xp-database': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2593
+ 'xp-desktop': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2594
+ 'xp-dialog-window-cogwheel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2595
+ 'xp-dialog-window': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2596
+ 'xp-diamond': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2597
+ 'xp-doc-arrows': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2598
+ 'xp-doc-ban-sign': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2599
+ 'xp-doc-copy': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2600
+ 'xp-doc-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2601
+ 'xp-doc-move': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2602
+ 'xp-doc-paste': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2603
+ 'xp-doc-plus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2604
+ 'xp-doc-torn': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2605
+ 'xp-doc-user': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2606
+ 'xp-doc': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2607
+ 'xp-dollar-sign': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2608
+ 'xp-dots-vertical': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2609
+ 'xp-down-dir': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2610
+ 'xp-drawers': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2611
+ 'xp-e-book': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2612
+ 'xp-earth-micro': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2613
+ 'xp-earth': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2614
+ 'xp-edge': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2615
+ 'xp-edit': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2616
+ 'xp-ekg-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2617
+ 'xp-ellipsis': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2618
+ 'xp-engage-users': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2619
+ 'xp-exclamation-triangle-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2620
+ 'xp-exclamation-triangle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2621
+ 'xp-expand': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2622
+ 'xp-eye-slash': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2623
+ 'xp-eye': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2624
+ 'xp-f': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2625
+ 'xp-factory': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2626
+ 'xp-file-pdf': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2627
+ 'xp-file': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2628
+ 'xp-filter-1': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2629
+ 'xp-firefox': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2630
+ 'xp-flag': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2631
+ 'xp-folder-belt': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2632
+ 'xp-folder-clock': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2633
+ 'xp-folder-cogwheel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2634
+ 'xp-folder-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2635
+ 'xp-folder-move': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2636
+ 'xp-folder-opened': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2637
+ 'xp-folder-plus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2638
+ 'xp-folder': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2639
+ 'xp-form': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2640
+ 'xp-funnel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2641
+ 'xp-gauge': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2642
+ 'xp-gift': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2643
+ 'xp-graduate-cap': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2644
+ 'xp-graph': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2645
+ 'xp-h-1': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2646
+ 'xp-h-2': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2647
+ 'xp-h-3': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2648
+ 'xp-h-4': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2649
+ 'xp-half-arrows-right-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2650
+ 'xp-hat-moustache': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2651
+ 'xp-headless-micro': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2652
+ 'xp-headless': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2653
+ 'xp-heart': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2654
+ 'xp-heartshake': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2655
+ 'xp-highlighter': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2656
+ 'xp-home': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2657
+ 'xp-i-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2658
+ 'xp-i': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2659
+ 'xp-id-card': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2660
+ 'xp-id-cards': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2661
+ 'xp-indent': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2662
+ 'xp-integration-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2663
+ 'xp-intercom': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2664
+ 'xp-internet-explorer': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2665
+ 'xp-invoice': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2666
+ 'xp-kentico': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2667
+ 'xp-key': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2668
+ 'xp-l-article-map': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2669
+ 'xp-l-calendar-number-article': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2670
+ 'xp-l-cols-2': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2671
+ 'xp-l-cols-20-60-20': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2672
+ 'xp-l-cols-20-80': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2673
+ 'xp-l-cols-25-50-25': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2674
+ 'xp-l-cols-3': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2675
+ 'xp-l-cols-30-70': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2676
+ 'xp-l-cols-4': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2677
+ 'xp-l-cols-70-30': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2678
+ 'xp-l-cols-80-20': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2679
+ 'xp-l-forms-2': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2680
+ 'xp-l-grid-2-2': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2681
+ 'xp-l-grid-3-2': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2682
+ 'xp-l-header-cols-2-footer': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2683
+ 'xp-l-header-cols-3-footer': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2684
+ 'xp-l-header-list-img': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2685
+ 'xp-l-header-menu-text': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2686
+ 'xp-l-header-text': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2687
+ 'xp-l-img-2-cols-3': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2688
+ 'xp-l-img-3-cols-3': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2689
+ 'xp-l-lightbox': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2690
+ 'xp-l-list-article-col': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2691
+ 'xp-l-list-article': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2692
+ 'xp-l-list-img-article': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2693
+ 'xp-l-list-title': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2694
+ 'xp-l-logotype-menu-col-footer': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2695
+ 'xp-l-logotype-menu-h-col': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2696
+ 'xp-l-logotype-menu-v-col': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2697
+ 'xp-l-menu-cols-2': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2698
+ 'xp-l-menu-cols-3': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2699
+ 'xp-l-menu-list-img-col': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2700
+ 'xp-l-menu-list-img': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2701
+ 'xp-l-menu-list': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2702
+ 'xp-l-menu-text-col-bottom': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2703
+ 'xp-l-menu-text-col': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2704
+ 'xp-l-menu-text': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2705
+ 'xp-l-rows-2': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2706
+ 'xp-l-rows-3': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2707
+ 'xp-l-rows-4': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2708
+ 'xp-l-text-col': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2709
+ 'xp-l-text': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2710
+ 'xp-laptop': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2711
+ 'xp-layout': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2712
+ 'xp-layouts': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2713
+ 'xp-life-belt': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2714
+ 'xp-light-bulb': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2715
+ 'xp-lines-rectangle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2716
+ 'xp-linux': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2717
+ 'xp-list-bullets': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2718
+ 'xp-list-numbers': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2719
+ 'xp-list': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2720
+ 'xp-lock-unlocked': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2721
+ 'xp-lock': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2722
+ 'xp-log-activity': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2723
+ 'xp-loop': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2724
+ 'xp-magic-edit': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2725
+ 'xp-magnifier-minus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2726
+ 'xp-magnifier-plus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2727
+ 'xp-magnifier': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2728
+ 'xp-map-marker': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2729
+ 'xp-map': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2730
+ 'xp-market': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2731
+ 'xp-mask': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2732
+ 'xp-media-player': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2733
+ 'xp-menu': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2734
+ 'xp-merge': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2735
+ 'xp-message-micro': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2736
+ 'xp-message': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2737
+ 'xp-messages': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2738
+ 'xp-microphone': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2739
+ 'xp-minus-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2740
+ 'xp-minus-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2741
+ 'xp-minus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2742
+ 'xp-mobile': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2743
+ 'xp-modal-close': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2744
+ 'xp-modal-maximize': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2745
+ 'xp-modal-minimize': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2746
+ 'xp-modal-question': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2747
+ 'xp-money-bill': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2748
+ 'xp-monitor-broken': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2749
+ 'xp-monitor-smartphone': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2750
+ 'xp-monitor': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2751
+ 'xp-mug': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2752
+ 'xp-multi-channel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2753
+ 'xp-newspaper': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2754
+ 'xp-note': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2755
+ 'xp-notebook': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2756
+ 'xp-octothorpe': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2757
+ 'xp-one': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2758
+ 'xp-opera': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2759
+ 'xp-organisational-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2760
+ 'xp-outdent': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2761
+ 'xp-palette': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2762
+ 'xp-pants': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2763
+ 'xp-paper-plane': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2764
+ 'xp-paperclip': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2765
+ 'xp-paragraph-center': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2766
+ 'xp-paragraph-short': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2767
+ 'xp-paragraph': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2768
+ 'xp-parent-child-scheme-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2769
+ 'xp-parent-child-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2770
+ 'xp-parent-children-scheme-2': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2771
+ 'xp-parent-children-scheme-3': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2772
+ 'xp-pause': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2773
+ 'xp-pc': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2774
+ 'xp-pda': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2775
+ 'xp-percent-sign': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2776
+ 'xp-perfume': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2777
+ 'xp-permission-list': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2778
+ 'xp-personalisation-variants': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2779
+ 'xp-personalisation': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2780
+ 'xp-picture': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2781
+ 'xp-pictures': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2782
+ 'xp-piechart-lines': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2783
+ 'xp-piechart': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2784
+ 'xp-pilcrow': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2785
+ 'xp-pin-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2786
+ 'xp-pin': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2787
+ 'xp-placeholder': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2788
+ 'xp-plus-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2789
+ 'xp-plus-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2790
+ 'xp-plus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2791
+ 'xp-printer': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2792
+ 'xp-process-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2793
+ 'xp-project-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2794
+ 'xp-puzzle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2795
+ 'xp-qr-code': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2796
+ 'xp-question-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2797
+ 'xp-rb-check-sign': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2798
+ 'xp-rb-check': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2799
+ 'xp-rb-uncheck': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2800
+ 'xp-recaptcha': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2801
+ 'xp-rectangle-a-inverted': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2802
+ 'xp-rectangle-a': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2803
+ 'xp-rectangle-h': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2804
+ 'xp-rectangle-paragraph': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2805
+ 'xp-rectangle-v': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2806
+ 'xp-resize': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2807
+ 'xp-restriction-list': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2808
+ 'xp-ribbon': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2809
+ 'xp-right-double-quotation-mark': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2810
+ 'xp-rotate-double-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2811
+ 'xp-rotate-left': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2812
+ 'xp-rotate-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2813
+ 'xp-rss': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2814
+ 'xp-s': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2815
+ 'xp-safari': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2816
+ 'xp-scheme-circles-triangle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2817
+ 'xp-scheme-connected-circles': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2818
+ 'xp-scheme-path-circles-flipped': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2819
+ 'xp-scheme-path-circles': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2820
+ 'xp-scissors': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2821
+ 'xp-separate': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2822
+ 'xp-share-apple': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2823
+ 'xp-share-google': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2824
+ 'xp-shoe-women': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2825
+ 'xp-shopping-cart': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2826
+ 'xp-small-dot-centered': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2827
+ 'xp-smartphone': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2828
+ 'xp-software-package': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2829
+ 'xp-spinner': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2830
+ 'xp-square-dashed-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2831
+ 'xp-square-dashed': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2832
+ 'xp-square': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2833
+ 'xp-staging-scheme': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2834
+ 'xp-star-empty': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2835
+ 'xp-star-full': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2836
+ 'xp-star-semi': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2837
+ 'xp-stop': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2838
+ 'xp-subscript': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2839
+ 'xp-superscript': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2840
+ 'xp-t-f': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2841
+ 'xp-t-shirt': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2842
+ 'xp-t-with-cross': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2843
+ 'xp-t': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2844
+ 'xp-tab-vertical': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2845
+ 'xp-tab': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2846
+ 'xp-table': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2847
+ 'xp-tablet': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2848
+ 'xp-tag': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2849
+ 'xp-tags': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2850
+ 'xp-three-dots-vertical': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2851
+ 'xp-timed-box': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2852
+ 'xp-times-circle': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2853
+ 'xp-times': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2854
+ 'xp-translate': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2855
+ 'xp-tree-structure': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2856
+ 'xp-triangle-right': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2857
+ 'xp-trophy': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2858
+ 'xp-truck-moving': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2859
+ 'xp-truck': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2860
+ 'xp-two-rectangles-h': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2861
+ 'xp-two-rectangles-stacked-times': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2862
+ 'xp-two-rectangles-stacked': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2863
+ 'xp-two-rectangles-v': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2864
+ 'xp-two-squares-line': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2865
+ 'xp-two-squares-with-lines': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2866
+ 'xp-u': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2867
+ 'xp-up-dir': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2868
+ 'xp-user-checkbox': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2869
+ 'xp-user-frame': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2870
+ 'xp-user': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2871
+ 'xp-users': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2872
+ 'xp-vb': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2873
+ 'xp-watch': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2874
+ 'xp-windows': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2875
+ 'xp-wizard-stick': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2876
+ 'xp-x': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2877
+ 'xp-xml-tag': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2878
+ };
2879
+ 'xp-flags-icon-set': {
2880
+ 'xp-flag-abkhazia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2881
+ 'xp-flag-afghanistan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2882
+ 'xp-flag-aland-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2883
+ 'xp-flag-albania': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2884
+ 'xp-flag-algeria': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2885
+ 'xp-flag-american-samoa': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2886
+ 'xp-flag-andorra': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2887
+ 'xp-flag-angola': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2888
+ 'xp-flag-anguilla': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2889
+ 'xp-flag-antigua-and-barbuda': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2890
+ 'xp-flag-argentina': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2891
+ 'xp-flag-armenia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2892
+ 'xp-flag-aruba': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2893
+ 'xp-flag-australia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2894
+ 'xp-flag-austria': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2895
+ 'xp-flag-azerbaijan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2896
+ 'xp-flag-azores-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2897
+ 'xp-flag-bahamas': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2898
+ 'xp-flag-bahrain': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2899
+ 'xp-flag-balearic-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2900
+ 'xp-flag-bangladesh': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2901
+ 'xp-flag-barbados': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2902
+ 'xp-flag-basque-country': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2903
+ 'xp-flag-belarus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2904
+ 'xp-flag-belgium': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2905
+ 'xp-flag-belize': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2906
+ 'xp-flag-benin': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2907
+ 'xp-flag-bermuda': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2908
+ 'xp-flag-bhutan-1': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2909
+ 'xp-flag-bhutan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2910
+ 'xp-flag-bolivia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2911
+ 'xp-flag-bonaire': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2912
+ 'xp-flag-bosnia-and-herzegovina': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2913
+ 'xp-flag-botswana': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2914
+ 'xp-flag-brazil': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2915
+ 'xp-flag-british-columbia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2916
+ 'xp-flag-british-indian-ocean-territory': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2917
+ 'xp-flag-british-virgin-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2918
+ 'xp-flag-brunei': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2919
+ 'xp-flag-bulgaria': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2920
+ 'xp-flag-burkina-faso': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2921
+ 'xp-flag-burundi': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2922
+ 'xp-flag-cambodia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2923
+ 'xp-flag-cameroon': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2924
+ 'xp-flag-canada': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2925
+ 'xp-flag-canary-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2926
+ 'xp-flag-cape-verde': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2927
+ 'xp-flag-cayman-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2928
+ 'xp-flag-central-african-republic': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2929
+ 'xp-flag-ceuta': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2930
+ 'xp-flag-chad': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2931
+ 'xp-flag-chile': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2932
+ 'xp-flag-china': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2933
+ 'xp-flag-christmas-island': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2934
+ 'xp-flag-cocos-island': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2935
+ 'xp-flag-colombia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2936
+ 'xp-flag-comoros': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2937
+ 'xp-flag-cook-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2938
+ 'xp-flag-corsica': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2939
+ 'xp-flag-costa-rica': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2940
+ 'xp-flag-croatia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2941
+ 'xp-flag-cuba': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2942
+ 'xp-flag-curacao': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2943
+ 'xp-flag-cyprus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2944
+ 'xp-flag-czech-republic': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2945
+ 'xp-flag-democratic-republic-of-congo': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2946
+ 'xp-flag-denmark': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2947
+ 'xp-flag-djibouti': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2948
+ 'xp-flag-dominica': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2949
+ 'xp-flag-dominican-republic': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2950
+ 'xp-flag-east-timor': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2951
+ 'xp-flag-ecuador': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2952
+ 'xp-flag-egypt': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2953
+ 'xp-flag-el-salvador': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2954
+ 'xp-flag-england': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2955
+ 'xp-flag-equatorial-guinea': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2956
+ 'xp-flag-eritrea': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2957
+ 'xp-flag-estonia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2958
+ 'xp-flag-ethiopia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2959
+ 'xp-flag-european-union': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2960
+ 'xp-flag-falkland-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2961
+ 'xp-flag-faroe-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2962
+ 'xp-flag-fiji': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2963
+ 'xp-flag-finland': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2964
+ 'xp-flag-france': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2965
+ 'xp-flag-french-polynesia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2966
+ 'xp-flag-gabon': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2967
+ 'xp-flag-galapagos-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2968
+ 'xp-flag-gambia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2969
+ 'xp-flag-georgia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2970
+ 'xp-flag-germany': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2971
+ 'xp-flag-ghana': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2972
+ 'xp-flag-gibraltar': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2973
+ 'xp-flag-greece': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2974
+ 'xp-flag-greenland': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2975
+ 'xp-flag-grenada': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2976
+ 'xp-flag-guam': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2977
+ 'xp-flag-guatemala': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2978
+ 'xp-flag-guernsey': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2979
+ 'xp-flag-guinea-bissau': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2980
+ 'xp-flag-guinea': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2981
+ 'xp-flag-guyana': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2982
+ 'xp-flag-haiti': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2983
+ 'xp-flag-hawaii': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2984
+ 'xp-flag-honduras': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2985
+ 'xp-flag-hong-kong': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2986
+ 'xp-flag-hungary': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2987
+ 'xp-flag-iceland': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2988
+ 'xp-flag-india': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2989
+ 'xp-flag-indonesia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2990
+ 'xp-flag-iran': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2991
+ 'xp-flag-iraq': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2992
+ 'xp-flag-ireland': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2993
+ 'xp-flag-isle-of-man': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2994
+ 'xp-flag-israel': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2995
+ 'xp-flag-italy': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2996
+ 'xp-flag-ivory-coast': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2997
+ 'xp-flag-jamaica': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2998
+ 'xp-flag-japan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
2999
+ 'xp-flag-jersey': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3000
+ 'xp-flag-jordan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3001
+ 'xp-flag-kazakhstan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3002
+ 'xp-flag-kenya': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3003
+ 'xp-flag-kiribati': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3004
+ 'xp-flag-kosovo': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3005
+ 'xp-flag-kuwait': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3006
+ 'xp-flag-kyrgyzstan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3007
+ 'xp-flag-laos': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3008
+ 'xp-flag-latvia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3009
+ 'xp-flag-lebanon': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3010
+ 'xp-flag-lesotho': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3011
+ 'xp-flag-liberia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3012
+ 'xp-flag-libya': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3013
+ 'xp-flag-liechtenstein': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3014
+ 'xp-flag-lithuania': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3015
+ 'xp-flag-luxembourg': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3016
+ 'xp-flag-macao': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3017
+ 'xp-flag-madagascar': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3018
+ 'xp-flag-madeira': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3019
+ 'xp-flag-malawi': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3020
+ 'xp-flag-malaysia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3021
+ 'xp-flag-maldives': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3022
+ 'xp-flag-mali': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3023
+ 'xp-flag-malta': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3024
+ 'xp-flag-marshall-island': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3025
+ 'xp-flag-martinique': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3026
+ 'xp-flag-mauritania': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3027
+ 'xp-flag-mauritius': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3028
+ 'xp-flag-melilla': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3029
+ 'xp-flag-mexico': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3030
+ 'xp-flag-micronesia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3031
+ 'xp-flag-moldova': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3032
+ 'xp-flag-monaco': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3033
+ 'xp-flag-mongolia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3034
+ 'xp-flag-montenegro': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3035
+ 'xp-flag-montserrat': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3036
+ 'xp-flag-morocco': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3037
+ 'xp-flag-mozambique': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3038
+ 'xp-flag-myanmar': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3039
+ 'xp-flag-namibia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3040
+ 'xp-flag-nato': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3041
+ 'xp-flag-nauru': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3042
+ 'xp-flag-nepal': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3043
+ 'xp-flag-netherlands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3044
+ 'xp-flag-new-zealand': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3045
+ 'xp-flag-nicaragua': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3046
+ 'xp-flag-niger': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3047
+ 'xp-flag-nigeria': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3048
+ 'xp-flag-niue': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3049
+ 'xp-flag-norfolk-island': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3050
+ 'xp-flag-north-korea': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3051
+ 'xp-flag-northern-cyprus': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3052
+ 'xp-flag-northern-marianas-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3053
+ 'xp-flag-norway': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3054
+ 'xp-flag-oman': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3055
+ 'xp-flag-orkney-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3056
+ 'xp-flag-ossetia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3057
+ 'xp-flag-pakistan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3058
+ 'xp-flag-palau': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3059
+ 'xp-flag-palestine': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3060
+ 'xp-flag-panama': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3061
+ 'xp-flag-papua-new-guinea': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3062
+ 'xp-flag-paraguay': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3063
+ 'xp-flag-peru': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3064
+ 'xp-flag-philippines': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3065
+ 'xp-flag-pitcairn-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3066
+ 'xp-flag-poland': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3067
+ 'xp-flag-portugal': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3068
+ 'xp-flag-puerto-rico': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3069
+ 'xp-flag-qatar': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3070
+ 'xp-flag-rapa-nui': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3071
+ 'xp-flag-republic-of-macedonia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3072
+ 'xp-flag-republic-of-the-congo': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3073
+ 'xp-flag-romania': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3074
+ 'xp-flag-russia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3075
+ 'xp-flag-rwanda': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3076
+ 'xp-flag-saba-island': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3077
+ 'xp-flag-sahrawi-arab-democratic-republic': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3078
+ 'xp-flag-saint-kitts-and-nevis': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3079
+ 'xp-flag-samoa': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3080
+ 'xp-flag-san-marino': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3081
+ 'xp-flag-sao-tome-and-prince': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3082
+ 'xp-flag-sardinia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3083
+ 'xp-flag-saudi-arabia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3084
+ 'xp-flag-scotland': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3085
+ 'xp-flag-senegal': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3086
+ 'xp-flag-serbia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3087
+ 'xp-flag-seychelles': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3088
+ 'xp-flag-sierra-leone': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3089
+ 'xp-flag-singapore': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3090
+ 'xp-flag-sint-eustatius': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3091
+ 'xp-flag-sint-maarten': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3092
+ 'xp-flag-slovakia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3093
+ 'xp-flag-slovenia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3094
+ 'xp-flag-solomon-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3095
+ 'xp-flag-somalia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3096
+ 'xp-flag-somaliland': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3097
+ 'xp-flag-south-africa': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3098
+ 'xp-flag-south-korea': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3099
+ 'xp-flag-south-sudan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3100
+ 'xp-flag-spain': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3101
+ 'xp-flag-sri-lanka': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3102
+ 'xp-flag-st-barts': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3103
+ 'xp-flag-st-lucia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3104
+ 'xp-flag-st-vincent-and-the-grenadines': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3105
+ 'xp-flag-sudan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3106
+ 'xp-flag-suriname': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3107
+ 'xp-flag-swaziland': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3108
+ 'xp-flag-sweden': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3109
+ 'xp-flag-switzerland': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3110
+ 'xp-flag-syria': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3111
+ 'xp-flag-taiwan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3112
+ 'xp-flag-tajikistan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3113
+ 'xp-flag-tanzania': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3114
+ 'xp-flag-thailand': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3115
+ 'xp-flag-tibet': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3116
+ 'xp-flag-togo': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3117
+ 'xp-flag-tokelau': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3118
+ 'xp-flag-tonga': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3119
+ 'xp-flag-transnistria': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3120
+ 'xp-flag-trinidad-and-tobago': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3121
+ 'xp-flag-tunisia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3122
+ 'xp-flag-turkey': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3123
+ 'xp-flag-turkmenistan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3124
+ 'xp-flag-turks-and-caicos': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3125
+ 'xp-flag-tuvalu': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3126
+ 'xp-flag-uganda': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3127
+ 'xp-flag-ukraine': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3128
+ 'xp-flag-united-arab-emirates': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3129
+ 'xp-flag-united-kingdom': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3130
+ 'xp-flag-united-nations': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3131
+ 'xp-flag-united-states': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3132
+ 'xp-flag-uruguay': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3133
+ 'xp-flag-uzbekistan': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3134
+ 'xp-flag-vanuatu': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3135
+ 'xp-flag-vatican-city': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3136
+ 'xp-flag-venezuela': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3137
+ 'xp-flag-vietnam': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3138
+ 'xp-flag-virgin-islands': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3139
+ 'xp-flag-wales': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3140
+ 'xp-flag-yemen': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3141
+ 'xp-flag-zambia': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3142
+ 'xp-flag-zimbabwe': ForwardRefExoticComponent<GeneratedIconProps & RefAttributes<SVGSVGElement>>;
3143
+ };
3144
+ };
3145
+
2407
3146
  /**
2408
3147
  * Component for displaying label with tooltip visible when hovering over information icon.
2409
3148
  */
@@ -2440,7 +3179,7 @@ export declare interface LeadingButtonProps extends UITestProps {
2440
3179
  readonly onClick?: (event: MouseEvent_2<HTMLElement> | KeyboardEvent_2<HTMLElement>) => void;
2441
3180
  }
2442
3181
 
2443
- declare type LeadingElementType = 'icon' | 'avatar' | 'checkbox' | 'quinaryButton' | 'empty';
3182
+ export declare type LeadingElementType = 'icon' | 'avatar' | 'checkbox' | 'quinaryButton' | 'empty';
2444
3183
 
2445
3184
  /**
2446
3185
  * Component wrapping the HTML anchor element.
@@ -3030,6 +3769,10 @@ declare interface SelectGroupCellProps {
3030
3769
  readonly label?: string;
3031
3770
  readonly tooltipText?: string;
3032
3771
  readonly icon?: IconName;
3772
+ readonly leadingElement?: {
3773
+ readonly type: LeadingElementType;
3774
+ readonly element: React.ReactNode;
3775
+ };
3033
3776
  readonly ellipsis?: boolean;
3034
3777
  readonly onClick?: MouseEventHandler<HTMLElement>;
3035
3778
  readonly selectionDisabled?: boolean;
@@ -3093,6 +3836,12 @@ declare interface SharedAvatarProps {
3093
3836
  * One of the gradient colors from GradientsDark.
3094
3837
  */
3095
3838
  readonly background: AvatarBackgroundType;
3839
+ /**
3840
+ * Custom React node to be rendered inside the Avatar.
3841
+ * This content takes precedence over the image.
3842
+ * Useful for rendering SVGs, icons, or other custom elements.
3843
+ */
3844
+ readonly customContent?: React.ReactNode;
3096
3845
  }
3097
3846
 
3098
3847
  export declare const Shelf: React_2.ForwardRefExoticComponent<ShelfProps & React_2.RefAttributes<HTMLDivElement>>;
@@ -3662,6 +4411,10 @@ export declare interface TableCell {
3662
4411
  * @deprecated Disabled state is deprecated and will be removed in the next version.
3663
4412
  */
3664
4413
  disabled?: boolean;
4414
+ /**
4415
+ * The name of the column the cell belongs to.
4416
+ */
4417
+ columnName?: string;
3665
4418
  }
3666
4419
 
3667
4420
  export declare interface TableColumn {
@@ -4704,6 +5457,7 @@ export declare enum Zindex {
4704
5457
  DropDown = "200",
4705
5458
  Statusbar = "1000",
4706
5459
  Sidepanel = "3000",
5460
+ SidepanelDialog = "3500",
4707
5461
  AppMenu = "4000",
4708
5462
  Dialog = "2000",
4709
5463
  Snackbar = "6000",