@patternfly/patternfly 6.5.0-prerelease.62 → 6.5.0-prerelease.64

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 (55) hide show
  1. package/components/Button/button.css +2 -2
  2. package/components/Button/button.scss +3 -3
  3. package/components/ClipboardCopy/clipboard-copy.css +7 -1
  4. package/components/ClipboardCopy/clipboard-copy.scss +10 -1
  5. package/components/Menu/menu.css +26 -19
  6. package/components/Menu/menu.scss +26 -19
  7. package/components/MenuToggle/menu-toggle.css +9 -5
  8. package/components/MenuToggle/menu-toggle.scss +12 -5
  9. package/components/_index.css +44 -27
  10. package/docs/components/Breadcrumb/examples/Breadcrumb.md +13 -1
  11. package/docs/components/CalendarMonth/examples/CalendarMonth.md +52 -4
  12. package/docs/components/Card/examples/Card.md +130 -10
  13. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +39 -38
  14. package/docs/components/DataList/examples/DataList.md +221 -17
  15. package/docs/components/DualListSelector/examples/DualListSelector.md +234 -18
  16. package/docs/components/Hint/examples/Hint.md +39 -3
  17. package/docs/components/InlineEdit/examples/InlineEdit.md +26 -2
  18. package/docs/components/InputGroup/examples/InputGroup.md +13 -1
  19. package/docs/components/Login/examples/Login.md +13 -1
  20. package/docs/components/Menu/examples/Menu.md +195 -15
  21. package/docs/components/MenuToggle/examples/MenuToggle.md +1331 -100
  22. package/docs/components/NotificationDrawer/examples/NotificationDrawer.md +481 -37
  23. package/docs/components/OverflowMenu/examples/overflow-menu.md +65 -5
  24. package/docs/components/Page/examples/Page.md +62 -15
  25. package/docs/components/Pagination/examples/Pagination.md +169 -13
  26. package/docs/components/Table/examples/Table.md +3461 -269
  27. package/docs/components/Toolbar/examples/Toolbar.md +507 -39
  28. package/docs/demos/AboutModal/examples/AboutModal.md +34 -4
  29. package/docs/demos/Alert/examples/Alert.md +102 -12
  30. package/docs/demos/BackToTop/examples/BackToTop.md +34 -4
  31. package/docs/demos/Banner/examples/Banner.md +68 -8
  32. package/docs/demos/Card/examples/Card.md +78 -6
  33. package/docs/demos/CardView/examples/CardView.md +214 -22
  34. package/docs/demos/Compass/examples/Compass.md +431 -56
  35. package/docs/demos/Dashboard/examples/Dashboard.md +71 -11
  36. package/docs/demos/DataList/examples/DataList.md +401 -53
  37. package/docs/demos/DescriptionList/examples/DescriptionList.md +115 -13
  38. package/docs/demos/Drawer/examples/Drawer.md +167 -17
  39. package/docs/demos/JumpLinks/examples/JumpLinks.md +188 -20
  40. package/docs/demos/Masthead/examples/Masthead.md +228 -30
  41. package/docs/demos/Modal/examples/Modal.md +204 -24
  42. package/docs/demos/Nav/examples/Nav.md +184 -28
  43. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +1015 -85
  44. package/docs/demos/Page/examples/Page.md +503 -58
  45. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +649 -97
  46. package/docs/demos/Skeleton/examples/Skeleton.md +34 -4
  47. package/docs/demos/Table/examples/Table.md +2641 -349
  48. package/docs/demos/Tabs/examples/Tabs.md +295 -31
  49. package/docs/demos/Toolbar/examples/Toolbar.md +675 -63
  50. package/docs/demos/Wizard/examples/Wizard.md +306 -36
  51. package/package.json +1 -1
  52. package/patternfly-no-globals.css +44 -27
  53. package/patternfly.css +44 -27
  54. package/patternfly.min.css +1 -1
  55. package/patternfly.min.css.map +1 -1
@@ -137,7 +137,19 @@ section: components
137
137
  aria-label="Notifications"
138
138
  >
139
139
  <span class="pf-v6-c-button__icon">
140
- <i class="pf-v6-pficon-bell" aria-hidden="true"></i>
140
+ <svg
141
+ class="pf-v6-svg"
142
+ viewBox="0 0 32 32"
143
+ fill="currentColor"
144
+ aria-hidden="true"
145
+ role="img"
146
+ width="1em"
147
+ height="1em"
148
+ >
149
+ <path
150
+ d="M28.75 22v3.5c0 .689-.561 1.25-1.25 1.25h-7.521c.005.084.021.166.021.25 0 2.206-1.794 4-4 4s-4-1.794-4-4c0-.084.016-.166.021-.25H4.5c-.689 0-1.25-.561-1.25-1.25V22a.75.75 0 0 1 .75-.75c1.24 0 2.25-1.009 2.25-2.25v-4c0-4.826 3.528-8.833 8.138-9.605A2.482 2.482 0 0 1 13.5 3.5C13.5 2.122 14.621 1 16 1s2.5 1.122 2.5 2.5c0 .761-.349 1.436-.888 1.895 4.61.772 8.138 4.779 8.138 9.605v4c0 1.241 1.01 2.25 2.25 2.25a.75.75 0 0 1 .75.75Z"
151
+ />
152
+ </svg>
141
153
  </span>
142
154
  </button>
143
155
  </div>
@@ -165,7 +177,19 @@ section: components
165
177
  aria-label="Settings"
166
178
  >
167
179
  <span class="pf-v6-c-menu-toggle__icon">
168
- <i class="fas fa-cog" aria-hidden="true"></i>
180
+ <svg
181
+ class="pf-v6-svg"
182
+ viewBox="0 0 32 32"
183
+ fill="currentColor"
184
+ aria-hidden="true"
185
+ role="img"
186
+ width="1em"
187
+ height="1em"
188
+ >
189
+ <path
190
+ 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"
191
+ />
192
+ </svg>
169
193
  </span>
170
194
  </button>
171
195
  </div>
@@ -191,7 +215,19 @@ section: components
191
215
  aria-label="Actions"
192
216
  >
193
217
  <span class="pf-v6-c-menu-toggle__icon">
194
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
218
+ <svg
219
+ class="pf-v6-svg"
220
+ viewBox="0 0 32 32"
221
+ fill="currentColor"
222
+ aria-hidden="true"
223
+ role="img"
224
+ width="1em"
225
+ height="1em"
226
+ >
227
+ <path
228
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
229
+ />
230
+ </svg>
195
231
  </span>
196
232
  </button>
197
233
  </div>
@@ -327,9 +363,15 @@ section: components
327
363
  </nav>
328
364
  </div>
329
365
  </section>
330
- <section class="pf-v6-c-page__main-section pf-m-limit-width">
366
+ <section
367
+ class="pf-v6-c-page__main-section pf-m-limit-width"
368
+ aria-labelledby="main-title"
369
+ >
331
370
  <div class="pf-v6-c-page__main-body">
332
- <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
371
+ <h1
372
+ class="pf-v6-c-content--h1 pf-m-page-title"
373
+ id="main-title"
374
+ >Main title</h1>
333
375
  <p class="pf-v6-c-content--p">This is a full page demo.</p>
334
376
  </div>
335
377
  </section>
@@ -391,7 +433,19 @@ section: components
391
433
  id="drawer-demo-notification-drawer-basic-header-action"
392
434
  >
393
435
  <span class="pf-v6-c-menu-toggle__icon">
394
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
436
+ <svg
437
+ class="pf-v6-svg"
438
+ viewBox="0 0 32 32"
439
+ fill="currentColor"
440
+ aria-hidden="true"
441
+ role="img"
442
+ width="1em"
443
+ height="1em"
444
+ >
445
+ <path
446
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
447
+ />
448
+ </svg>
395
449
  </span>
396
450
  </button>
397
451
  </div>
