@patternfly/patternfly 6.5.0-prerelease.65 → 6.5.0-prerelease.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/components/Accordion/accordion.css +1 -2
  2. package/components/Accordion/accordion.scss +2 -2
  3. package/components/Breadcrumb/breadcrumb.css +6 -2
  4. package/components/Breadcrumb/breadcrumb.scss +6 -2
  5. package/components/DataList/data-list.css +1 -1
  6. package/components/DataList/data-list.scss +2 -2
  7. package/components/Drawer/drawer.css +3 -5
  8. package/components/Drawer/drawer.scss +7 -9
  9. package/components/MenuToggle/menu-toggle.css +1 -1
  10. package/components/MenuToggle/menu-toggle.scss +1 -1
  11. package/components/Page/page.css +11 -11
  12. package/components/Page/page.scss +2 -2
  13. package/components/Table/table.css +59 -21
  14. package/components/Table/table.scss +77 -26
  15. package/components/Wizard/wizard.css +2 -2
  16. package/components/Wizard/wizard.scss +4 -4
  17. package/components/_index.css +84 -45
  18. package/docs/components/ActionList/examples/ActionList.md +2 -2
  19. package/docs/components/Alert/examples/Alert.md +4 -4
  20. package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
  21. package/docs/components/Button/examples/Button.md +31 -31
  22. package/docs/components/Icon/examples/Icon.md +13 -1
  23. package/docs/components/Menu/examples/Menu.md +26 -2
  24. package/docs/components/MenuToggle/examples/MenuToggle.md +172 -64
  25. package/docs/components/Table/examples/Table.css +2 -1
  26. package/docs/components/Table/examples/Table.md +1330 -166
  27. package/docs/components/Toolbar/examples/Toolbar.md +67 -7
  28. package/docs/components/TreeView/examples/TreeView.md +4 -4
  29. package/docs/components/Wizard/examples/Wizard.md +1 -1
  30. package/docs/demos/AboutModal/examples/AboutModal.md +23 -15
  31. package/docs/demos/Alert/examples/Alert.md +69 -45
  32. package/docs/demos/BackToTop/examples/BackToTop.md +23 -15
  33. package/docs/demos/Banner/examples/Banner.md +46 -30
  34. package/docs/demos/CardView/examples/CardView.md +36 -16
  35. package/docs/demos/Compass/examples/Compass.md +76 -19
  36. package/docs/demos/Dashboard/examples/Dashboard.md +23 -15
  37. package/docs/demos/DataList/examples/DataList.md +157 -65
  38. package/docs/demos/DescriptionList/examples/DescriptionList.md +69 -45
  39. package/docs/demos/Drawer/examples/Drawer.md +115 -75
  40. package/docs/demos/JumpLinks/examples/JumpLinks.md +138 -90
  41. package/docs/demos/Masthead/examples/Masthead.md +101 -21
  42. package/docs/demos/Modal/examples/Modal.md +138 -90
  43. package/docs/demos/Nav/examples/Nav.md +188 -120
  44. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +115 -75
  45. package/docs/demos/Page/examples/Page.md +361 -213
  46. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +265 -113
  47. package/docs/demos/Skeleton/examples/Skeleton.md +23 -15
  48. package/docs/demos/Table/examples/Table.md +3561 -618
  49. package/docs/demos/Tabs/examples/Tabs.md +151 -91
  50. package/docs/demos/Toolbar/examples/Toolbar.md +546 -106
  51. package/docs/demos/Wizard/examples/Wizard.md +207 -135
  52. package/package.json +2 -2
  53. package/patternfly-no-globals.css +84 -45
  54. package/patternfly.css +84 -45
  55. package/patternfly.min.css +1 -1
  56. package/patternfly.min.css.map +1 -1
@@ -24,7 +24,19 @@ section: components
24
24
  aria-controls="toolbar-attribute-value-search-filter-desktop-example-expandable-content"
25
25
  >
26
26
  <span class="pf-v6-c-menu-toggle__icon">
27
- <i class="fas fa-filter" aria-hidden="true"></i>
27
+ <svg
28
+ class="pf-v6-svg"
29
+ viewBox="0 0 512 512"
30
+ fill="currentColor"
31
+ aria-hidden="true"
32
+ role="img"
33
+ width="1em"
34
+ height="1em"
35
+ >
36
+ <path
37
+ d="M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"
38
+ />
39
+ </svg>
28
40
  </span>
29
41
  </button>
30
42
  </div>
@@ -374,23 +386,11 @@ section: components
374
386
  type="button"
375
387
  aria-expanded="false"
376
388
  aria-label="Application launcher"
377
- >
378
- <span class="pf-v6-c-menu-toggle__icon">
379
- <i class="fas fa-th" aria-hidden="true"></i>
380
- </span>
381
- </button>
382
- </div>
383
- <div class="pf-v6-c-toolbar__item">
384
- <button
385
- class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
386
- type="button"
387
- aria-expanded="false"
388
- aria-label="Settings"
389
389
  >
390
390
  <span class="pf-v6-c-menu-toggle__icon">
391
391
  <svg
392
392
  class="pf-v6-svg"
