react-forest 1.0.4 → 1.0.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/index.cjs.css +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.css +1 -0
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import "tailwindcss"
|
|
1
|
+
@import "tailwindcss" prefix(tw);
|
package/dist/index.cjs.js
CHANGED
|
@@ -425,7 +425,7 @@ function requireJsxRuntime () {
|
|
|
425
425
|
var jsxRuntimeExports = requireJsxRuntime();
|
|
426
426
|
|
|
427
427
|
const Button = (props) => {
|
|
428
|
-
return jsxRuntimeExports.jsx("button", { className: "bg-blue-400", children: props.label });
|
|
428
|
+
return jsxRuntimeExports.jsx("button", { className: "tw:bg-blue-400", children: props.label });
|
|
429
429
|
};
|
|
430
430
|
|
|
431
431
|
exports.Button = Button;
|
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "tailwindcss" prefix(tw);@source "./**/*.{ts,tsx}";
|
package/dist/index.esm.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import "tailwindcss"
|
|
1
|
+
@import "tailwindcss" prefix(tw);
|
package/dist/index.esm.js
CHANGED
|
@@ -423,7 +423,7 @@ function requireJsxRuntime () {
|
|
|
423
423
|
var jsxRuntimeExports = requireJsxRuntime();
|
|
424
424
|
|
|
425
425
|
const Button = (props) => {
|
|
426
|
-
return jsxRuntimeExports.jsx("button", { className: "bg-blue-400", children: props.label });
|
|
426
|
+
return jsxRuntimeExports.jsx("button", { className: "tw:bg-blue-400", children: props.label });
|
|
427
427
|
};
|
|
428
428
|
|
|
429
429
|
export { Button };
|