@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.
@@ -235,8 +235,8 @@ var Icon = function Icon(_ref) {
235
235
 
236
236
  case 'complete':
237
237
  return {
238
- bg: '#0082FF',
239
- color: colors.label.primary.dark
238
+ bg: '#7474800D',
239
+ color: colors.label.primary.light
240
240
  };
241
241
 
242
242
  case 'inactive':
@@ -246,17 +246,15 @@ var Icon = function Icon(_ref) {
246
246
  };
247
247
  }
248
248
  }, [status]);
249
- var bg = getColors.bg,
250
- color = getColors.color;
251
249
  return /*#__PURE__*/React.createElement(Flex, {
252
250
  boxSize: "20px",
253
- bg: bg,
251
+ bg: getColors.bg,
254
252
  borderRadius: "100%",
255
253
  alignItems: "center",
256
254
  justifyContent: "center"
257
255
  }, /*#__PURE__*/React.createElement(Text$2, {
258
256
  fontSize: "12px",
259
- color: color
257
+ color: getColors.color
260
258
  }, step));
261
259
  };
262
260