393
- viewBox="0 0 32 32"
393
+ viewBox="0 0 512 512"
394
394
  fill="currentColor"
395
395
  aria-hidden="true"
396
396
  role="img"
@@ -398,12 +398,20 @@ section: components
398
398
  height="1em"
399
399
  >
400
400
  <path
401
- d="M30.168 12.894a.5.5 0 0 0-.488-.394h-2.732a11.512 11.512 0 0 0-.729-1.769l1.931-1.93a.5.5 0 0 0 .066-.625 14.693 14.693 0 0 0-4.393-4.392.498.498 0 0 0-.624.067l-1.93 1.93a11.512 11.512 0 0 0-1.769-.729V2.319a.5.5 0 0 0-.395-.489 14.81 14.81 0 0 0-6.211 0 .5.5 0 0 0-.395.489v2.733c-.614.196-1.207.439-1.769.729L8.8 3.851a.498.498 0 0 0-.624-.067 14.714 14.714 0 0 0-4.393 4.392.5.5 0 0 0 .066.625l1.931 1.93a11.512 11.512 0 0 0-.729 1.769H2.319a.5.5 0 0 0-.488.394 14.652 14.652 0 0 0 0 6.212.5.5 0 0 0 .488.394h2.732c.196.615.44 1.207.729 1.769l-1.931 1.93a.5.5 0 0 0-.066.625 14.673 14.673 0 0 0 4.393 4.392.498.498 0 0 0 .624-.067l1.93-1.93c.562.289 1.154.533 1.769.729v2.733a.5.5 0 0 0 .395.489 14.686 14.686 0 0 0 6.21 0 .5.5 0 0 0 .395-.489v-2.733a11.454 11.454 0 0 0 1.769-.729l1.93 1.93a.5.5 0 0 0 .624.067 14.714 14.714 0 0 0 4.393-4.392.5.5 0 0 0-.066-.625l-1.931-1.93c.289-.562.533-1.154.729-1.769h2.732a.5.5 0 0 0 .488-.394 14.652 14.652 0 0 0 0-6.212ZM16 21.25c-2.895 0-5.25-2.355-5.25-5.25s2.355-5.25 5.25-5.25 5.25 2.355 5.25 5.25-2.355 5.25-5.25 5.25Z"
401
+ d="M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"
402
402
  />
403
403
  </svg>
404
404
  </span>
405
405
  </button>
406
406
  </div>
407
+ <div class="pf-v6-c-toolbar__item">
408
+ <button
409
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
410
+ type="button"
411
+ aria-expanded="false"
412
+ aria-label="Settings"
413
+ ></button>
414
+ </div>
407
415
  <div class="pf-v6-c-toolbar__item">
408
416
  <button
409
417
  class="pf-v6-c-menu-toggle pf-m-plain"
@@ -412,7 +420,19 @@ section: components
412
420
  aria-label="Help"
413
421
  >
414
422
  <span class="pf-v6-c-menu-toggle__icon">
415
- <i class="fas fa-question-circle" aria-hidden="true"></i>
423
+ <svg
424
+ class="pf-v6-svg"
425
+ viewBox="0 0 512 512"
426
+ fill="currentColor"
427
+ aria-hidden="true"
428
+ role="img"
429
+ width="1em"
430
+ height="1em"
431
+ >
432
+ <path
433
+ d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"
434
+ />
435
+ </svg>
416
436
  </span>
417
437
  </button>
418
438
  </div>
@@ -598,7 +618,19 @@ section: components
598
618
  aria-controls="toolbar-with-validation-example-expandable-content"
599
619
  >
600
620
  <span class="pf-v6-c-menu-toggle__icon">
601
- <i class="fas fa-filter" aria-hidden="true"></i>
621
+ <svg
622
+ class="pf-v6-svg"
623
+ viewBox="0 0 512 512"
624
+ fill="currentColor"
625
+ aria-hidden="true"
626
+ role="img"
627
+ width="1em"
628
+ height="1em"
629
+ >
630
+ <path
631
+ d="M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"
632
+ />
633
+ </svg>
602
634
  </span>
603
635
  </button>
604
636
  </div>
@@ -910,20 +942,31 @@ section: components
910
942
  </label>
911
943
  </td>
912
944
 
913
- <th
914
- class="pf-v6-c-table__th"
915
- role="columnheader"
945
+ <td
946
+ class="pf-v6-c-table__td"
947
+ role="cell"
916
948
  data-label="Repository name"
917
949
  >
918
950
  <div>
919
951
  <div id="-table-table-node1">Node 1</div>
920
952
  <a href="#">siemur/test-space</a>
921
953
  </div>
922
- </th>
923
-
954
+ </td>
924
955
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
925
956
  <span>
926
- <i class="fas fa-code-branch"></i> 10
957
+ <svg
958
+ class="pf-v6-svg"
959
+ viewBox="0 0 384 512"
960
+ fill="currentColor"
961
+ aria-hidden="true"
962
+ role="img"
963
+ width="1em"
964
+ height="1em"
965
+ >
966
+ <path
967
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
968
+ />
969
+ </svg> 10
927
970
  </span>
928
971
  </td>
929
972
  <td
