tailwind-styled-v4 5.1.13 → 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.
@@ -1737,7 +1737,7 @@ function generateTokenCssString() {
1737
1737
  }
1738
1738
  function createUseTokens() {
1739
1739
  return function useTokens() {
1740
- const [tokens, setTokensState] = React3.useState(engine.getTokens());
1740
+ const [tokens, setTokensState] = React3.useState({});
1741
1741
  React3.useEffect(() => {
1742
1742
  setTokensState(engine.getTokens());
1743
1743
  return engine.subscribe((nextTokens) => setTokensState(nextTokens));