@@ -436,7 +490,19 @@ section: components
436
490
  id="drawer-demo-notification-drawer-basic-menu-toggle-1"
437
491
  >
438
492
  <span class="pf-v6-c-menu-toggle__icon">
439
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
493
+ <svg
494
+ class="pf-v6-svg"
495
+ viewBox="0 0 32 32"
496
+ fill="currentColor"
497
+ aria-hidden="true"
498
+ role="img"
499
+ width="1em"
500
+ height="1em"
501
+ >
502
+ <path
503
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
504
+ />
505
+ </svg>
440
506
  </span>
441
507
  </button>
442
508
  </div>
@@ -486,7 +552,19 @@ section: components
486
552
  id="drawer-demo-notification-drawer-basic-menu-toggle-3"
487
553
  >
488
554
  <span class="pf-v6-c-menu-toggle__icon">
489
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
555
+ <svg
556
+ class="pf-v6-svg"
557
+ viewBox="0 0 32 32"
558
+ fill="currentColor"
559
+ aria-hidden="true"
560
+ role="img"
561
+ width="1em"
562
+ height="1em"
563
+ >
564
+ <path
565
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
566
+ />
567
+ </svg>
490
568
  </span>
491
569
  </button>
492
570
  </div>
@@ -536,7 +614,19 @@ section: components
536
614
  id="drawer-demo-notification-drawer-basic-menu-toggle-4"
537
615
  >
538
616
  <span class="pf-v6-c-menu-toggle__icon">
539
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
617
+ <svg
618
+ class="pf-v6-svg"
619
+ viewBox="0 0 32 32"
620
+ fill="currentColor"
621
+ aria-hidden="true"
622
+ role="img"
623
+ width="1em"
624
+ height="1em"
625
+ >
626
+ <path
627
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
628
+ />
629
+ </svg>
540
630
  </span>
541
631
  </button>
542
632
  </div>
@@ -584,7 +674,19 @@ section: components
584
674
  id="drawer-demo-notification-drawer-basic-menu-toggle-5"
585
675
  >
586
676
  <span class="pf-v6-c-menu-toggle__icon">
587
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
677
+ <svg
678
+ class="pf-v6-svg"
679
+ viewBox="0 0 32 32"
680
+ fill="currentColor"
681
+ aria-hidden="true"
682
+ role="img"
683
+ width="1em"
684
+ height="1em"
685
+ >
686
+ <path
687
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
688
+ />
689
+ </svg>
588
690
  </span>
589
691
  </button>
590
692
  </div>
@@ -632,7 +734,19 @@ section: components
632
734
  id="drawer-demo-notification-drawer-basic-menu-toggle-6"
633
735
  >
634
736
  <span class="pf-v6-c-menu-toggle__icon">
635
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
737
+ <svg
738
+ class="pf-v6-svg"
739
+ viewBox="0 0 32 32"
740
+ fill="currentColor"
741
+ aria-hidden="true"
742
+ role="img"
743
+ width="1em"
744
+ height="1em"
745
+ >
746
+ <path
747
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
748
+ />
749
+ </svg>
636
750
  </span>
637
751
  </button>
638
752
  </div>
@@ -680,7 +794,19 @@ section: components
680
794
  id="drawer-demo-notification-drawer-basic-menu-toggle-7"
681
795
  >
682
796
  <span class="pf-v6-c-menu-toggle__icon">
683
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
797
+ <svg
798
+ class="pf-v6-svg"
799
+ viewBox="0 0 32 32"
800
+ fill="currentColor"
801
+ aria-hidden="true"
802
+ role="img"
803
+ width="1em"
804
+ height="1em"
805
+ >
806
+ <path
807
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
808
+ />
809
+ </svg>
684
810
  </span>
685
811
  </button>
686
812
  </div>
@@ -729,7 +855,19 @@ section: components
729
855
  id="drawer-demo-notification-drawer-basic-menu-toggle-8"
730
856
  >
731
857
  <span class="pf-v6-c-menu-toggle__icon">
732
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
858
+ <svg
859
+ class="pf-v6-svg"
860
+ viewBox="0 0 32 32"
861
+ fill="currentColor"
862
+ aria-hidden="true"
863
+ role="img"
864
+ width="1em"
865
+ height="1em"
866
+ >
867
+ <path
868
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
869
+ />
870
+ </svg>
733
871
  </span>
734
872
  </button>
735
873
  </div>
@@ -928,7 +1066,19 @@ section: components
928
1066
  aria-label="Notifications"
929
1067
  >
930
1068
  <span class="pf-v6-c-button__icon">
931
- <i class="pf-v6-pficon-bell" aria-hidden="true"></i>
1069
+ <svg
1070
+ class="pf-v6-svg"
1071
+ viewBox="0 0 32 32"
1072
+ fill="currentColor"
1073
+ aria-hidden="true"
1074
+ role="img"
1075
+ width="1em"
1076
+ height="1em"
1077
+ >
1078
+ <path
1079
+ d="M28.75 22v3.5c0 .689-.561 1.25-1.25 1.25h-7.521c.005.084.021.166.021.25 0 2.206-1.794 4-4 4s-4-1.794-4-4c0-.084.016-.166.021-.25H4.5c-.689 0-1.25-.561-1.25-1.25V22a.75.75 0 0 1 .75-.75c1.24 0 2.25-1.009 2.25-2.25v-4c0-4.826 3.528-8.833 8.138-9.605A2.482 2.482 0 0 1 13.5 3.5C13.5 2.122 14.621 1 16 1s2.5 1.122 2.5 2.5c0 .761-.349 1.436-.888 1.895 4.61.772 8.138 4.779 8.138 9.605v4c0 1.241 1.01 2.25 2.25 2.25a.75.75 0 0 1 .75.75Z"
1080
+ />
1081
+ </svg>
932
1082
  </span>
933
1083
  </button>
934
1084
  </div>
@@ -956,7 +1106,19 @@ section: components
956
1106
  aria-label="Settings"
957
1107
  >
958
1108
  <span class="pf-v6-c-menu-toggle__icon">
959
- <i class="fas fa-cog" aria-hidden="true"></i>
1109
+ <svg
1110
+ class="pf-v6-svg"
1111
+ viewBox="0 0 32 32"
1112
+ fill="currentColor"
1113
+ aria-hidden="true"
1114
+ role="img"
1115
+ width="1em"
1116
+ height="1em"
1117
+ >
1118
+ <path
1119
+ 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"
1120
+ />
1121
+ </svg>
960
1122
  </span>
961
1123
  </button>
962
1124
  </div>
@@ -982,7 +1144,19 @@ section: components
982
1144
  aria-label="Actions"
983
1145
  >
984
1146
  <span class="pf-v6-c-menu-toggle__icon">
985
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
1147
+ <svg
1148
+ class="pf-v6-svg"
1149
+ viewBox="0 0 32 32"
1150
+ fill="currentColor"
1151
+ aria-hidden="true"
1152
+ role="img"
1153
+ width="1em"
1154
+ height="1em"
1155
+ >
1156
+ <path
1157
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
1158
+ />
1159
+ </svg>
986
1160
  </span>
987
1161
  </button>
988
1162
  </div>
@@ -1118,9 +1292,15 @@ section: components
1118
1292
  </nav>
1119
1293
  </div>
1120
1294
  </section>
1121
- <section class="pf-v6-c-page__main-section pf-m-limit-width">
1295
+ <section
1296
+ class="pf-v6-c-page__main-section pf-m-limit-width"
1297
+ aria-labelledby="main-title"
1298
+ >
1122
1299
  <div class="pf-v6-c-page__main-body">
1123
- <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
1300
+ <h1
1301
+ class="pf-v6-c-content--h1 pf-m-page-title"
1302
+ id="main-title"
1303
+ >Main title</h1>
1124
1304
  <p class="pf-v6-c-content--p">This is a full page demo.</p>
1125
1305
  </div>
1126
1306
  </section>