@@ -932,7 +975,19 @@ section: components
932
975
  data-label="Pull requests"
933
976
  >
934
977
  <span>
935
- <i class="fas fa-code"></i> 25
978
+ <svg
979
+ class="pf-v6-svg"
980
+ viewBox="0 0 640 512"
981
+ fill="currentColor"
982
+ aria-hidden="true"
983
+ role="img"
984
+ width="1em"
985
+ height="1em"
986
+ >
987
+ <path
988
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
989
+ />
990
+ </svg> 25
936
991
  </span>
937
992
  </td>
938
993
  <td
@@ -941,7 +996,19 @@ section: components
941
996
  data-label="Workspaces"
942
997
  >
943
998
  <span>
944
- <i class="fas fa-cube"></i> 5
999
+ <svg
1000
+ class="pf-v6-svg"
1001
+ viewBox="0 0 576 512"
1002
+ fill="currentColor"
1003
+ aria-hidden="true"
1004
+ role="img"
1005
+ width="1em"
1006
+ height="1em"
1007
+ >
1008
+ <path
1009
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
1010
+ />
1011
+ </svg> 5
945
1012
  </span>
946
1013
  </td>
947
1014
  <td
@@ -998,20 +1065,31 @@ section: components
998
1065
  </label>
999
1066
  </td>
1000
1067
 
1001
- <th
1002
- class="pf-v6-c-table__th"
1003
- role="columnheader"
1068
+ <td
1069
+ class="pf-v6-c-table__td"
1070
+ role="cell"
1004
1071
  data-label="Repository name"
1005
1072
  >
1006
1073
  <div>
1007
1074
  <div id="-table-table-node2">Node 2</div>
1008
1075
  <a href="#">siemur/test-space</a>
1009
1076
  </div>
1010
- </th>
1011
-
1077
+ </td>
1012
1078
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
1013
1079
  <span>
1014
- <i class="fas fa-code-branch"></i> 8
1080
+ <svg
1081
+ class="pf-v6-svg"
1082
+ viewBox="0 0 384 512"
1083
+ fill="currentColor"
1084
+ aria-hidden="true"
1085
+ role="img"
1086
+ width="1em"
1087
+ height="1em"
1088
+ >
1089
+ <path
1090
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
1091
+ />
1092
+ </svg> 8
1015
1093
  </span>
1016
1094
  </td>
1017
1095
  <td
@@ -1020,7 +1098,19 @@ section: components
1020
1098
  data-label="Pull requests"
1021
1099
  >
1022
1100
  <span>
1023
- <i class="fas fa-code"></i> 30
1101
+ <svg
1102
+ class="pf-v6-svg"
1103
+ viewBox="0 0 640 512"
1104
+ fill="currentColor"
1105
+ aria-hidden="true"
1106
+ role="img"
1107
+ width="1em"
1108
+ height="1em"
1109
+ >
1110
+ <path
1111
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
1112
+ />
1113
+ </svg> 30
1024
1114
  </span>
1025
1115
  </td>
1026
1116
  <td
@@ -1029,7 +1119,19 @@ section: components
1029
1119
  data-label="Workspaces"
1030
1120
  >
1031
1121
  <span>
1032
- <i class="fas fa-cube"></i> 2
1122
+ <svg
1123
+ class="pf-v6-svg"
1124
+ viewBox="0 0 576 512"
1125
+ fill="currentColor"
1126
+ aria-hidden="true"
1127
+ role="img"
1128
+ width="1em"
1129
+ height="1em"
1130
+ >
1131
+ <path
1132
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
1133
+ />
1134
+ </svg> 2
1033
1135
  </span>
1034
1136
  </td>
1035
1137
  <td
@@ -1086,20 +1188,31 @@ section: components
1086
1188
  </label>
1087
1189
  </td>
1088
1190
 
1089
- <th
1090
- class="pf-v6-c-table__th"
1091
- role="columnheader"
1191
+ <td
1192
+ class="pf-v6-c-table__td"
1193
+ role="cell"
1092
1194
  data-label="Repository name"
1093
1195
  >
1094
1196
  <div>
1095
1197
  <div id="-table-table-node3">Node 3</div>
1096
1198
  <a href="#">siemur/test-space</a>
1097
1199
  </div>
1098
- </th>
1099
-
1200
+ </td>
1100
1201
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
1101
1202
  <span>
1102
- <i class="fas fa-code-branch"></i> 12
1203
+ <svg
1204
+ class="pf-v6-svg"
1205
+ viewBox="0 0 384 512"
1206
+ fill="currentColor"
1207
+ aria-hidden="true"
1208
+ role="img"
1209
+ width="1em"
1210
+ height="1em"
1211
+ >
1212
+ <path
1213
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
1214
+ />
1215
+ </svg> 12
1103
1216
  </span>
1104
1217
  </td>
1105
1218
  <td
@@ -1108,7 +1221,19 @@ section: components
1108
1221
  data-label="Pull requests"
1109
1222
  >
1110
1223
  <span>
