acsi-core 0.1.99 → 0.2.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.
@@ -412,10 +412,7 @@ var CoreInput$1 = function CoreInput(props) {
412
412
  className: "" + styles$4["core-checkbox"]
413
413
  }, React.createElement(FormGroup, {
414
414
  check: true,
415
- cssModule: {
416
- display: "flex",
417
- alignItems: "center"
418
- }
415
+ inline: true
419
416
  }, React.createElement(Input, {
420
417
  id: "core-checkbox-" + name,
421
418
  type: "checkbox",
@@ -425,10 +422,11 @@ var CoreInput$1 = function CoreInput(props) {
425
422
  return _onChange === null || _onChange === void 0 ? void 0 : _onChange(name, e.target.checked);
426
423
  },
427
424
  disabled: disabled
428
- }), React.createElement("p", {
429
- style: {
430
- marginTop: "2px",
431
- marginBottom: 0
425
+ }), React.createElement(Label, {
426
+ htmlFor: "core-checkbox-" + name,
427
+ check: true,
428
+ cssModule: {
429
+ marginTop: '0px'
432
430
  }
433
431
  }, label)));
434
432
  };