optimized-react-component-library-xyz123 0.9.1 → 0.9.3

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/dist/index.mjs CHANGED
@@ -2849,8 +2849,8 @@ var EditPreviewLinkStandard_default = EditPreviewLink;
2849
2849
  // src/components/stepper/StartApplicationButton/StartApplicationButton.tsx
2850
2850
  import { jsx as jsx25 } from "react/jsx-runtime";
2851
2851
  var StartApplicationButton = ({
2852
+ globalLanguageState,
2852
2853
  onClick,
2853
- label = "Starta e-tj\xE4nsten",
2854
2854
  className = ""
2855
2855
  }) => {
2856
2856
  return /* @__PURE__ */ jsx25(
@@ -2859,7 +2859,7 @@ var StartApplicationButton = ({
2859
2859
  type: "button",
2860
2860
  className: `pts-forwardButton pts-start-applicationButton ${className}`,
2861
2861
  onClick,
2862
- children: label
2862
+ children: globalLanguageState && globalLanguageState.startButton ? globalLanguageState.startButton : ">>"
2863
2863
  }
2864
2864
  );
2865
2865
  };