1111
- <i class="fas fa-code"></i> 48
1224
+ <svg
1225
+ class="pf-v6-svg"
1226
+ viewBox="0 0 640 512"
1227
+ fill="currentColor"
1228
+ aria-hidden="true"
1229
+ role="img"
1230
+ width="1em"
1231
+ height="1em"
1232
+ >
1233
+ <path
1234
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
1235
+ />
1236
+ </svg> 48
1112
1237
  </span>
1113
1238
  </td>
1114
1239
  <td
@@ -1117,7 +1242,19 @@ section: components
1117
1242
  data-label="Workspaces"
1118
1243
  >
1119
1244
  <span>
1120
- <i class="fas fa-cube"></i> 13
1245
+ <svg
1246
+ class="pf-v6-svg"
1247
+ viewBox="0 0 576 512"
1248
+ fill="currentColor"
1249
+ aria-hidden="true"
1250
+ role="img"
1251
+ width="1em"
1252
+ height="1em"
1253
+ >
1254
+ <path
1255
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
1256
+ />
1257
+ </svg> 13
1121
1258
  </span>
1122
1259
  </td>
1123
1260
  <td
@@ -1174,20 +1311,31 @@ section: components
1174
1311
  </label>
1175
1312
  </td>
1176
1313
 
1177
- <th
1178
- class="pf-v6-c-table__th"
1179
- role="columnheader"
1314
+ <td
1315
+ class="pf-v6-c-table__td"
1316
+ role="cell"
1180
1317
  data-label="Repository name"
1181
1318
  >
1182
1319
  <div>
1183
1320
  <div id="-table-table-node4">Node 4</div>
1184
1321
  <a href="#">siemur/test-space</a>
1185
1322
  </div>
1186
- </th>
1187
-
1323
+ </td>
1188
1324
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
1189
1325
  <span>
1190
- <i class="fas fa-code-branch"></i> 3
1326
+ <svg
1327
+ class="pf-v6-svg"
1328
+ viewBox="0 0 384 512"
1329
+ fill="currentColor"
1330
+ aria-hidden="true"
1331
+ role="img"
1332
+ width="1em"
1333
+ height="1em"
1334
+ >
1335
+ <path
1336
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
1337
+ />
1338
+ </svg> 3
1191
1339
  </span>
1192
1340
  </td>
1193
1341
  <td
@@ -1196,7 +1344,19 @@ section: components
1196
1344
  data-label="Pull requests"
1197
1345
  >
1198
1346
  <span>
1199
- <i class="fas fa-code"></i> 8
1347
+ <svg
1348
+ class="pf-v6-svg"
1349
+ viewBox="0 0 640 512"
1350
+ fill="currentColor"
1351
+ aria-hidden="true"
1352
+ role="img"
1353
+ width="1em"
1354
+ height="1em"
1355
+ >
1356
+ <path
1357
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
1358
+ />
1359
+ </svg> 8
1200
1360
  </span>
1201
1361
  </td>
1202
1362
  <td
@@ -1205,7 +1365,19 @@ section: components
1205
1365
  data-label="Workspaces"
1206
1366
  >
1207
1367
  <span>
1208
- <i class="fas fa-cube"></i> 20
1368
+ <svg
1369
+ class="pf-v6-svg"
1370
+ viewBox="0 0 576 512"
1371
+ fill="currentColor"
1372
+ aria-hidden="true"
1373
+ role="img"
1374
+ width="1em"
1375
+ height="1em"
1376
+ >
1377
+ <path
1378
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
1379
+ />
1380
+ </svg> 20
1209
1381
  </span>
1210
1382
  </td>
1211
1383
  <td
@@ -1274,7 +1446,19 @@ section: components
1274
1446
  </td>
1275
1447
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
1276
1448
  <span>
1277
- <i class="fas fa-code-branch"></i> 34
1449
+ <svg
1450
+ class="pf-v6-svg"
1451
+ viewBox="0 0 384 512"
1452
+ fill="currentColor"
1453
+ aria-hidden="true"
1454
+ role="img"
1455
+ width="1em"
1456
+ height="1em"
1457
+ >
1458
+ <path
1459
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
1460
+ />
1461
+ </svg> 34
1278
1462
  </span>
1279
1463
  </td>
1280
1464
  <td
@@ -1283,7 +1467,19 @@ section: components
1283
1467
  data-label="Pull requests"
1284
1468
  >
1285
1469
  <span>
1286
- <i class="fas fa-code"></i> 21
1470
+ <svg
1471
+ class="pf-v6-svg"
1472
+ viewBox="0 0 640 512"
1473
+ fill="currentColor"
1474
+ aria-hidden="true"
1475
+ role="img"
1476
+ width="1em"
1477
+ height="1em"
1478
+ >
1479
+ <path
1480
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
1481
+ />
1482
+ </svg> 21
1287
1483
  </span>
1288
1484
  </td>
1289
1485
  <td
@@ -1292,7 +1488,19 @@ section: components
1292
1488
  data-label="Workspaces"
1293
1489
  >
1294
1490
  <span>
1295
- <i class="fas fa-cube"></i> 26
1491
+ <svg
1492
+ class="pf-v6-svg"
1493
+ viewBox="0 0 576 512"
1494
+ fill="currentColor"
1495
+ aria-hidden="true"
1496
+ role="img"
1497
+ width="1em"
1498
+ height="1em"
1499
+ >
1500
+ <path
1501
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
1502
+ />
1503
+ </svg> 26
1296
1504
  </span>
