ywana-core8 0.0.565 → 0.0.566

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.
@@ -2565,10 +2565,11 @@ var KanbanColumn = function KanbanColumn(_ref2) {
2565
2565
  */
2566
2566
 
2567
2567
  var KanbanCard = function KanbanCard(_ref3) {
2568
- var color = _ref3.color,
2568
+ var className = _ref3.className,
2569
+ color = _ref3.color,
2569
2570
  children = _ref3.children;
2570
2571
  return /*#__PURE__*/React.createElement("div", {
2571
- className: "kanban-card " + color
2572
+ className: "kanban-card " + className + " " + color
2572
2573
  }, children);
2573
2574
  };
2574
2575