@@ -1182,7 +1362,19 @@ section: components
1182
1362
  id="drawer-demo-notification-drawer-basic-header-action"
1183
1363
  >
1184
1364
  <span class="pf-v6-c-menu-toggle__icon">
1185
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
1365
+ <svg
1366
+ class="pf-v6-svg"
1367
+ viewBox="0 0 32 32"
1368
+ fill="currentColor"
1369
+ aria-hidden="true"
1370
+ role="img"
1371
+ width="1em"
1372
+ height="1em"
1373
+ >
1374
+ <path
1375
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
1376
+ />
1377
+ </svg>
1186
1378
  </span>
1187
1379
  </button>
1188
1380
  </div>
@@ -1227,7 +1419,19 @@ section: components
1227
1419
  id="drawer-demo-notification-drawer-basic-menu-toggle-1"
1228
1420
  >
1229
1421
  <span class="pf-v6-c-menu-toggle__icon">
1230
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
1422
+ <svg
1423
+ class="pf-v6-svg"
1424
+ viewBox="0 0 32 32"
1425
+ fill="currentColor"
1426
+ aria-hidden="true"
1427
+ role="img"
1428
+ width="1em"
1429
+ height="1em"
1430
+ >
1431
+ <path
1432
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
1433
+ />
1434
+ </svg>
1231
1435
  </span>
1232
1436
  </button>
1233
1437
  </div>
@@ -1277,7 +1481,19 @@ section: components
1277
1481
  id="drawer-demo-notification-drawer-basic-menu-toggle-3"
1278
1482
  >
1279
1483
  <span class="pf-v6-c-menu-toggle__icon">
1280
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
1484
+ <svg
1485
+ class="pf-v6-svg"
1486
+ viewBox="0 0 32 32"
1487
+ fill="currentColor"
1488
+ aria-hidden="true"
1489
+ role="img"
1490
+ width="1em"
1491
+ height="1em"
1492
+ >
1493
+ <path
1494
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
1495
+ />
1496
+ </svg>
1281
1497
  </span>
1282
1498
  </button>
1283
1499
  </div>
@@ -1327,7 +1543,19 @@ section: components
1327
1543
  id="drawer-demo-notification-drawer-basic-menu-toggle-4"
1328
1544
  >
1329
1545
  <span class="pf-v6-c-menu-toggle__icon">
1330
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
1546
+ <svg
1547
+ class="pf-v6-svg"
1548
+ viewBox="0 0 32 32"
1549
+ fill="currentColor"
1550
+ aria-hidden="true"
1551
+ role="img"
1552
+ width="1em"
1553
+ height="1em"
1554
+ >
1555
+ <path
1556
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
1557
+ />
1558
+ </svg>
1331
1559
  </span>
1332
1560
  </button>
1333
1561
  </div>
@@ -1375,7 +1603,19 @@ section: components
1375
1603
  id="drawer-demo-notification-drawer-basic-menu-toggle-5"
1376
1604
  >
1377
1605
  <span class="pf-v6-c-menu-toggle__icon">
1378
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
1606
+ <svg
1607
+ class="pf-v6-svg"
1608
+ viewBox="0 0 32 32"
1609
+ fill="currentColor"
1610
+ aria-hidden="true"
1611
+ role="img"
1612
+ width="1em"
1613
+ height="1em"
1614
+ >
1615
+ <path
1616
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
1617
+ />
1618
+ </svg>
1379
1619
  </span>
1380
1620
  </button>
1381
1621
  </div>
@@ -1423,7 +1663,19 @@ section: components
1423
1663
  id="drawer-demo-notification-drawer-basic-menu-toggle-6"
1424
1664
  >
1425
1665
  <span class="pf-v6-c-menu-toggle__icon">
1426
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
1666
+ <svg
1667
+ class="pf-v6-svg"
1668
+ viewBox="0 0 32 32"
1669
+ fill="currentColor"
1670
+ aria-hidden="true"
1671
+ role="img"
1672
+ width="1em"
1673
+ height="1em"
1674
+ >
1675
+ <path
1676
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
1677
+ />
1678
+ </svg>
1427
1679
  </span>
1428
1680
  </button>
1429
1681
  </div>
@@ -1471,7 +1723,19 @@ section: components
1471
1723
  id="drawer-demo-notification-drawer-basic-menu-toggle-7"
1472
1724
  >
1473
1725
  <span class="pf-v6-c-menu-toggle__icon">
1474
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
1726
+ <svg
1727
+ class="pf-v6-svg"
1728
+ viewBox="0 0 32 32"
1729
+ fill="currentColor"
1730
+ aria-hidden="true"
1731
+ role="img"
1732
+ width="1em"
1733
+ height="1em"
1734
+ >
1735
+ <path
1736
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
1737
+ />
1738
+ </svg>
1475
1739
  </span>
1476
1740
  </button>
1477
1741
  </div>
@@ -1520,7 +1784,19 @@ section: components
1520
1784
  id="drawer-demo-notification-drawer-basic-menu-toggle-8"
1521
1785
  >
1522
1786
  <span class="pf-v6-c-menu-toggle__icon">
1523
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
1787
+ <svg
1788
+ class="pf-v6-svg"
1789
+ viewBox="0 0 32 32"
1790
+ fill="currentColor"
1791
+ aria-hidden="true"
1792
+ role="img"
1793
+ width="1em"
1794
+ height="1em"
1795
+ >
1796
+ <path
1797
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
1798
+ />
1799
+ </svg>
1524
1800
  </span>
1525
1801
  </button>
1526
1802
  </div>
@@ -1719,7 +1995,19 @@ section: components
1719
1995
  aria-label="Unread notifications"
1720
1996
  >
1721
1997
  <span class="pf-v6-c-button__icon">
1722
- <i class="pf-v6-pficon-bell" aria-hidden="true"></i>
1998
+ <svg
1999
+ class="pf-v6-svg"
2000
+ viewBox="0 0 32 32"
2001
+ fill="currentColor"
2002
+ aria-hidden="true"
2003
+ role="img"
2004
+ width="1em"
2005
+ height="1em"
2006
+ >
2007
+ <path
2008
+ d="M28.75 22v3.5c0 .689-.561 1.25-1.25 1.25h-7.521c.005.084.021.166.021.25 0 2.206-1.794 4-4 4s-4-1.794-4-4c0-.084.016-.166.021-.25H4.5c-.689 0-1.25-.561-1.25-1.25V22a.75.75 0 0 1 .75-.75c1.24 0 2.25-1.009 2.25-2.25v-4c0-4.826 3.528-8.833 8.138-9.605A2.482 2.482 0 0 1 13.5 3.5C13.5 2.122 14.621 1 16 1s2.5 1.122 2.5 2.5c0 .761-.349 1.436-.888 1.895 4.61.772 8.138 4.779 8.138 9.605v4c0 1.241 1.01 2.25 2.25 2.25a.75.75 0 0 1 .75.75Z"
2009
+ />
2010
+ </svg>
1723
2011
  </span>
1724
2012
  </button>
1725
2013
  </div>
@@ -1747,7 +2035,19 @@ section: components
1747
2035
  aria-label="Settings"
1748
2036
  >
1749
2037
  <span class="pf-v6-c-menu-toggle__icon">
1750
- <i class="fas fa-cog" aria-hidden="true"></i>
2038
+ <svg
2039
+ class="pf-v6-svg"
2040
+ viewBox="0 0 32 32"
2041
+ fill="currentColor"
2042
+ aria-hidden="true"
2043
+ role="img"
2044
+ width="1em"
2045
+ height="1em"
2046
+ >
2047
+ <path
2048
+ 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"
2049
+ />
2050
+ </svg>
1751
2051
  </span>
1752
2052
  </button>
1753
2053
  </div>
@@ -1773,7 +2073,19 @@ section: components
1773
2073
  aria-label="Actions"
1774
2074
  >
1775
2075
  <span class="pf-v6-c-menu-toggle__icon">