1297
1505
  </td>
1298
1506
  <td
@@ -1358,7 +1566,19 @@ section: components
1358
1566
  aria-controls="toolbar-attribute-value-search-filter-mobile-example-expandable-content"
1359
1567
  >
1360
1568
  <span class="pf-v6-c-menu-toggle__icon">
1361
- <i class="fas fa-filter" aria-hidden="true"></i>
1569
+ <svg
1570
+ class="pf-v6-svg"
1571
+ viewBox="0 0 512 512"
1572
+ fill="currentColor"
1573
+ aria-hidden="true"
1574
+ role="img"
1575
+ width="1em"
1576
+ height="1em"
1577
+ >
1578
+ <path
1579
+ d="M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"
1580
+ />
1581
+ </svg>
1362
1582
  </span>
1363
1583
  </button>
1364
1584
  </div>
@@ -1892,7 +2112,19 @@ section: components
1892
2112
  aria-controls="toolbar-attribute-value-single-menu-toggle-filter-mobile-example-expandable-content"
1893
2113
  >
1894
2114
  <span class="pf-v6-c-menu-toggle__icon">
1895
- <i class="fas fa-filter" aria-hidden="true"></i>
2115
+ <svg
2116
+ class="pf-v6-svg"
2117
+ viewBox="0 0 512 512"
2118
+ fill="currentColor"
2119
+ aria-hidden="true"
2120
+ role="img"
2121
+ width="1em"
2122
+ height="1em"
2123
+ >
2124
+ <path
2125
+ d="M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"
2126
+ />
2127
+ </svg>
1896
2128
  </span>
1897
2129
  </button>
1898
2130
  </div>
@@ -2705,7 +2937,19 @@ section: components
2705
2937
  aria-controls="toolbar-attribute-value-checkbox-menu-toggle-filter-mobile-example-expandable-content"
2706
2938
  >
2707
2939
  <span class="pf-v6-c-menu-toggle__icon">
2708
- <i class="fas fa-filter" aria-hidden="true"></i>
2940
+ <svg
2941
+ class="pf-v6-svg"
2942
+ viewBox="0 0 512 512"
2943
+ fill="currentColor"
2944
+ aria-hidden="true"
2945
+ role="img"
2946
+ width="1em"
2947
+ height="1em"
2948
+ >
2949
+ <path
2950
+ d="M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"
2951
+ />
2952
+ </svg>
2709
2953
  </span>
2710
2954
  </button>
2711
2955
  </div>
@@ -3429,23 +3673,11 @@ section: components
3429
3673
  type="button"
3430
3674
  aria-expanded="false"
3431
3675
  aria-label="Application launcher"
3432
- >
3433
- <span class="pf-v6-c-menu-toggle__icon">
3434
- <i class="fas fa-th" aria-hidden="true"></i>
3435
- </span>
3436
- </button>
3437
- </div>
3438
- <div class="pf-v6-c-toolbar__item">
3439
- <button
3440
- class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
3441
- type="button"
3442
- aria-expanded="false"
3443
- aria-label="Settings"
3444
3676
  >
3445
3677
  <span class="pf-v6-c-menu-toggle__icon">
3446
3678
  <svg
3447
3679
  class="pf-v6-svg"
3448
- viewBox="0 0 32 32"
3680
+ viewBox="0 0 512 512"
3449
3681
  fill="currentColor"
3450
3682
  aria-hidden="true"
3451
3683
  role="img"
@@ -3453,12 +3685,20 @@ section: components
3453
3685
  height="1em"
3454
3686
  >
3455
3687
  <path
3456
- d="M30.168 12.894a.5.5 0 0 0-.488-.394h-2.732a11.512 11.512 0 0 0-.729-1.769l1.931-1.93a.5.5 0 0 0 .066-.625 14.693 14.693 0 0 0-4.393-4.392.498.498 0 0 0-.624.067l-1.93 1.93a11.512 11.512 0 0 0-1.769-.729V2.319a.5.5 0 0 0-.395-.489 14.81 14.81 0 0 0-6.211 0 .5.5 0 0 0-.395.489v2.733c-.614.196-1.207.439-1.769.729L8.8 3.851a.498.498 0 0 0-.624-.067 14.714 14.714 0 0 0-4.393 4.392.5.5 0 0 0 .066.625l1.931 1.93a11.512 11.512 0 0 0-.729 1.769H2.319a.5.5 0 0 0-.488.394 14.652 14.652 0 0 0 0 6.212.5.5 0 0 0 .488.394h2.732c.196.615.44 1.207.729 1.769l-1.931 1.93a.5.5 0 0 0-.066.625 14.673 14.673 0 0 0 4.393 4.392.498.498 0 0 0 .624-.067l1.93-1.93c.562.289 1.154.533 1.769.729v2.733a.5.5 0 0 0 .395.489 14.686 14.686 0 0 0 6.21 0 .5.5 0 0 0 .395-.489v-2.733a11.454 11.454 0 0 0 1.769-.729l1.93 1.93a.5.5 0 0 0 .624.067 14.714 14.714 0 0 0 4.393-4.392.5.5 0 0 0-.066-.625l-1.931-1.93c.289-.562.533-1.154.729-1.769h2.732a.5.5 0 0 0 .488-.394 14.652 14.652 0 0 0 0-6.212ZM16 21.25c-2.895 0-5.25-2.355-5.25-5.25s2.355-5.25 5.25-5.25 5.25 2.355 5.25 5.25-2.355 5.25-5.25 5.25Z"
3688
+ d="M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"
3457
3689
  />
