@artsy/palette-mobile 22.1.0--canary.425.5083.0 → 22.1.0--canary.425.5095.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.
@@ -27,7 +27,8 @@ export const Image = memo(({ aspectRatio, width, height, performResize = true, s
27
27
  };
28
28
  });
29
29
  if (showLoadingState) {
30
- return (_jsx(ImageSkeleton, { dimensions: dimensions, blurhash: blurhash, style: { position: "absolute" } }));
30
+ // Keep logic as small as possible here to save on performance
31
+ return _jsx(Flex, { backgroundColor: "mono10", ...dimensions, style: { position: "absolute" } });
31
32
  }
32
33
  return (_jsxs(Flex, { position: "relative", ...flexProps, style: { ...dimensions }, children: [_jsx(FastImage, { style: [
33
34
  dimensions,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "22.1.0--canary.425.5083.0",
3
+ "version": "22.1.0--canary.425.5095.0",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "workspaces": [
6
6
  "Example"