1776
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
2076
+ <svg
2077
+ class="pf-v6-svg"
2078
+ viewBox="0 0 32 32"
2079
+ fill="currentColor"
2080
+ aria-hidden="true"
2081
+ role="img"
2082
+ width="1em"
2083
+ height="1em"
2084
+ >
2085
+ <path
2086
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
2087
+ />
2088
+ </svg>
1777
2089
  </span>
1778
2090
  </button>
1779
2091
  </div>
@@ -1909,9 +2221,15 @@ section: components
1909
2221
  </nav>
1910
2222
  </div>
1911
2223
  </section>
1912
- <section class="pf-v6-c-page__main-section pf-m-limit-width">
2224
+ <section
2225
+ class="pf-v6-c-page__main-section pf-m-limit-width"
2226
+ aria-labelledby="main-title"
2227
+ >
1913
2228
  <div class="pf-v6-c-page__main-body">
1914
- <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
2229
+ <h1
2230
+ class="pf-v6-c-content--h1 pf-m-page-title"
2231
+ id="main-title"
2232
+ >Main title</h1>
1915
2233
  <p class="pf-v6-c-content--p">This is a full page demo.</p>
1916
2234
  </div>
1917
2235
  </section>
@@ -1973,7 +2291,19 @@ section: components
1973
2291
  id="drawer-demo-notification-drawer-basic-header-action"
1974
2292
  >
1975
2293
  <span class="pf-v6-c-menu-toggle__icon">
1976
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
2294
+ <svg
2295
+ class="pf-v6-svg"
2296
+ viewBox="0 0 32 32"
2297
+ fill="currentColor"
2298
+ aria-hidden="true"
2299
+ role="img"
2300
+ width="1em"
2301
+ height="1em"
2302
+ >
2303
+ <path
2304
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
2305
+ />
2306
+ </svg>
1977
2307
  </span>
1978
2308
  </button>
1979
2309
  </div>
@@ -2019,7 +2349,19 @@ section: components
2019
2349
  id="drawer-demo-notification-drawer-basic-menu-toggle-1"
2020
2350
  >
2021
2351
  <span class="pf-v6-c-menu-toggle__icon">
2022
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
2352
+ <svg
2353
+ class="pf-v6-svg"
2354
+ viewBox="0 0 32 32"
2355
+ fill="currentColor"
2356
+ aria-hidden="true"
2357
+ role="img"
2358
+ width="1em"
2359
+ height="1em"
2360
+ >
2361
+ <path
2362
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
2363
+ />
2364
+ </svg>
2023
2365
  </span>
2024
2366
  </button>
2025
2367
  </div>
@@ -2070,7 +2412,19 @@ section: components
2070
2412
  id="drawer-demo-notification-drawer-basic-menu-toggle-3"
2071
2413
  >
2072
2414
  <span class="pf-v6-c-menu-toggle__icon">
2073
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
2415
+ <svg
2416
+ class="pf-v6-svg"
2417
+ viewBox="0 0 32 32"
2418
+ fill="currentColor"
2419
+ aria-hidden="true"
2420
+ role="img"
2421
+ width="1em"
2422
+ height="1em"
2423
+ >
2424
+ <path
2425
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
2426
+ />
2427
+ </svg>
2074
2428
  </span>
2075
2429
  </button>
2076
2430
  </div>
@@ -2121,7 +2475,19 @@ section: components
2121
2475
  id="drawer-demo-notification-drawer-basic-menu-toggle-4"
2122
2476
  >
2123
2477
  <span class="pf-v6-c-menu-toggle__icon">
2124
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
2478
+ <svg
2479
+ class="pf-v6-svg"
2480
+ viewBox="0 0 32 32"
2481
+ fill="currentColor"
2482
+ aria-hidden="true"
2483
+ role="img"
2484
+ width="1em"
2485
+ height="1em"
2486
+ >
2487
+ <path
2488
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
2489
+ />
2490
+ </svg>
2125
2491
  </span>
2126
2492
  </button>
2127
2493
  </div>
@@ -2169,7 +2535,19 @@ section: components
2169
2535
  id="drawer-demo-notification-drawer-basic-menu-toggle-5"
2170
2536
  >
2171
2537
  <span class="pf-v6-c-menu-toggle__icon">
2172
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
2538
+ <svg
2539
+ class="pf-v6-svg"
2540
+ viewBox="0 0 32 32"
2541
+ fill="currentColor"
2542
+ aria-hidden="true"
2543
+ role="img"
2544
+ width="1em"
2545
+ height="1em"
2546
+ >
2547
+ <path
2548
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
2549
+ />
2550
+ </svg>
2173
2551
  </span>
2174
2552
  </button>
2175
2553
  </div>
@@ -2217,7 +2595,19 @@ section: components
2217
2595
  id="drawer-demo-notification-drawer-basic-menu-toggle-6"
2218
2596
  >
2219
2597
  <span class="pf-v6-c-menu-toggle__icon">
2220
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
2598
+ <svg
2599
+ class="pf-v6-svg"
2600
+ viewBox="0 0 32 32"
2601
+ fill="currentColor"
2602
+ aria-hidden="true"
2603
+ role="img"
2604
+ width="1em"
2605
+ height="1em"
2606
+ >
2607
+ <path
2608
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
2609
+ />
2610
+ </svg>
2221
2611
  </span>
2222
2612
  </button>
2223
2613
  </div>
@@ -2265,7 +2655,19 @@ section: components
2265
2655
  id="drawer-demo-notification-drawer-basic-menu-toggle-7"
2266
2656
  >
2267
2657
  <span class="pf-v6-c-menu-toggle__icon">
2268
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
2658
+ <svg
2659
+ class="pf-v6-svg"
2660
+ viewBox="0 0 32 32"
2661
+ fill="currentColor"
2662
+ aria-hidden="true"
2663
+ role="img"
2664
+ width="1em"
2665
+ height="1em"
2666
+ >
2667
+ <path
2668
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
2669
+ />
2670
+ </svg>
2269
2671
  </span>
2270
2672
  </button>
2271
2673
  </div>
@@ -2314,7 +2716,19 @@ section: components
2314
2716
  id="drawer-demo-notification-drawer-basic-menu-toggle-8"
2315
2717
  >
2316
2718
  <span class="pf-v6-c-menu-toggle__icon">
2317
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
2719
+ <svg
2720
+ class="pf-v6-svg"
2721
+ viewBox="0 0 32 32"
2722
+ fill="currentColor"
2723
+ aria-hidden="true"
2724
+ role="img"
2725
+ width="1em"
2726
+ height="1em"
2727
+ >
2728
+ <path
2729
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
2730
+ />
2731
+ </svg>
2318
2732
  </span>
2319
2733
  </button>
2320
2734
  </div>
@@ -2513,7 +2927,19 @@ section: components
2513
2927
  aria-label="Attention notifications"
2514
2928
  >
2515
2929
  <span class="pf-v6-c-button__icon">
2516
- <i class="pf-v6-pficon-attention-bell" aria-hidden="true"></i>
2930
+ <svg
2931
+ class="pf-v6-svg"
2932
+ viewBox="0 0 32 32"
2933
+ fill="currentColor"
2934
+ aria-hidden="true"
2935
+ role="img"
2936
+ width="1em"
2937
+ height="1em"
2938
+ >
2939
+ <path
2940
+ d="M28 21c-1.103 0-2-.897-2-2v-4c0-4.884-3.523-8.955-8.159-9.823.405-.444.659-1.03.659-1.677C18.5 2.121 17.379 1 16 1s-2.5 1.121-2.5 2.5c0 .648.254 1.233.659 1.677C9.523 6.045 6 10.116 6 15v4c0 1.103-.897 2-2 2a1 1 0 0 0-1 1v3.5c0 .827.673 1.5 1.5 1.5H12c0 2.206 1.794 4 4 4s4-1.794 4-4h7.5c.827 0 1.5-.673 1.5-1.5V22a1 1 0 0 0-1-1ZM14.5 11a1.5 1.5 0 0 1 3 0v5a1.5 1.5 0 0 1-3 0v-5ZM16 24.014a2 2 0 1 1-.001-3.999A2 2 0 0 1 16 24.014Z"
2941
+ />
2942
+ </svg>
2517
2943
  </span>