3458
3690
  </svg>
3459
3691
  </span>
3460
3692
  </button>
3461
3693
  </div>
3694
+ <div class="pf-v6-c-toolbar__item">
3695
+ <button
3696
+ class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
3697
+ type="button"
3698
+ aria-expanded="false"
3699
+ aria-label="Settings"
3700
+ ></button>
3701
+ </div>
3462
3702
  <div class="pf-v6-c-toolbar__item">
3463
3703
  <button
3464
3704
  class="pf-v6-c-menu-toggle pf-m-plain"
@@ -3467,7 +3707,19 @@ section: components
3467
3707
  aria-label="Help"
3468
3708
  >
3469
3709
  <span class="pf-v6-c-menu-toggle__icon">
3470
- <i class="fas fa-question-circle" aria-hidden="true"></i>
3710
+ <svg
3711
+ class="pf-v6-svg"
3712
+ viewBox="0 0 512 512"
3713
+ fill="currentColor"
3714
+ aria-hidden="true"
3715
+ role="img"
3716
+ width="1em"
3717
+ height="1em"
3718
+ >
3719
+ <path
3720
+ d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"
3721
+ />
3722
+ </svg>
3471
3723
  </span>
3472
3724
  </button>
3473
3725
  </div>
@@ -3656,7 +3908,19 @@ section: components
3656
3908
  aria-controls="toolbar-pagination-management-example-toolbar-expandable-content"
3657
3909
  >
3658
3910
  <span class="pf-v6-c-menu-toggle__icon">
3659
- <i class="fas fa-filter" aria-hidden="true"></i>
3911
+ <svg
3912
+ class="pf-v6-svg"
3913
+ viewBox="0 0 512 512"
3914
+ fill="currentColor"
3915
+ aria-hidden="true"
3916
+ role="img"
3917
+ width="1em"
3918
+ height="1em"
3919
+ >
3920
+ <path
3921
+ d="M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"
3922
+ />
3923
+ </svg>
3660
3924
  </span>
3661
3925
  </button>
3662
3926
  </div>
@@ -3934,9 +4198,9 @@ section: components
3934
4198
  </label>
3935
4199
  </td>
3936
4200
 
3937
- <th
3938
- class="pf-v6-c-table__th"
3939
- role="columnheader"
4201
+ <td
4202
+ class="pf-v6-c-table__td"
4203
+ role="cell"
3940
4204
  data-label="Repository name"
3941
4205
  >
3942
4206
  <div>
@@ -3945,11 +4209,22 @@ section: components
3945
4209
  >Node 1</div>
3946
4210
  <a href="#">siemur/test-space</a>
3947
4211
  </div>
3948
- </th>
3949
-
4212
+ </td>
3950
4213
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
3951
4214
  <span>
3952
- <i class="fas fa-code-branch"></i> 10
4215
+ <svg
4216
+ class="pf-v6-svg"
4217
+ viewBox="0 0 384 512"
4218
+ fill="currentColor"
4219
+ aria-hidden="true"
4220
+ role="img"
4221
+ width="1em"
4222
+ height="1em"
4223
+ >
4224
+ <path
4225
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
4226
+ />
4227
+ </svg> 10
3953
4228
  </span>
3954
4229
  </td>
3955
4230
  <td
@@ -3958,7 +4233,19 @@ section: components
3958
4233
  data-label="Pull requests"
3959
4234
  >
3960
4235
  <span>
3961
- <i class="fas fa-code"></i> 25
4236
+ <svg
4237
+ class="pf-v6-svg"
4238
+ viewBox="0 0 640 512"
4239
+ fill="currentColor"
4240
+ aria-hidden="true"
4241
+ role="img"
4242
+ width="1em"
4243
+ height="1em"
4244
+ >
4245
+ <path
4246
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
4247
+ />
4248
+ </svg> 25
3962
4249
  </span>
3963
4250
  </td>
3964
4251
  <td
@@ -3967,7 +4254,19 @@ section: components
3967
4254
  data-label="Workspaces"
3968
4255
  >
3969
4256
  <span>
3970
- <i class="fas fa-cube"></i> 5
4257
+ <svg
4258
+ class="pf-v6-svg"
4259
+ viewBox="0 0 576 512"
4260
+ fill="currentColor"
4261
+ aria-hidden="true"
4262
+ role="img"
4263
+ width="1em"
4264
+ height="1em"
4265
+ >
4266
+ <path
4267
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
4268
+ />
4269
+ </svg> 5
3971
4270
  </span>
3972
4271
  </td>
3973
4272
  <td
@@ -4024,9 +4323,9 @@ section: components
4024
4323
  </label>
