@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.js CHANGED
@@ -3123,9 +3123,10 @@ function GoabHeroBanner({
3123
3123
  backgroundColor,
3124
3124
  textColor,
3125
3125
  children,
3126
+ actions,
3126
3127
  testId
3127
3128
  }) {
3128
- return /* @__PURE__ */ jsxRuntime.jsx(
3129
+ return /* @__PURE__ */ jsxRuntime.jsxs(
3129
3130
  "goa-hero-banner",
3130
3131
  {
3131
3132
  heading,
@@ -3135,7 +3136,10 @@ function GoabHeroBanner({
3135
3136
  backgroundcolor: backgroundColor,
3136
3137
  textcolor: textColor,
3137
3138
  testid: testId,
3138
- children
3139
+ children: [
3140
+ children,
3141
+ actions && /* @__PURE__ */ jsxRuntime.jsx("div", { slot: "actions", children: actions })
3142
+ ]
3139
3143
  }
3140
3144
  );
3141
3145
  }