@jsenv/navi 0.18.27 → 0.18.28

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.
@@ -29081,17 +29081,15 @@ const Address = ({
29081
29081
  });
29082
29082
  };
29083
29083
 
29084
- const LoadingDots = ({
29085
- color = "FF156D"
29086
- }) => {
29084
+ const LoadingDots = () => {
29087
29085
  return jsxs("svg", {
29088
29086
  viewBox: "0 0 200 200",
29089
29087
  width: "100%",
29090
29088
  height: "100%",
29091
29089
  xmlns: "http://www.w3.org/2000/svg",
29092
29090
  children: [jsx("rect", {
29093
- fill: color,
29094
- stroke: color,
29091
+ fill: "currentColor",
29092
+ stroke: "currentColor",
29095
29093
  "stroke-width": "15",
29096
29094
  width: "30",
29097
29095
  height: "30",
@@ -29107,8 +29105,8 @@ const LoadingDots = ({
29107
29105
  begin: "-.4"
29108
29106
  })
29109
29107
  }), jsx("rect", {
29110
- fill: color,
29111
- stroke: color,
29108
+ fill: "currentColor",
29109
+ stroke: "currentColor",
29112
29110
  "stroke-width": "15",
29113
29111
  width: "30",
29114
29112
  height: "30",
@@ -29124,8 +29122,8 @@ const LoadingDots = ({
29124
29122
  begin: "-.2"
29125
29123
  })
29126
29124
  }), jsx("rect", {
29127
- fill: color,
29128
- stroke: color,
29125
+ fill: "currentColor",
29126
+ stroke: "currentColor",
29129
29127
  "stroke-width": "15",
29130
29128
  width: "30",
29131
29129
  height: "30",
@@ -30133,6 +30131,7 @@ const Meter = ({
30133
30131
  let children = caption;
30134
30132
  if (children === undefined && percentage) {
30135
30133
  children = jsx(Quantity, {
30134
+ loading: loading,
30136
30135
  unit: "%",
30137
30136
  unitSizeRatio: "1",
30138
30137
  unitColor: "inherit",