4025
4324
  </td>
4026
4325
 
4027
- <th
4028
- class="pf-v6-c-table__th"
4029
- role="columnheader"
4326
+ <td
4327
+ class="pf-v6-c-table__td"
4328
+ role="cell"
4030
4329
  data-label="Repository name"
4031
4330
  >
4032
4331
  <div>
@@ -4035,11 +4334,22 @@ section: components
4035
4334
  >Node 2</div>
4036
4335
  <a href="#">siemur/test-space</a>
4037
4336
  </div>
4038
- </th>
4039
-
4337
+ </td>
4040
4338
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
4041
4339
  <span>
4042
- <i class="fas fa-code-branch"></i> 8
4340
+ <svg
4341
+ class="pf-v6-svg"
4342
+ viewBox="0 0 384 512"
4343
+ fill="currentColor"
4344
+ aria-hidden="true"
4345
+ role="img"
4346
+ width="1em"
4347
+ height="1em"
4348
+ >
4349
+ <path
4350
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
4351
+ />
4352
+ </svg> 8
4043
4353
  </span>
4044
4354
  </td>
4045
4355
  <td
@@ -4048,7 +4358,19 @@ section: components
4048
4358
  data-label="Pull requests"
4049
4359
  >
4050
4360
  <span>
4051
- <i class="fas fa-code"></i> 30
4361
+ <svg
4362
+ class="pf-v6-svg"
4363
+ viewBox="0 0 640 512"
4364
+ fill="currentColor"
4365
+ aria-hidden="true"
4366
+ role="img"
4367
+ width="1em"
4368
+ height="1em"
4369
+ >
4370
+ <path
4371
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
4372
+ />
4373
+ </svg> 30
4052
4374
  </span>
4053
4375
  </td>
4054
4376
  <td
@@ -4057,7 +4379,19 @@ section: components
4057
4379
  data-label="Workspaces"
4058
4380
  >
4059
4381
  <span>
4060
- <i class="fas fa-cube"></i> 2
4382
+ <svg
4383
+ class="pf-v6-svg"
4384
+ viewBox="0 0 576 512"
4385
+ fill="currentColor"
4386
+ aria-hidden="true"
4387
+ role="img"
4388
+ width="1em"
4389
+ height="1em"
4390
+ >
4391
+ <path
4392
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
4393
+ />
4394
+ </svg> 2
4061
4395
  </span>
4062
4396
  </td>
4063
4397
  <td
@@ -4114,9 +4448,9 @@ section: components
4114
4448
  </label>
4115
4449
  </td>
4116
4450
 
4117
- <th
4118
- class="pf-v6-c-table__th"
4119
- role="columnheader"
4451
+ <td
4452
+ class="pf-v6-c-table__td"
4453
+ role="cell"
4120
4454
  data-label="Repository name"
4121
4455
  >
4122
4456
  <div>
@@ -4125,11 +4459,22 @@ section: components
4125
4459
  >Node 3</div>
4126
4460
  <a href="#">siemur/test-space</a>
4127
4461
  </div>
4128
- </th>
4129
-
4462
+ </td>
4130
4463
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
4131
4464
  <span>
4132
- <i class="fas fa-code-branch"></i> 12
4465
+ <svg
4466
+ class="pf-v6-svg"
4467
+ viewBox="0 0 384 512"
4468
+ fill="currentColor"
4469
+ aria-hidden="true"
4470
+ role="img"
4471
+ width="1em"
4472
+ height="1em"
4473
+ >
4474
+ <path
4475
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
4476
+ />
4477
+ </svg> 12
4133
4478
  </span>
4134
4479
  </td>
4135
4480
  <td
@@ -4138,7 +4483,19 @@ section: components
4138
4483
  data-label="Pull requests"
4139
4484
  >
4140
4485
  <span>
4141
- <i class="fas fa-code"></i> 48
4486
+ <svg
4487
+ class="pf-v6-svg"
4488
+ viewBox="0 0 640 512"
4489
+ fill="currentColor"
4490
+ aria-hidden="true"
4491
+ role="img"
4492
+ width="1em"
4493
+ height="1em"
4494
+ >
4495
+ <path
4496
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
4497
+ />
4498
+ </svg> 48
4142
4499
  </span>
4143
4500
  </td>
4144
4501
  <td
@@ -4147,7 +4504,19 @@ section: components
4147
4504
  data-label="Workspaces"
4148
4505
  >
4149
4506
  <span>
4150
- <i class="fas fa-cube"></i> 13
4507
+ <svg
4508
+ class="pf-v6-svg"
4509
+ viewBox="0 0 576 512"
4510
+ fill="currentColor"
4511
+ aria-hidden="true"
4512
+ role="img"
4513
+ width="1em"
4514
+ height="1em"
4515
+ >
4516
+ <path
4517
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
4518
+ />
4519
+ </svg> 13
4151
4520
  </span>
4152
4521
  </td>
4153
4522
  <td
@@ -4204,9 +4573,9 @@ section: components
4204
4573
  </label>
4205
4574
  </td>
4206
4575
 