2518
2944
  </button>
2519
2945
  </div>
@@ -2541,7 +2967,19 @@ section: components
2541
2967
  aria-label="Settings"
2542
2968
  >
2543
2969
  <span class="pf-v6-c-menu-toggle__icon">
2544
- <i class="fas fa-cog" aria-hidden="true"></i>
2970
+ <svg
2971
+ class="pf-v6-svg"
2972
+ viewBox="0 0 32 32"
2973
+ fill="currentColor"
2974
+ aria-hidden="true"
2975
+ role="img"
2976
+ width="1em"
2977
+ height="1em"
2978
+ >
2979
+ <path
2980
+ 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"
2981
+ />
2982
+ </svg>
2545
2983
  </span>
2546
2984
  </button>
2547
2985
  </div>
@@ -2567,7 +3005,19 @@ section: components
2567
3005
  aria-label="Actions"
2568
3006
  >
2569
3007
  <span class="pf-v6-c-menu-toggle__icon">
2570
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
3008
+ <svg
3009
+ class="pf-v6-svg"
3010
+ viewBox="0 0 32 32"
3011
+ fill="currentColor"
3012
+ aria-hidden="true"
3013
+ role="img"
3014
+ width="1em"
3015
+ height="1em"
3016
+ >
3017
+ <path
3018
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
3019
+ />
3020
+ </svg>
2571
3021
  </span>
2572
3022
  </button>
2573
3023
  </div>
@@ -2703,9 +3153,15 @@ section: components
2703
3153
  </nav>
2704
3154
  </div>
2705
3155
  </section>
2706
- <section class="pf-v6-c-page__main-section pf-m-limit-width">
3156
+ <section
3157
+ class="pf-v6-c-page__main-section pf-m-limit-width"
3158
+ aria-labelledby="main-title"
3159
+ >
2707
3160
  <div class="pf-v6-c-page__main-body">
2708
- <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
3161
+ <h1
3162
+ class="pf-v6-c-content--h1 pf-m-page-title"
3163
+ id="main-title"
3164
+ >Main title</h1>
2709
3165
  <p class="pf-v6-c-content--p">This is a full page demo.</p>
2710
3166
  </div>
2711
3167
  </section>
@@ -2767,7 +3223,19 @@ section: components
2767
3223
  id="drawer-demo-notification-drawer-basic-header-action"
2768
3224
  >
2769
3225
  <span class="pf-v6-c-menu-toggle__icon">
2770
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
3226
+ <svg
3227
+ class="pf-v6-svg"
3228
+ viewBox="0 0 32 32"
3229
+ fill="currentColor"
3230
+ aria-hidden="true"
3231
+ role="img"
3232
+ width="1em"
3233
+ height="1em"
3234
+ >
3235
+ <path
3236
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
3237
+ />
3238
+ </svg>
2771
3239
  </span>
2772
3240
  </button>
2773
3241
  </div>
@@ -2813,7 +3281,19 @@ section: components
2813
3281
  id="drawer-demo-notification-drawer-basic-menu-toggle-1"
2814
3282
  >
2815
3283
  <span class="pf-v6-c-menu-toggle__icon">
2816
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
3284
+ <svg
3285
+ class="pf-v6-svg"
3286
+ viewBox="0 0 32 32"
3287
+ fill="currentColor"
3288
+ aria-hidden="true"
3289
+ role="img"
3290
+ width="1em"
3291
+ height="1em"
3292
+ >
3293
+ <path
3294
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
3295
+ />
3296
+ </svg>
2817
3297
  </span>
2818
3298
  </button>
2819
3299
  </div>
@@ -2910,7 +3390,19 @@ section: components
2910
3390
  id="drawer-demo-notification-drawer-basic-menu-toggle-4"
2911
3391
  >
2912
3392
  <span class="pf-v6-c-menu-toggle__icon">
2913
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
3393
+ <svg
3394
+ class="pf-v6-svg"
3395
+ viewBox="0 0 32 32"
3396
+ fill="currentColor"
3397
+ aria-hidden="true"
3398
+ role="img"
3399
+ width="1em"
3400
+ height="1em"
3401
+ >
3402
+ <path
3403
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
3404
+ />
3405
+ </svg>
2914
3406
  </span>
2915
3407
  </button>
2916
3408
  </div>
@@ -2958,7 +3450,19 @@ section: components
2958
3450
  id="drawer-demo-notification-drawer-basic-menu-toggle-5"
2959
3451
  >
2960
3452
  <span class="pf-v6-c-menu-toggle__icon">
2961
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
3453
+ <svg
3454
+ class="pf-v6-svg"
3455
+ viewBox="0 0 32 32"
3456
+ fill="currentColor"
3457
+ aria-hidden="true"
3458
+ role="img"
3459
+ width="1em"
3460
+ height="1em"
3461
+ >
3462
+ <path
3463
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
3464
+ />
3465
+ </svg>
2962
3466
  </span>
2963
3467
  </button>
2964
3468
  </div>
@@ -3006,7 +3510,19 @@ section: components
3006
3510
  id="drawer-demo-notification-drawer-basic-menu-toggle-6"
3007
3511
  >
3008
3512
  <span class="pf-v6-c-menu-toggle__icon">
3009
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
3513
+ <svg
3514
+ class="pf-v6-svg"
3515
+ viewBox="0 0 32 32"
3516
+ fill="currentColor"
3517
+ aria-hidden="true"
3518
+ role="img"
3519
+ width="1em"
3520
+ height="1em"
3521
+ >
3522
+ <path
3523
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
3524
+ />
3525
+ </svg>
3010
3526
  </span>
3011
3527
  </button>
3012
3528
  </div>
@@ -3054,7 +3570,19 @@ section: components
3054
3570
  id="drawer-demo-notification-drawer-basic-menu-toggle-7"
3055
3571
  >
3056
3572
  <span class="pf-v6-c-menu-toggle__icon">
3057
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
3573
+ <svg
3574
+ class="pf-v6-svg"
3575
+ viewBox="0 0 32 32"
3576
+ fill="currentColor"
3577
+ aria-hidden="true"
3578
+ role="img"
3579
+ width="1em"
3580
+ height="1em"
3581
+ >
3582
+ <path
3583
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
3584
+ />
3585
+ </svg>
3058
3586
  </span>
3059
3587
  </button>
3060
3588
  </div>
@@ -3103,7 +3631,19 @@ section: components
3103
3631
  id="drawer-demo-notification-drawer-basic-menu-toggle-8"
3104
3632
  >
3105
3633
  <span class="pf-v6-c-menu-toggle__icon">
3106
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
3634
+ <svg
3635
+ class="pf-v6-svg"
3636
+ viewBox="0 0 32 32"
3637
+ fill="currentColor"
3638
+ aria-hidden="true"
3639
+ role="img"
3640
+ width="1em"
3641
+ height="1em"
3642
+ >
3643
+ <path
3644
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
3645
+ />
3646
+ </svg>
3107
3647
  </span>
3108
3648
  </button>
3109
3649
  </div>
@@ -3302,7 +3842,19 @@ section: components
3302
3842
  aria-label="Unread notifications"
3303
3843
  >
3304
3844
  <span class="pf-v6-c-button__icon">
