@xqmsg/ui-core 0.8.0 → 0.9.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.
@@ -242,8 +242,8 @@ var Icon = function Icon(_ref) {
242
242
 
243
243
  case 'complete':
244
244
  return {
245
- bg: '#0082FF',
246
- color: colors.label.primary.dark
245
+ bg: '#7474800D',
246
+ color: colors.label.primary.light
247
247
  };
248
248
 
249
249
  case 'inactive':
@@ -253,17 +253,15 @@ var Icon = function Icon(_ref) {
253
253
  };
254
254
  }
255
255
  }, [status]);
256
- var bg = getColors.bg,
257
- color = getColors.color;
258
256
  return /*#__PURE__*/React__default.createElement(react.Flex, {
259
257
  boxSize: "20px",
260
- bg: bg,
258
+ bg: getColors.bg,
261
259
  borderRadius: "100%",
262
260
  alignItems: "center",
263
261
  justifyContent: "center"
264
262
  }, /*#__PURE__*/React__default.createElement(react.Text, {
265
263
  fontSize: "12px",
266
- color: color
264
+ color: getColors.color
267
265
  }, step));
268
266
  };
269
267