@bbki.ng/components 2.1.17 → 2.1.20

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 CHANGED
@@ -452,12 +452,12 @@ var List = (props) => {
452
452
  return /* @__PURE__ */ import_react13.default.createElement("ul", {
453
453
  className: (0, import_classnames6.default)(className, "list-style-none", {
454
454
  flex: horizontal,
455
- "align-center": horizontal
455
+ "items-center": horizontal
456
456
  })
457
457
  }, items.map((item, index) => {
458
458
  return /* @__PURE__ */ import_react13.default.createElement("li", {
459
459
  key: item.id || index,
460
- className: (0, import_classnames6.default)(spaceCls, "flex-shrink-0")
460
+ className: (0, import_classnames6.default)(spaceCls, "flex-shrink-0", { "!my-0": horizontal })
461
461
  }, itemRenderer(item, index));
462
462
  }));
463
463
  };