@razorpay/blade 10.6.0 → 10.7.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.
@@ -5808,8 +5808,10 @@ var iconSize$1 = {
5808
5808
  '2xlarge': size[32]
5809
5809
  };
5810
5810
  function useIconProps(_ref) {
5811
- var size = _ref.size,
5812
- color = _ref.color;
5811
+ var _ref$size = _ref.size,
5812
+ size = _ref$size === void 0 ? 'medium' : _ref$size,
5813
+ _ref$color = _ref.color,
5814
+ color = _ref$color === void 0 ? 'surface.text.normal.lowContrast' : _ref$color;
5813
5815
  var _useTheme = useTheme(),
5814
5816
  theme = _useTheme.theme;
5815
5817
  var height = makeSize(iconSize$1[size]);