reactive-bulma 1.2.0 → 1.3.0
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Button/Button.d.ts +1 -1
- package/dist/cjs/types/components/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Button/Button.d.ts +1 -1
- package/dist/esm/types/components/index.d.ts +1 -1
- package/package.json +34 -10
package/dist/cjs/index.js
CHANGED
@@ -2840,7 +2840,7 @@ function requireReact_development () {
|
|
2840
2840
|
|
2841
2841
|
var React = /*@__PURE__*/getDefaultExportFromCjs(reactExports);
|
2842
2842
|
|
2843
|
-
const Button = ({ text = '' }) => React.createElement("button", { className:
|
2843
|
+
const Button = ({ text = '' }) => (React.createElement("button", { className: 'button' }, text));
|
2844
2844
|
|
2845
2845
|
exports.Button = Button;
|
2846
2846
|
//# sourceMappingURL=index.js.map
|