4207
- <th
4208
- class="pf-v6-c-table__th"
4209
- role="columnheader"
4576
+ <td
4577
+ class="pf-v6-c-table__td"
4578
+ role="cell"
4210
4579
  data-label="Repository name"
4211
4580
  >
4212
4581
  <div>
@@ -4215,11 +4584,22 @@ section: components
4215
4584
  >Node 4</div>
4216
4585
  <a href="#">siemur/test-space</a>
4217
4586
  </div>
4218
- </th>
4219
-
4587
+ </td>
4220
4588
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
4221
4589
  <span>
4222
- <i class="fas fa-code-branch"></i> 3
4590
+ <svg
4591
+ class="pf-v6-svg"
4592
+ viewBox="0 0 384 512"
4593
+ fill="currentColor"
4594
+ aria-hidden="true"
4595
+ role="img"
4596
+ width="1em"
4597
+ height="1em"
4598
+ >
4599
+ <path
4600
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
4601
+ />
4602
+ </svg> 3
4223
4603
  </span>
4224
4604
  </td>
4225
4605
  <td
@@ -4228,7 +4608,19 @@ section: components
4228
4608
  data-label="Pull requests"
4229
4609
  >
4230
4610
  <span>
4231
- <i class="fas fa-code"></i> 8
4611
+ <svg
4612
+ class="pf-v6-svg"
4613
+ viewBox="0 0 640 512"
4614
+ fill="currentColor"
4615
+ aria-hidden="true"
4616
+ role="img"
4617
+ width="1em"
4618
+ height="1em"
4619
+ >
4620
+ <path
4621
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
4622
+ />
4623
+ </svg> 8
4232
4624
  </span>
4233
4625
  </td>
4234
4626
  <td
@@ -4237,7 +4629,19 @@ section: components
4237
4629
  data-label="Workspaces"
4238
4630
  >
4239
4631
  <span>
4240
- <i class="fas fa-cube"></i> 20
4632
+ <svg
4633
+ class="pf-v6-svg"
4634
+ viewBox="0 0 576 512"
4635
+ fill="currentColor"
4636
+ aria-hidden="true"
4637
+ role="img"
4638
+ width="1em"
4639
+ height="1em"
4640
+ >
4641
+ <path
4642
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
4643
+ />
4644
+ </svg> 20
4241
4645
  </span>
4242
4646
  </td>
4243
4647
  <td
@@ -4308,7 +4712,19 @@ section: components
4308
4712
  </td>
4309
4713
  <td class="pf-v6-c-table__td" role="cell" data-label="Branches">
4310
4714
  <span>
4311
- <i class="fas fa-code-branch"></i> 34
4715
+ <svg
4716
+ class="pf-v6-svg"
4717
+ viewBox="0 0 384 512"
4718
+ fill="currentColor"
4719
+ aria-hidden="true"
4720
+ role="img"
4721
+ width="1em"
4722
+ height="1em"
4723
+ >
4724
+ <path
4725
+ d="M384 144c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 36.4 24.3 67.1 57.5 76.8-.6 16.1-4.2 28.5-11 36.9-15.4 19.2-49.3 22.4-85.2 25.7-28.2 2.6-57.4 5.4-81.3 16.9v-144c32.5-10.2 56-40.5 56-76.3 0-44.2-35.8-80-80-80S0 35.8 0 80c0 35.8 23.5 66.1 56 76.3v199.3C23.5 365.9 0 396.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-34-21.2-63.1-51.2-74.6 3.1-5.2 7.8-9.8 14.9-13.4 16.2-8.2 40.4-10.4 66.1-12.8 42.2-3.9 90-8.4 118.2-43.4 14-17.4 21.1-39.8 21.6-67.9 31.6-10.8 54.4-40.7 54.4-75.9zM80 64c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16zm0 384c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zm224-320c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16z"
4726
+ />
4727
+ </svg> 34
4312
4728
  </span>
4313
4729
  </td>
4314
4730
  <td
@@ -4317,7 +4733,19 @@ section: components
4317
4733
  data-label="Pull requests"
4318
4734
  >
4319
4735
  <span>
4320
- <i class="fas fa-code"></i> 21
4736
+ <svg
4737
+ class="pf-v6-svg"
4738
+ viewBox="0 0 640 512"
4739
+ fill="currentColor"
4740
+ aria-hidden="true"
4741
+ role="img"
4742
+ width="1em"
4743
+ height="1em"
4744
+ >
4745
+ <path
4746
+ d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"
4747
+ />
4748
+ </svg> 21
4321
4749
  </span>
4322
4750
  </td>
4323
4751
  <td
@@ -4326,7 +4754,19 @@ section: components
4326
4754
  data-label="Workspaces"
4327
4755
  >
4328
4756
  <span>
4329
- <i class="fas fa-cube"></i> 26
4757
+ <svg
4758
+ class="pf-v6-svg"
4759
+ viewBox="0 0 576 512"
4760
+ fill="currentColor"
4761
+ aria-hidden="true"
4762
+ role="img"
4763
+ width="1em"
4764
+ height="1em"
4765
+ >
4766
+ <path
4767
+ d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"
4768
+ />
4769
+ </svg> 26
4330
4770
  </span>
4331
4771
  </td>
4332
4772
  <td