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.
package/dist/index.mjs CHANGED
@@ -1951,7 +1951,7 @@ function generateTokenCssString() {
1951
1951
  }
1952
1952
  function createUseTokens() {
1953
1953
  return function useTokens() {
1954
- const [tokens, setTokensState] = React3.useState(engine.getTokens());
1954
+ const [tokens, setTokensState] = React3.useState({});
1955
1955
  React3.useEffect(() => {
1956
1956
  setTokensState(engine.getTokens());
1957
1957
  return engine.subscribe((nextTokens) => setTokensState(nextTokens));