tailwind-styled-v4 5.1.14 → 5.1.15

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.js CHANGED
@@ -2017,7 +2017,7 @@ function generateTokenCssString() {
2017
2017
  }
2018
2018
  function createUseTokens() {
2019
2019
  return function useTokens() {
2020
- const [tokens, setTokensState] = import_react3.default.useState(engine.getTokens());
2020
+ const [tokens, setTokensState] = import_react3.default.useState({});
2021
2021
  import_react3.default.useEffect(() => {
2022
2022
  setTokensState(engine.getTokens());
2023
2023
  return engine.subscribe((nextTokens) => setTokensState(nextTokens));