+ {sizes.map((size) => (
+
+ {Object.keys(countryMetaMap)
+ .map(
+ (componentCode) => countryMetaMap[componentCode as CountryCode],
+ )
+ .map(({ countryCode }) => (
+
+ ))}
+
+ ))}
+
+ );
+};
+
+AllLazyCountrySharpSymbols.parameters = {
+ chromatic: { disableSnapshot: false },
+};
diff --git a/packages/countries/stories/LazyCountrySymbol.stories.tsx b/packages/countries/stories/LazyCountrySymbol.stories.tsx
index 5b9c9bed553..1ff7c517c24 100644
--- a/packages/countries/stories/LazyCountrySymbol.stories.tsx
+++ b/packages/countries/stories/LazyCountrySymbol.stories.tsx
@@ -1,3 +1,4 @@
+import { FlexLayout } from "@salt-ds/core";
import {
LazyCountrySymbol as LazyCountrySymbolComponent,
countryMetaMap,
@@ -28,7 +29,10 @@ export const LazyCountrySymbol: StoryFn