@rocket.chat/fuselage 0.50.0 → 0.50.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.50.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1317](https://github.com/RocketChat/fuselage/pull/1317) [`410a12131`](https://github.com/RocketChat/fuselage/commit/410a1213140b6dbfccdd75c9dfcf4b90938bf51d) Thanks [@juliajforesti](https://github.com/juliajforesti)! - fix(fuselage): remove margin inline end from bubble icon
8
+
3
9
  ## 0.50.0
4
10
 
5
11
  ### Minor Changes
@@ -2313,7 +2313,7 @@ var BubbleButton = function (_a) {
2313
2313
  return (react_1.default.createElement("button", __assign({ className: "rcx-bubble__button ".concat(secondary
2314
2314
  ? 'rcx-bubble__button--secondary'
2315
2315
  : 'rcx-bubble__button--primary'), onClick: onClick }, props),
2316
- icon && react_1.default.createElement(Icon_1.Icon, { name: icon, size: 'x16', mie: 8 }),
2316
+ icon && react_1.default.createElement(Icon_1.Icon, { name: icon, size: 'x16' }),
2317
2317
  label && react_1.default.createElement("span", null, label)));
2318
2318
  };
2319
2319
  exports.BubbleButton = BubbleButton;