@abgov/react-components 7.1.0 → 7.2.0-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.mjs CHANGED
@@ -3121,9 +3121,10 @@ function GoabHeroBanner({
3121
3121
  backgroundColor,
3122
3122
  textColor,
3123
3123
  children,
3124
+ actions,
3124
3125
  testId
3125
3126
  }) {
3126
- return /* @__PURE__ */ jsx(
3127
+ return /* @__PURE__ */ jsxs(
3127
3128
  "goa-hero-banner",
3128
3129
  {
3129
3130
  heading,
@@ -3133,7 +3134,10 @@ function GoabHeroBanner({
3133
3134
  backgroundcolor: backgroundColor,
3134
3135
  textcolor: textColor,
3135
3136
  testid: testId,
3136
- children
3137
+ children: [
3138
+ children,
3139
+ actions && /* @__PURE__ */ jsx("div", { slot: "actions", children: actions })
3140
+ ]
3137
3141
  }
3138
3142
  );
3139
3143
  }