@patternfly/patternfly 6.5.0-prerelease.69 → 6.5.0-prerelease.70

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 (45) hide show
  1. package/components/Button/button.css +3 -3
  2. package/components/Button/button.scss +1 -1
  3. package/components/Card/card.css +1 -5
  4. package/components/Card/card.scss +2 -6
  5. package/components/Compass/compass.css +2 -2
  6. package/components/Compass/compass.scss +1 -1
  7. package/components/MenuToggle/menu-toggle.css +4 -4
  8. package/components/MenuToggle/menu-toggle.scss +1 -1
  9. package/components/Page/page.css +4 -4
  10. package/components/Page/page.scss +2 -2
  11. package/components/_index.css +14 -18
  12. package/docs/components/CodeEditor/examples/CodeEditor.md +39 -3
  13. package/docs/components/Compass/examples/Compass.md +2 -2
  14. package/docs/components/EmptyState/examples/EmptyState.md +78 -6
  15. package/docs/components/MenuToggle/examples/MenuToggle.md +51 -3
  16. package/docs/components/Page/examples/Page.md +2 -2
  17. package/docs/components/Toolbar/examples/Toolbar.md +10 -10
  18. package/docs/components/Wizard/examples/Wizard.md +13 -1
  19. package/docs/demos/AboutModal/examples/AboutModal.md +17 -1
  20. package/docs/demos/Alert/examples/Alert.md +51 -3
  21. package/docs/demos/BackToTop/examples/BackToTop.md +17 -1
  22. package/docs/demos/Banner/examples/Banner.md +34 -2
  23. package/docs/demos/CardView/examples/CardView.md +127 -123
  24. package/docs/demos/Compass/examples/Compass.md +3072 -1425
  25. package/docs/demos/Dashboard/examples/Dashboard.md +17 -1
  26. package/docs/demos/DataList/examples/DataList.md +78 -14
  27. package/docs/demos/DescriptionList/examples/DescriptionList.md +51 -3
  28. package/docs/demos/Drawer/examples/Drawer.md +85 -5
  29. package/docs/demos/JumpLinks/examples/JumpLinks.md +102 -6
  30. package/docs/demos/Masthead/examples/Masthead.md +29 -13
  31. package/docs/demos/Modal/examples/Modal.md +102 -6
  32. package/docs/demos/Nav/examples/Nav.md +144 -20
  33. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +85 -5
  34. package/docs/demos/Page/examples/Page.md +244 -20
  35. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +133 -21
  36. package/docs/demos/Skeleton/examples/Skeleton.md +17 -1
  37. package/docs/demos/Table/examples/Table.md +337 -69
  38. package/docs/demos/Tabs/examples/Tabs.md +104 -8
  39. package/docs/demos/Toolbar/examples/Toolbar.md +46 -14
  40. package/docs/demos/Wizard/examples/Wizard.md +153 -9
  41. package/package.json +2 -2
  42. package/patternfly-no-globals.css +14 -18
  43. package/patternfly.css +14 -18
  44. package/patternfly.min.css +1 -1
  45. package/patternfly.min.css.map +1 -1
@@ -166,7 +166,23 @@ cssPrefix: pf-d-dashboard
166
166
  type="button"
167
167
  aria-expanded="false"
168
168
  aria-label="Settings"
169
- ></button>
169
+ >
170
+ <span class="pf-v6-c-menu-toggle__icon">
171
+ <svg
172
+ class="pf-v6-svg"
173
+ viewBox="0 0 32 32"
174
+ fill="currentColor"
175
+ aria-hidden="true"
176
+ role="img"
177
+ width="1em"
178
+ height="1em"
179
+ >
180
+ <path
181
+ 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"
182
+ />
183
+ </svg>
184
+ </span>
185
+ </button>
170
186
  </div>
171
187
  <div class="pf-v6-c-toolbar__item">
172
188
  <button
@@ -169,7 +169,23 @@ wrapperTag: div
169
169
  type="button"
170
170
  aria-expanded="false"