3305
- <i class="pf-v6-pficon-bell" aria-hidden="true"></i>
3845
+ <svg
3846
+ class="pf-v6-svg"
3847
+ viewBox="0 0 32 32"
3848
+ fill="currentColor"
3849
+ aria-hidden="true"
3850
+ role="img"
3851
+ width="1em"
3852
+ height="1em"
3853
+ >
3854
+ <path
3855
+ d="M28.75 22v3.5c0 .689-.561 1.25-1.25 1.25h-7.521c.005.084.021.166.021.25 0 2.206-1.794 4-4 4s-4-1.794-4-4c0-.084.016-.166.021-.25H4.5c-.689 0-1.25-.561-1.25-1.25V22a.75.75 0 0 1 .75-.75c1.24 0 2.25-1.009 2.25-2.25v-4c0-4.826 3.528-8.833 8.138-9.605A2.482 2.482 0 0 1 13.5 3.5C13.5 2.122 14.621 1 16 1s2.5 1.122 2.5 2.5c0 .761-.349 1.436-.888 1.895 4.61.772 8.138 4.779 8.138 9.605v4c0 1.241 1.01 2.25 2.25 2.25a.75.75 0 0 1 .75.75Z"
3856
+ />
3857
+ </svg>
3306
3858
  </span>
3307
3859
  </button>
3308
3860
  </div>
@@ -3330,7 +3882,19 @@ section: components
3330
3882
  aria-label="Settings"
3331
3883
  >
3332
3884
  <span class="pf-v6-c-menu-toggle__icon">
3333
- <i class="fas fa-cog" aria-hidden="true"></i>
3885
+ <svg
3886
+ class="pf-v6-svg"
3887
+ viewBox="0 0 32 32"
3888
+ fill="currentColor"
3889
+ aria-hidden="true"
3890
+ role="img"
3891
+ width="1em"
3892
+ height="1em"
3893
+ >
3894
+ <path
3895
+ 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"
3896
+ />
3897
+ </svg>
3334
3898
  </span>
3335
3899
  </button>
3336
3900
  </div>
@@ -3356,7 +3920,19 @@ section: components
3356
3920
  aria-label="Actions"
3357
3921
  >
3358
3922
  <span class="pf-v6-c-menu-toggle__icon">
3359
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
3923
+ <svg
3924
+ class="pf-v6-svg"
3925
+ viewBox="0 0 32 32"
3926
+ fill="currentColor"
3927
+ aria-hidden="true"
3928
+ role="img"
3929
+ width="1em"
3930
+ height="1em"
3931
+ >
3932
+ <path
3933
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
3934
+ />
3935
+ </svg>
3360
3936
  </span>
3361
3937
  </button>
3362
3938
  </div>
@@ -3492,9 +4068,15 @@ section: components
3492
4068
  </nav>
3493
4069
  </div>
3494
4070
  </section>
3495
- <section class="pf-v6-c-page__main-section pf-m-limit-width">
4071
+ <section
4072
+ class="pf-v6-c-page__main-section pf-m-limit-width"
4073
+ aria-labelledby="main-title"
4074
+ >
3496
4075
  <div class="pf-v6-c-page__main-body">
3497
- <h1 class="pf-v6-c-content--h1 pf-m-page-title">Main title</h1>
4076
+ <h1
4077
+ class="pf-v6-c-content--h1 pf-m-page-title"
4078
+ id="main-title"
4079
+ >Main title</h1>
3498
4080
  <p class="pf-v6-c-content--p">This is a full page demo.</p>
3499
4081
  </div>
3500
4082
  </section>
@@ -3556,7 +4138,19 @@ section: components
3556
4138
  id="drawer-demo-notification-drawer-groups-header-action"
3557
4139
  >
3558
4140
  <span class="pf-v6-c-menu-toggle__icon">
3559
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4141
+ <svg
4142
+ class="pf-v6-svg"
4143
+ viewBox="0 0 32 32"
4144
+ fill="currentColor"
4145
+ aria-hidden="true"
4146
+ role="img"
4147
+ width="1em"
4148
+ height="1em"
4149
+ >
4150
+ <path
4151
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4152
+ />
4153
+ </svg>
3560
4154
  </span>
3561
4155
  </button>
3562
4156
  </div>
@@ -3644,7 +4238,19 @@ section: components
3644
4238
  id="drawer-demo-notification-drawer-groups-group1-menu-toggle-1"
3645
4239
  >
3646
4240
  <span class="pf-v6-c-menu-toggle__icon">
3647
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4241
+ <svg
4242
+ class="pf-v6-svg"
4243
+ viewBox="0 0 32 32"
4244
+ fill="currentColor"
4245
+ aria-hidden="true"
4246
+ role="img"
4247
+ width="1em"
4248
+ height="1em"
4249
+ >
4250
+ <path
4251
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4252
+ />
4253
+ </svg>
3648
4254
  </span>
3649
4255
  </button>
3650
4256
  </div>
@@ -3701,7 +4307,19 @@ section: components
3701
4307
  id="drawer-demo-notification-drawer-groups-group1-menu-toggle-3"
3702
4308
  >
3703
4309
  <span class="pf-v6-c-menu-toggle__icon">
3704
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4310
+ <svg
4311
+ class="pf-v6-svg"
4312
+ viewBox="0 0 32 32"
4313
+ fill="currentColor"
4314
+ aria-hidden="true"
4315
+ role="img"
4316
+ width="1em"
4317
+ height="1em"
4318
+ >
4319
+ <path
4320
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4321
+ />
4322
+ </svg>
3705
4323
  </span>
3706
4324
  </button>
3707
4325
  </div>
@@ -3758,7 +4376,19 @@ section: components
3758
4376
  id="drawer-demo-notification-drawer-groups-group1-menu-toggle-4"
3759
4377
  >
3760
4378
  <span class="pf-v6-c-menu-toggle__icon">
3761
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4379
+ <svg
4380
+ class="pf-v6-svg"
4381
+ viewBox="0 0 32 32"
4382
+ fill="currentColor"
4383
+ aria-hidden="true"
4384
+ role="img"
4385
+ width="1em"
4386
+ height="1em"
4387
+ >
4388
+ <path
4389
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4390
+ />
4391
+ </svg>
3762
4392
  </span>
3763
4393
  </button>
3764
4394
  </div>
@@ -3812,7 +4442,19 @@ section: components
3812
4442
  id="drawer-demo-notification-drawer-groups-group1-menu-toggle-5"
3813
4443
  >
3814
4444
  <span class="pf-v6-c-menu-toggle__icon">
3815
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4445
+ <svg
4446
+ class="pf-v6-svg"
4447
+ viewBox="0 0 32 32"
4448
+ fill="currentColor"
4449
+ aria-hidden="true"
4450
+ role="img"
4451
+ width="1em"
4452
+ height="1em"
4453
+ >
4454
+ <path
4455
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4456
+ />
4457
+ </svg>
3816
4458
  </span>
3817
4459
  </button>
3818
4460
  </div>
@@ -3866,7 +4508,19 @@ section: components
3866
4508
  id="drawer-demo-notification-drawer-groups-group1-menu-toggle-6"
3867
4509
  >
3868
4510
  <span class="pf-v6-c-menu-toggle__icon">
3869
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4511
+ <svg
4512
+ class="pf-v6-svg"
4513
+ viewBox="0 0 32 32"
4514
+ fill="currentColor"
4515
+ aria-hidden="true"
4516
+ role="img"
4517
+ width="1em"
4518
+ height="1em"
4519
+ >
4520
+ <path
4521
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4522
+ />
4523
+ </svg>
3870
4524
  </span>
3871
4525
  </button>
3872
4526
  </div>
@@ -3920,7 +4574,19 @@ section: components
3920
4574
  id="drawer-demo-notification-drawer-groups-group1-menu-toggle-7"
3921
4575
  >
3922
4576
  <span class="pf-v6-c-menu-toggle__icon">
3923
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4577
+ <svg
4578
+ class="pf-v6-svg"
4579
+ viewBox="0 0 32 32"
4580
+ fill="currentColor"
4581
+ aria-hidden="true"
4582
+ role="img"
4583
+ width="1em"
4584
+ height="1em"
4585
+ >
4586
+ <path
4587
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4588
+ />
4589
+ </svg>
3924
4590
  </span>
