ui-kit-ck-consultant 0.5.181 → 0.5.182

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.js CHANGED
@@ -3481,9 +3481,10 @@ var ListingHorizontalItem = /*#__PURE__*/function (_React$Component) {
3481
3481
  className: listingClass
3482
3482
  }, /*#__PURE__*/React__default.createElement("div", {
3483
3483
  className: style$s.listing_horizontal_icon,
3484
- style: this.props.color ? {
3485
- backgroundColor: this.props.color
3486
- } : null
3484
+ style: {
3485
+ backgroundColor: this.props.backgroundColor ? this.props.backgroundColor : 'gray',
3486
+ color: this.props.color ? this.props.color : 'white'
3487
+ }
3487
3488
  }, this.props.icon ? this.props.icon : /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
3488
3489
  icon: freeSolidSvgIcons.faCheck
3489
3490
  })), /*#__PURE__*/React__default.createElement("div", {
@@ -3536,6 +3537,7 @@ var ListingHorizontal = /*#__PURE__*/function (_React$Component) {
3536
3537
  green: element.green,
3537
3538
  orange: element.orange,
3538
3539
  color: element.color,
3540
+ backgroundColor: element.backgroundColor,
3539
3541
  title: element.title,
3540
3542
  subtitle: element.subtitle,
3541
3543
  date: element.date,