171
171
  aria-label="Settings"
172
- ></button>
172
+ >
173
+ <span class="pf-v6-c-menu-toggle__icon">
174
+ <svg
175
+ class="pf-v6-svg"
176
+ viewBox="0 0 32 32"
177
+ fill="currentColor"
178
+ aria-hidden="true"
179
+ role="img"
180
+ width="1em"
181
+ height="1em"
182
+ >
183
+ <path
184
+ 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"
185
+ />
186
+ </svg>
187
+ </span>
188
+ </button>
173
189
  </div>
174
190
  <div class="pf-v6-c-toolbar__item">
175
191
  <button
@@ -1306,7 +1322,23 @@ wrapperTag: div
1306
1322
  type="button"
1307
1323
  aria-expanded="false"
1308
1324
  aria-label="Settings"
1309
- ></button>
1325
+ >
1326
+ <span class="pf-v6-c-menu-toggle__icon">
1327
+ <svg
1328
+ class="pf-v6-svg"
1329
+ viewBox="0 0 32 32"
1330
+ fill="currentColor"
1331
+ aria-hidden="true"
1332
+ role="img"
1333
+ width="1em"
1334
+ height="1em"
1335
+ >
1336
+ <path
1337
+ 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"
1338
+ />
1339
+ </svg>
1340
+ </span>
1341
+ </button>
1310
1342
  </div>
1311
1343
  <div class="pf-v6-c-toolbar__item">
1312
1344
  <button
@@ -1519,7 +1551,7 @@ wrapperTag: div
1519
1551
  <span class="pf-v6-c-menu-toggle__icon">
1520
1552
  <svg
1521
1553
  class="pf-v6-svg"
1522
- viewBox="0 0 512 512"
1554
+ viewBox="0 0 32 32"
1523
1555
  fill="currentColor"
1524
1556
  aria-hidden="true"
1525
1557
  role="img"
@@ -1527,7 +1559,7 @@ wrapperTag: div
1527
1559
  height="1em"
1528
1560
  >
1529
1561
  <path
1530
- 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"
1562
+ d="M29.875 3.5V7a.876.876 0 0 1-.256.619l-9.744 9.744v10.638a.875.875 0 0 1-.599.83l-6 2a.876.876 0 0 1-.788-.12.874.874 0 0 1-.363-.71V17.363L2.381 7.619A.876.876 0 0 1 2.125 7V3.5c0-.758.617-1.375 1.375-1.375h25c.758 0 1.375.617 1.375 1.375Z"
1531
1563
  />
1532
1564
  </svg>
1533
1565
  </span>
@@ -2426,7 +2458,23 @@ wrapperTag: div
2426
2458
  type="button"
2427
2459
  aria-expanded="false"
2428
2460
  aria-label="Settings"
2429
- ></button>
2461
+ >
2462
+ <span class="pf-v6-c-menu-toggle__icon">
2463
+ <svg
2464
+ class="pf-v6-svg"
2465
+ viewBox="0 0 32 32"
2466
+ fill="currentColor"
2467
+ aria-hidden="true"
2468
+ role="img"
2469
+ width="1em"
2470
+ height="1em"
2471
+ >
2472
+ <path
2473
+ 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"
2474
+ />
2475
+ </svg>
2476
+ </span>
2477
+ </button>
2430
2478
  </div>
2431
2479
  <div class="pf-v6-c-toolbar__item">
2432
2480
  <button
@@ -2671,7 +2719,7 @@ wrapperTag: div
2671
2719
  <span class="pf-v6-c-menu-toggle__icon">
2672
2720
  <svg
2673
2721
  class="pf-v6-svg"
2674
- viewBox="0 0 512 512"
2722
+ viewBox="0 0 32 32"
2675
2723
  fill="currentColor"
2676
2724
  aria-hidden="true"
2677
2725
  role="img"
@@ -2679,7 +2727,7 @@ wrapperTag: div
2679
2727
  height="1em"
2680
2728
  >
