ui-kit-ck-consultant 0.5.195 → 0.5.196
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.css +12 -10
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -3402,10 +3402,14 @@ var ListingVerticalItem = /*#__PURE__*/function (_React$Component) {
|
|
3402
3402
|
return /*#__PURE__*/React.createElement("div", {
|
3403
3403
|
className: listingClass
|
3404
3404
|
}, /*#__PURE__*/React.createElement("div", {
|
3405
|
-
className: style$s.listing_vertical_left
|
3406
|
-
|
3405
|
+
className: style$s.listing_vertical_left,
|
3406
|
+
style: {
|
3407
|
+
backgroundColor: this.props.backgroundColor ? this.props.backgroundColor : 'gray',
|
3408
|
+
color: this.props.color ? this.props.color : 'white'
|
3409
|
+
}
|
3410
|
+
}, this.props.icon ? this.props.icon : /*#__PURE__*/React.createElement(FontAwesomeIcon, {
|
3407
3411
|
icon: faCheck
|
3408
|
-
})
|
3412
|
+
})), /*#__PURE__*/React.createElement("div", {
|
3409
3413
|
className: style$s.listing_vertical_right
|
3410
3414
|
}, /*#__PURE__*/React.createElement("span", null, this.props.date), /*#__PURE__*/React.createElement("span", null, this.props.title), /*#__PURE__*/React.createElement("span", null, this.props.subtitle)));
|
3411
3415
|
};
|