@xsolla/xui-quest-card 0.156.0 → 0.157.0

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/web/index.mjs CHANGED
@@ -210,7 +210,8 @@ var Box = React2.forwardRef(
210
210
  top: typeof props.top === "number" ? `${props.top}px` : props.top,
211
211
  left: typeof props.left === "number" ? `${props.left}px` : props.left,
212
212
  right: typeof props.right === "number" ? `${props.right}px` : props.right,
213
- bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
213
+ bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
214
+ ...props.style
214
215
  }
215
216
  }
216
217
  );