2681
2729
  <path
2682
- 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"
2730
+ d="M29.875 3.5V7a.876.876 0 0 1-.256.619l-9.744 9.744v10.638a.875.875 0 0 1-.599.83l-6 2a.876.876 0 0 1-.788-.12.874.874 0 0 1-.363-.71V17.363L2.381 7.619A.876.876 0 0 1 2.125 7V3.5c0-.758.617-1.375 1.375-1.375h25c.758 0 1.375.617 1.375 1.375Z"
2683
2731
  />
2684
2732
  </svg>
2685
2733
  </span>
@@ -2746,7 +2794,7 @@ wrapperTag: div
2746
2794
  <span class="pf-v6-c-menu-toggle__icon">
2747
2795
  <svg
2748
2796
  class="pf-v6-svg"
2749
- viewBox="0 0 512 512"
2797
+ viewBox="0 0 32 32"
2750
2798
  fill="currentColor"
2751
2799
  aria-hidden="true"
2752
2800
  role="img"
@@ -2754,7 +2802,7 @@ wrapperTag: div
2754
2802
  height="1em"
2755
2803
  >
2756
2804
  <path
2757
- 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"
2805
+ d="M29.875 3.5V7a.876.876 0 0 1-.256.619l-9.744 9.744v10.638a.875.875 0 0 1-.599.83l-6 2a.876.876 0 0 1-.788-.12.874.874 0 0 1-.363-.71V17.363L2.381 7.619A.876.876 0 0 1 2.125 7V3.5c0-.758.617-1.375 1.375-1.375h25c.758 0 1.375.617 1.375 1.375Z"
2758
2806
  />
2759
2807
  </svg>
2760
2808
  </span>
@@ -4405,7 +4453,23 @@ wrapperTag: div
4405
4453
  type="button"
4406
4454
  aria-expanded="false"
4407
4455
  aria-label="Settings"
4408
- ></button>
4456
+ >
4457
+ <span class="pf-v6-c-menu-toggle__icon">
4458
+ <svg
4459
+ class="pf-v6-svg"
4460
+ viewBox="0 0 32 32"
4461
+ fill="currentColor"
4462
+ aria-hidden="true"
4463
+ role="img"
4464
+ width="1em"
4465
+ height="1em"
4466
+ >
4467
+ <path
4468
+ 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"
4469
+ />
4470
+ </svg>
4471
+ </span>
4472
+ </button>
4409
4473
  </div>
4410
4474
  <div class="pf-v6-c-toolbar__item">
4411
4475
  <button
@@ -4618,7 +4682,7 @@ wrapperTag: div
4618
4682
  <span class="pf-v6-c-menu-toggle__icon">
4619
4683
  <svg
4620
4684
  class="pf-v6-svg"
4621
- viewBox="0 0 512 512"
4685
+ viewBox="0 0 32 32"
4622
4686
  fill="currentColor"
4623
4687
  aria-hidden="true"
4624
4688
  role="img"
@@ -4626,7 +4690,7 @@ wrapperTag: div
4626
4690
  height="1em"
4627
4691
  >
4628
4692
  <path
4629
- 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"
4693
+ d="M29.875 3.5V7a.876.876 0 0 1-.256.619l-9.744 9.744v10.638a.875.875 0 0 1-.599.83l-6 2a.876.876 0 0 1-.788-.12.874.874 0 0 1-.363-.71V17.363L2.381 7.619A.876.876 0 0 1 2.125 7V3.5c0-.758.617-1.375 1.375-1.375h25c.758 0 1.375.617 1.375 1.375Z"
4630
4694
  />
4631
4695
  </svg>
4632
4696
  </span>
@@ -4649,7 +4713,7 @@ wrapperTag: div
4649
4713
  <span class="pf-v6-c-menu-toggle__icon">
4650
4714
  <svg
4651
4715
  class="pf-v6-svg"
4652
- viewBox="0 0 512 512"
4716
+ viewBox="0 0 32 32"
4653
4717
  fill="currentColor"
