@bento-core/facet-filter 1.0.1-ccdihub.7 → 1.0.1-ccdihub.8

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.
@@ -75,7 +75,8 @@ const CheckBoxView = _ref => {
75
75
  id: "checkbox_".concat(facet.label, "_").concat(name),
76
76
  icon: /*#__PURE__*/_react.default.createElement(_core.Icon, {
77
77
  style: {
78
- fontSize: 18
78
+ fontSize: 18,
79
+ lineHeight: 22
79
80
  }
80
81
  }, /*#__PURE__*/_react.default.createElement("img", {
81
82
  src: _emptycheckbox.default,
@@ -85,7 +86,8 @@ const CheckBoxView = _ref => {
85
86
  checked: isChecked,
86
87
  checkedIcon: /*#__PURE__*/_react.default.createElement(_core.Icon, {
87
88
  style: {
88
- fontSize: 18
89
+ fontSize: 18,
90
+ lineHeight: 22
89
91
  },
90
92
  className: "".concat(checkedSection, "CheckedIcon")
91
93
  }, /*#__PURE__*/_react.default.createElement("img", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bento-core/facet-filter",
3
- "version": "1.0.1-ccdihub.7",
3
+ "version": "1.0.1-ccdihub.8",
4
4
  "description": "### Bento core sidebar design:",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -82,7 +82,11 @@ const CheckBoxView = ({
82
82
  <Checkbox
83
83
  id={`checkbox_${facet.label}_${name}`}
84
84
  icon={
85
- <Icon style={{ fontSize: 18 }}>
85
+ <Icon style={{
86
+ fontSize: 18,
87
+ lineHeight: 22,
88
+ }}
89
+ >
86
90
  <img
87
91
  src={emptyCheckBox}
88
92
  alt="checkbox-icon"
@@ -95,6 +99,7 @@ const CheckBoxView = ({
95
99
  <Icon
96
100
  style={{
97
101
  fontSize: 18,
102
+ lineHeight: 22,
98
103
  }}
99
104
  className={`${checkedSection}CheckedIcon`}
100
105
  >