3925
4591
  </button>
3926
4592
  </div>
@@ -3975,7 +4641,19 @@ section: components
3975
4641
  id="drawer-demo-notification-drawer-groups-group1-menu-toggle-8"
3976
4642
  >
3977
4643
  <span class="pf-v6-c-menu-toggle__icon">
3978
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4644
+ <svg
4645
+ class="pf-v6-svg"
4646
+ viewBox="0 0 32 32"
4647
+ fill="currentColor"
4648
+ aria-hidden="true"
4649
+ role="img"
4650
+ width="1em"
4651
+ height="1em"
4652
+ >
4653
+ <path
4654
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4655
+ />
4656
+ </svg>
3979
4657
  </span>
3980
4658
  </button>
3981
4659
  </div>
@@ -4116,7 +4794,19 @@ section: components
4116
4794
  id="drawer-demo-notification-drawer-groups-group2-menu-toggle-1"
4117
4795
  >
4118
4796
  <span class="pf-v6-c-menu-toggle__icon">
4119
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4797
+ <svg
4798
+ class="pf-v6-svg"
4799
+ viewBox="0 0 32 32"
4800
+ fill="currentColor"
4801
+ aria-hidden="true"
4802
+ role="img"
4803
+ width="1em"
4804
+ height="1em"
4805
+ >
4806
+ <path
4807
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4808
+ />
4809
+ </svg>
4120
4810
  </span>
4121
4811
  </button>
4122
4812
  </div>
@@ -4173,7 +4863,19 @@ section: components
4173
4863
  id="drawer-demo-notification-drawer-groups-group2-menu-toggle-3"
4174
4864
  >
4175
4865
  <span class="pf-v6-c-menu-toggle__icon">
4176
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4866
+ <svg
4867
+ class="pf-v6-svg"
4868
+ viewBox="0 0 32 32"
4869
+ fill="currentColor"
4870
+ aria-hidden="true"
4871
+ role="img"
4872
+ width="1em"
4873
+ height="1em"
4874
+ >
4875
+ <path
4876
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4877
+ />
4878
+ </svg>
4177
4879
  </span>
4178
4880
  </button>
4179
4881
  </div>
@@ -4230,7 +4932,19 @@ section: components
4230
4932
  id="drawer-demo-notification-drawer-groups-group2-menu-toggle-4"
4231
4933
  >
4232
4934
  <span class="pf-v6-c-menu-toggle__icon">
4233
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
4935
+ <svg
4936
+ class="pf-v6-svg"
4937
+ viewBox="0 0 32 32"
4938
+ fill="currentColor"
4939
+ aria-hidden="true"
4940
+ role="img"
4941
+ width="1em"
4942
+ height="1em"
4943
+ >
4944
+ <path
4945
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
4946
+ />
4947
+ </svg>
4234
4948
  </span>
4235
4949
  </button>
4236
4950
  </div>
@@ -4284,7 +4998,19 @@ section: components
4284
4998
  id="drawer-demo-notification-drawer-groups-group2-menu-toggle-5"
4285
4999
  >
4286
5000
  <span class="pf-v6-c-menu-toggle__icon">
4287
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5001
+ <svg
5002
+ class="pf-v6-svg"
5003
+ viewBox="0 0 32 32"
5004
+ fill="currentColor"
5005
+ aria-hidden="true"
5006
+ role="img"
5007
+ width="1em"
5008
+ height="1em"
5009
+ >
5010
+ <path
5011
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5012
+ />
5013
+ </svg>
4288
5014
  </span>
4289
5015
  </button>
4290
5016
  </div>
@@ -4338,7 +5064,19 @@ section: components
4338
5064
  id="drawer-demo-notification-drawer-groups-group2-menu-toggle-6"
4339
5065
  >
4340
5066
  <span class="pf-v6-c-menu-toggle__icon">
4341
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5067
+ <svg
5068
+ class="pf-v6-svg"
5069
+ viewBox="0 0 32 32"
5070
+ fill="currentColor"
5071
+ aria-hidden="true"
5072
+ role="img"
5073
+ width="1em"
5074
+ height="1em"
5075
+ >
5076
+ <path
5077
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5078
+ />
5079
+ </svg>
4342
5080
  </span>
4343
5081
  </button>
4344
5082
  </div>
@@ -4392,7 +5130,19 @@ section: components
4392
5130
  id="drawer-demo-notification-drawer-groups-group2-menu-toggle-7"
4393
5131
  >
4394
5132
  <span class="pf-v6-c-menu-toggle__icon">
4395
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5133
+ <svg
5134
+ class="pf-v6-svg"
5135
+ viewBox="0 0 32 32"
5136
+ fill="currentColor"
5137
+ aria-hidden="true"
5138
+ role="img"
5139
+ width="1em"
5140
+ height="1em"
5141
+ >
5142
+ <path
5143
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5144
+ />
5145
+ </svg>
4396
5146
  </span>
4397
5147
  </button>
4398
5148
  </div>
@@ -4447,7 +5197,19 @@ section: components
4447
5197
  id="drawer-demo-notification-drawer-groups-group2-menu-toggle-8"
4448
5198
  >
4449
5199
  <span class="pf-v6-c-menu-toggle__icon">
4450
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5200
+ <svg
5201
+ class="pf-v6-svg"
5202
+ viewBox="0 0 32 32"
5203
+ fill="currentColor"
5204
+ aria-hidden="true"
5205
+ role="img"
5206
+ width="1em"
5207
+ height="1em"
5208
+ >
5209
+ <path
5210
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5211
+ />
5212
+ </svg>
4451
5213
  </span>
4452
5214
  </button>
4453
5215
  </div>
@@ -4590,7 +5352,19 @@ section: components
4590
5352
  id="drawer-demo-notification-drawer-groups-group3-menu-toggle-1"
4591
5353
  >
4592
5354
  <span class="pf-v6-c-menu-toggle__icon">
4593
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5355
+ <svg
5356
+ class="pf-v6-svg"
5357
+ viewBox="0 0 32 32"
5358
+ fill="currentColor"
5359
+ aria-hidden="true"
5360
+ role="img"
5361
+ width="1em"
5362
+ height="1em"
5363
+ >
5364
+ <path
5365
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5366
+ />
5367
+ </svg>
4594
5368
  </span>
4595
5369
  </button>
4596
5370
  </div>
@@ -4647,7 +5421,19 @@ section: components
4647
5421
  id="drawer-demo-notification-drawer-groups-group3-menu-toggle-3"
4648
5422
  >
4649
5423
  <span class="pf-v6-c-menu-toggle__icon">
4650
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5424
+ <svg
5425
+ class="pf-v6-svg"
5426
+ viewBox="0 0 32 32"
5427
+ fill="currentColor"
5428
+ aria-hidden="true"
5429
+ role="img"
5430
+ width="1em"
5431
+ height="1em"
5432
+ >
5433
+ <path
5434
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5435
+ />
5436
+ </svg>
4651
5437
  </span>
4652
5438
  </button>
4653
5439
  </div>
@@ -4704,7 +5490,19 @@ section: components
4704
5490
  id="drawer-demo-notification-drawer-groups-group3-menu-toggle-4"
4705
5491
  >
4706
5492
  <span class="pf-v6-c-menu-toggle__icon">
4707
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5493
+ <svg
5494
+ class="pf-v6-svg"
5495
+ viewBox="0 0 32 32"
5496
+ fill="currentColor"
5497
+ aria-hidden="true"
5498
+ role="img"
5499
+ width="1em"
5500
+ height="1em"
5501
+ >
5502
+ <path
5503
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5504
+ />
5505
+ </svg>
4708
5506
  </span>
4709
5507
  </button>
4710
5508
  </div>
@@ -4758,7 +5556,19 @@ section: components
4758
5556
  id="drawer-demo-notification-drawer-groups-group3-menu-toggle-5"
4759
5557
  >
4760
5558
  <span class="pf-v6-c-menu-toggle__icon">