4654
4718
  aria-hidden="true"
4655
4719
  role="img"
@@ -4657,7 +4721,7 @@ wrapperTag: div
4657
4721
  height="1em"
4658
4722
  >
4659
4723
  <path
4660
- 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"
4724
+ d="M29.875 3.5V7a.876.876 0 0 1-.256.619l-9.744 9.744v10.638a.875.875 0 0 1-.599.83l-6 2a.876.876 0 0 1-.788-.12.874.874 0 0 1-.363-.71V17.363L2.381 7.619A.876.876 0 0 1 2.125 7V3.5c0-.758.617-1.375 1.375-1.375h25c.758 0 1.375.617 1.375 1.375Z"
4661
4725
  />
4662
4726
  </svg>
4663
4727
  </span>
@@ -169,7 +169,23 @@ cssPrefix: pf-d-description-list
169
169
  type="button"
170
170
  aria-expanded="false"
171
171
  aria-label="Settings"
172
- ></button>
172
+ >
173
+ <span class="pf-v6-c-menu-toggle__icon">
174
+ <svg
175
+ class="pf-v6-svg"
176
+ viewBox="0 0 32 32"
177
+ fill="currentColor"
178
+ aria-hidden="true"
179
+ role="img"
180
+ width="1em"
181
+ height="1em"
182
+ >
183
+ <path
184
+ 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"
185
+ />
186
+ </svg>
187
+ </span>
188
+ </button>
173
189
  </div>
174
190
  <div class="pf-v6-c-toolbar__item">
175
191
  <button
@@ -635,7 +651,23 @@ cssPrefix: pf-d-description-list
635
651
  type="button"
636
652
  aria-expanded="false"
637
653
  aria-label="Settings"
638
- ></button>
654
+ >
655
+ <span class="pf-v6-c-menu-toggle__icon">
656
+ <svg
657
+ class="pf-v6-svg"
658
+ viewBox="0 0 32 32"
659
+ fill="currentColor"
660
+ aria-hidden="true"
661
+ role="img"
662
+ width="1em"
663
+ height="1em"
664
+ >
665
+ <path
666
+ 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"
667
+ />
668
+ </svg>
669
+ </span>
670
+ </button>
639
671
  </div>
640
672
  <div class="pf-v6-c-toolbar__item">
641
673
  <button
@@ -1399,7 +1431,23 @@ cssPrefix: pf-d-description-list
1399
1431
  type="button"
1400
1432
  aria-expanded="false"
1401
1433
  aria-label="Settings"
1402
- ></button>
1434
+ >
1435
+ <span class="pf-v6-c-menu-toggle__icon">
1436
+ <svg
1437
+ class="pf-v6-svg"
1438
+ viewBox="0 0 32 32"
1439
+ fill="currentColor"
1440
+ aria-hidden="true"
1441
+ role="img"
1442
+ width="1em"
1443
+ height="1em"
1444
+ >
1445
+ <path
1446
+ 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"
1447
+ />
1448
+ </svg>
1449
+ </span>
1450
+ </button>
1403
1451
  </div>
1404
1452
  <div class="pf-v6-c-toolbar__item">
1405
1453
  <button
@@ -169,7 +169,23 @@ wrapperTag: div
169
169
  type="button"
170
170
  aria-expanded="false"
171
171
  aria-label="Settings"
172
- ></button>
172
+ >
173
+ <span class="pf-v6-c-menu-toggle__icon">
174
+ <svg
175
+ class="pf-v6-svg"
176
+ viewBox="0 0 32 32"
177
+ fill="currentColor"
178
+ aria-hidden="true"
179
+ role="img"
180
+ width="1em"
181
+ height="1em"
182
+ >
183
+ <path
184
+ 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"
185
+ />
186
+ </svg>
187
+ </span>
188
+ </button>
173
189
  </div>
174
190
  <div class="pf-v6-c-toolbar__item">
175
191
  <button
@@ -765,7 +781,23 @@ wrapperTag: div
765
781
  type="button"
