ynotsoft-dynamic-form 1.0.2 → 1.0.3
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.
|
@@ -280,9 +280,8 @@ var ne = te();
|
|
|
280
280
|
const ae = "_button_1x4bi_1", oe = {
|
|
281
281
|
button: ae
|
|
282
282
|
};
|
|
283
|
-
function ue(u) {
|
|
284
|
-
|
|
285
|
-
return /* @__PURE__ */ ne.jsx("button", { className: `${oe.button} ${c}`, ...l });
|
|
283
|
+
function ue({ children: u, className: c = "", ...l }) {
|
|
284
|
+
return /* @__PURE__ */ ne.jsx("button", { className: `${oe.button} ${c}`, ...l, children: u });
|
|
286
285
|
}
|
|
287
286
|
export {
|
|
288
287
|
ue as Button
|
package/package.json
CHANGED