4761
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5559
+ <svg
5560
+ class="pf-v6-svg"
5561
+ viewBox="0 0 32 32"
5562
+ fill="currentColor"
5563
+ aria-hidden="true"
5564
+ role="img"
5565
+ width="1em"
5566
+ height="1em"
5567
+ >
5568
+ <path
5569
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5570
+ />
5571
+ </svg>
4762
5572
  </span>
4763
5573
  </button>
4764
5574
  </div>
@@ -4812,7 +5622,19 @@ section: components
4812
5622
  id="drawer-demo-notification-drawer-groups-group3-menu-toggle-6"
4813
5623
  >
4814
5624
  <span class="pf-v6-c-menu-toggle__icon">
4815
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5625
+ <svg
5626
+ class="pf-v6-svg"
5627
+ viewBox="0 0 32 32"
5628
+ fill="currentColor"
5629
+ aria-hidden="true"
5630
+ role="img"
5631
+ width="1em"
5632
+ height="1em"
5633
+ >
5634
+ <path
5635
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5636
+ />
5637
+ </svg>
4816
5638
  </span>
4817
5639
  </button>
4818
5640
  </div>
@@ -4866,7 +5688,19 @@ section: components
4866
5688
  id="drawer-demo-notification-drawer-groups-group3-menu-toggle-7"
4867
5689
  >
4868
5690
  <span class="pf-v6-c-menu-toggle__icon">
4869
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5691
+ <svg
5692
+ class="pf-v6-svg"
5693
+ viewBox="0 0 32 32"
5694
+ fill="currentColor"
5695
+ aria-hidden="true"
5696
+ role="img"
5697
+ width="1em"
5698
+ height="1em"
5699
+ >
5700
+ <path
5701
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5702
+ />
5703
+ </svg>
4870
5704
  </span>
4871
5705
  </button>
4872
5706
  </div>
@@ -4921,7 +5755,19 @@ section: components
4921
5755
  id="drawer-demo-notification-drawer-groups-group3-menu-toggle-8"
4922
5756
  >
4923
5757
  <span class="pf-v6-c-menu-toggle__icon">
4924
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5758
+ <svg
5759
+ class="pf-v6-svg"
5760
+ viewBox="0 0 32 32"
5761
+ fill="currentColor"
5762
+ aria-hidden="true"
5763
+ role="img"
5764
+ width="1em"
5765
+ height="1em"
5766
+ >
5767
+ <path
5768
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5769
+ />
5770
+ </svg>
4925
5771
  </span>
4926
5772
  </button>
4927
5773
  </div>
@@ -5064,7 +5910,19 @@ section: components
5064
5910
  id="drawer-demo-notification-drawer-groups-group4-menu-toggle-1"
5065
5911
  >
5066
5912
  <span class="pf-v6-c-menu-toggle__icon">
5067
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5913
+ <svg
5914
+ class="pf-v6-svg"
5915
+ viewBox="0 0 32 32"
5916
+ fill="currentColor"
5917
+ aria-hidden="true"
5918
+ role="img"
5919
+ width="1em"
5920
+ height="1em"
5921
+ >
5922
+ <path
5923
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5924
+ />
5925
+ </svg>
5068
5926
  </span>
5069
5927
  </button>
5070
5928
  </div>
@@ -5121,7 +5979,19 @@ section: components
5121
5979
  id="drawer-demo-notification-drawer-groups-group4-menu-toggle-3"
5122
5980
  >
5123
5981
  <span class="pf-v6-c-menu-toggle__icon">
5124
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
5982
+ <svg
5983
+ class="pf-v6-svg"
5984
+ viewBox="0 0 32 32"
5985
+ fill="currentColor"
5986
+ aria-hidden="true"
5987
+ role="img"
5988
+ width="1em"
5989
+ height="1em"
5990
+ >
5991
+ <path
5992
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
5993
+ />
5994
+ </svg>
5125
5995
  </span>
5126
5996
  </button>
5127
5997
  </div>
@@ -5178,7 +6048,19 @@ section: components
5178
6048
  id="drawer-demo-notification-drawer-groups-group4-menu-toggle-4"
5179
6049
  >
5180
6050
  <span class="pf-v6-c-menu-toggle__icon">
5181
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
6051
+ <svg
6052
+ class="pf-v6-svg"
6053
+ viewBox="0 0 32 32"
6054
+ fill="currentColor"
6055
+ aria-hidden="true"
6056
+ role="img"
6057
+ width="1em"
6058
+ height="1em"
6059
+ >
6060
+ <path
6061
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
6062
+ />
6063
+ </svg>
5182
6064
  </span>
5183
6065
  </button>
5184
6066
  </div>
@@ -5232,7 +6114,19 @@ section: components
5232
6114
  id="drawer-demo-notification-drawer-groups-group4-menu-toggle-5"
5233
6115
  >
5234
6116
  <span class="pf-v6-c-menu-toggle__icon">
5235
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
6117
+ <svg
6118
+ class="pf-v6-svg"
6119
+ viewBox="0 0 32 32"
6120
+ fill="currentColor"
6121
+ aria-hidden="true"
6122
+ role="img"
6123
+ width="1em"
6124
+ height="1em"
6125
+ >
6126
+ <path
6127
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
6128
+ />
6129
+ </svg>
5236
6130
  </span>
5237
6131
  </button>
5238
6132
  </div>
@@ -5286,7 +6180,19 @@ section: components
5286
6180
  id="drawer-demo-notification-drawer-groups-group4-menu-toggle-6"
5287
6181
  >
5288
6182
  <span class="pf-v6-c-menu-toggle__icon">
5289
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
6183
+ <svg
6184
+ class="pf-v6-svg"
6185
+ viewBox="0 0 32 32"
6186
+ fill="currentColor"
6187
+ aria-hidden="true"
6188
+ role="img"
6189
+ width="1em"
6190
+ height="1em"
6191
+ >
6192
+ <path
6193
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
6194
+ />
6195
+ </svg>
5290
6196
  </span>
5291
6197
  </button>
5292
6198
  </div>
@@ -5340,7 +6246,19 @@ section: components
5340
6246
  id="drawer-demo-notification-drawer-groups-group4-menu-toggle-7"
5341
6247
  >
5342
6248
  <span class="pf-v6-c-menu-toggle__icon">
5343
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
6249
+ <svg
6250
+ class="pf-v6-svg"
6251
+ viewBox="0 0 32 32"
6252
+ fill="currentColor"
6253
+ aria-hidden="true"
6254
+ role="img"
6255
+ width="1em"
6256
+ height="1em"
6257
+ >
6258
+ <path
6259
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
6260
+ />
6261
+ </svg>
5344
6262
  </span>
5345
6263
  </button>
5346
6264
  </div>
@@ -5395,7 +6313,19 @@ section: components
5395
6313
  id="drawer-demo-notification-drawer-groups-group4-menu-toggle-8"
5396
6314
  >
5397
6315
  <span class="pf-v6-c-menu-toggle__icon">
5398
- <i class="fas fa-ellipsis-v" aria-hidden="true"></i>
6316
+ <svg
6317
+ class="pf-v6-svg"
6318
+ viewBox="0 0 32 32"
6319
+ fill="currentColor"
6320
+ aria-hidden="true"
6321
+ role="img"
6322
+ width="1em"
6323
+ height="1em"
6324
+ >
6325
+ <path
6326
+ d="M12.25 5c0-2.068 1.683-3.75 3.75-3.75S19.75 2.932 19.75 5 18.067 8.75 16 8.75 12.25 7.068 12.25 5ZM16 12.25c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Zm0 11c-2.067 0-3.75 1.682-3.75 3.75s1.683 3.75 3.75 3.75 3.75-1.682 3.75-3.75-1.683-3.75-3.75-3.75Z"
6327
+ />
6328
+ </svg>
5399
6329
  </span>
5400
6330
  </button>
5401
6331
  </div>