766
782
  aria-expanded="false"
767
783
  aria-label="Settings"
768
- ></button>
784
+ >
785
+ <span class="pf-v6-c-menu-toggle__icon">
786
+ <svg
787
+ class="pf-v6-svg"
788
+ viewBox="0 0 32 32"
789
+ fill="currentColor"
790
+ aria-hidden="true"
791
+ role="img"
792
+ width="1em"
793
+ height="1em"
794
+ >
795
+ <path
796
+ 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"
797
+ />
798
+ </svg>
799
+ </span>
800
+ </button>
769
801
  </div>
770
802
  <div class="pf-v6-c-toolbar__item">
771
803
  <button
@@ -1185,7 +1217,23 @@ wrapperTag: div
1185
1217
  type="button"
1186
1218
  aria-expanded="false"
1187
1219
  aria-label="Settings"
1188
- ></button>
1220
+ >
1221
+ <span class="pf-v6-c-menu-toggle__icon">
1222
+ <svg
1223
+ class="pf-v6-svg"
1224
+ viewBox="0 0 32 32"
1225
+ fill="currentColor"
1226
+ aria-hidden="true"
1227
+ role="img"
1228
+ width="1em"
1229
+ height="1em"
1230
+ >
1231
+ <path
1232
+ 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"
1233
+ />
1234
+ </svg>
1235
+ </span>
1236
+ </button>
1189
1237
  </div>
1190
1238
  <div class="pf-v6-c-toolbar__item">
1191
1239
  <button
@@ -1605,7 +1653,23 @@ wrapperTag: div
1605
1653
  type="button"
1606
1654
  aria-expanded="false"
1607
1655
  aria-label="Settings"
1608
- ></button>
1656
+ >
1657
+ <span class="pf-v6-c-menu-toggle__icon">
1658
+ <svg
1659
+ class="pf-v6-svg"
1660
+ viewBox="0 0 32 32"
1661
+ fill="currentColor"
1662
+ aria-hidden="true"
1663
+ role="img"
1664
+ width="1em"
1665
+ height="1em"
1666
+ >
1667
+ <path
1668
+ 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"
1669
+ />
1670
+ </svg>
1671
+ </span>
1672
+ </button>
1609
1673
  </div>
1610
1674
  <div class="pf-v6-c-toolbar__item">
1611
1675
  <button
@@ -2083,7 +2147,23 @@ wrapperTag: div
2083
2147
  type="button"
2084
2148
  aria-expanded="false"
2085
2149
  aria-label="Settings"
2086
- ></button>
2150
+ >
2151
+ <span class="pf-v6-c-menu-toggle__icon">
2152
+ <svg
2153
+ class="pf-v6-svg"
2154
+ viewBox="0 0 32 32"
2155
+ fill="currentColor"
2156
+ aria-hidden="true"
2157
+ role="img"
2158
+ width="1em"
2159
+ height="1em"
2160
+ >
2161
+ <path
2162
+ 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"
2163
+ />
2164
+ </svg>
2165
+ </span>
2166
+ </button>
2087
2167
  </div>
2088
2168
  <div class="pf-v6-c-toolbar__item">
2089
2169
  <button
@@ -171,7 +171,23 @@ section: components
171
171
  type="button"
172
172
  aria-expanded="false"
173
173
  aria-label="Settings"
174
- ></button>
174
+ >
175
+ <span class="pf-v6-c-menu-toggle__icon">
176
+ <svg
177
+ class="pf-v6-svg"
178
+ viewBox="0 0 32 32"
179
+ fill="currentColor"
180
+ aria-hidden="true"
181
+ role="img"
182
+ width="1em"
183
+ height="1em"
184
+ >
185
+ <path
186
+ 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"
187
+ />
188
+ </svg>
189
+ </span>
190
+ </button>
175
191
  </div>
176
192
  <div class="pf-v6-c-toolbar__item">
177
193
  <button
