@groupeactual/ui-kit 0.2.4 → 0.2.6

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/esm/index.js CHANGED
@@ -51769,8 +51769,7 @@ var MaterialThemeProvider = function (_a) {
51769
51769
  var children = _a.children;
51770
51770
  var themeName = useContext(DesignSystemContext).themeName;
51771
51771
  var muiTokens = useMaterialThemeTokens(themeName).muiTokens;
51772
- console.log('muiTokens', muiTokens);
51773
- var theme = createTheme(muiTokens);
51772
+ var theme = useMemo(function () { return createTheme(muiTokens); }, [muiTokens]);
51774
51773
  return jsx(ThemeProvider, __assign({ theme: theme }, { children: children }));
51775
51774
  };
51776
51775
  var DesignSystemProvider = function (_a) {