@@ -691,7 +707,23 @@ section: components
691
707
  type="button"
692
708
  aria-expanded="false"
693
709
  aria-label="Settings"
694
- ></button>
710
+ >
711
+ <span class="pf-v6-c-menu-toggle__icon">
712
+ <svg
713
+ class="pf-v6-svg"
714
+ viewBox="0 0 32 32"
715
+ fill="currentColor"
716
+ aria-hidden="true"
717
+ role="img"
718
+ width="1em"
719
+ height="1em"
720
+ >
721
+ <path
722
+ 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"
723
+ />
724
+ </svg>
725
+ </span>
726
+ </button>
695
727
  </div>
696
728
  <div class="pf-v6-c-toolbar__item">
697
729
  <button
@@ -1211,7 +1243,23 @@ section: components
1211
1243
  type="button"
1212
1244
  aria-expanded="false"
1213
1245
  aria-label="Settings"
1214
- ></button>
1246
+ >
1247
+ <span class="pf-v6-c-menu-toggle__icon">
1248
+ <svg
1249
+ class="pf-v6-svg"
1250
+ viewBox="0 0 32 32"
1251
+ fill="currentColor"
1252
+ aria-hidden="true"
1253
+ role="img"
1254
+ width="1em"
1255
+ height="1em"
1256
+ >
1257
+ <path
1258
+ 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"
1259
+ />
1260
+ </svg>
1261
+ </span>
1262
+ </button>
1215
1263
  </div>
1216
1264
  <div class="pf-v6-c-toolbar__item">
1217
1265
  <button
@@ -1728,7 +1776,23 @@ section: components
1728
1776
  type="button"
1729
1777
  aria-expanded="false"
1730
1778
  aria-label="Settings"
1731
- ></button>
1779
+ >
1780
+ <span class="pf-v6-c-menu-toggle__icon">
1781
+ <svg
1782
+ class="pf-v6-svg"
1783
+ viewBox="0 0 32 32"
1784
+ fill="currentColor"
1785
+ aria-hidden="true"
1786
+ role="img"
1787
+ width="1em"
1788
+ height="1em"
1789
+ >
1790
+ <path
1791
+ 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"
1792
+ />
1793
+ </svg>
1794
+ </span>
1795
+ </button>
1732
1796
  </div>
1733
1797
  <div class="pf-v6-c-toolbar__item">
1734
1798
  <button
@@ -2182,7 +2246,23 @@ section: components
2182
2246
  type="button"
2183
2247
  aria-expanded="false"
2184
2248
  aria-label="Settings"
2185
- ></button>
2249
+ >
2250
+ <span class="pf-v6-c-menu-toggle__icon">
2251
+ <svg
2252
+ class="pf-v6-svg"
2253
+ viewBox="0 0 32 32"
2254
+ fill="currentColor"
2255
+ aria-hidden="true"
2256
+ role="img"
2257
+ width="1em"
2258
+ height="1em"
2259
+ >
2260
+ <path
2261
+ 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"
2262
+ />
2263
+ </svg>
2264
+ </span>
2265
+ </button>
2186
2266
  </div>
2187
2267
  <div class="pf-v6-c-toolbar__item">
2188
2268
  <button
@@ -2660,7 +2740,23 @@ section: components
2660
2740
  type="button"
2661
2741
  aria-expanded="false"
2662
2742
  aria-label="Settings"
2663
- ></button>
2743
+ >
2744
+ <span class="pf-v6-c-menu-toggle__icon">
2745
+ <svg
2746
+ class="pf-v6-svg"
2747
+ viewBox="0 0 32 32"
2748
+ fill="currentColor"
2749
+ aria-hidden="true"
2750
+ role="img"
2751
+ width="1em"
2752
+ height="1em"
2753
+ >
2754
+ <path
2755
+ 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"
2756
+ />
2757
+ </svg>
2758
+ </span>
2759
+ </button>
2664
2760
  </div>
2665
2761
  <div class="pf-v6-c-toolbar__item">
2666
2762
  <button