diff --git a/src/components/link/link-test.stories.tsx b/src/components/link/link-test.stories.tsx
index 92568ddb1d..7b23aeb619 100644
--- a/src/components/link/link-test.stories.tsx
+++ b/src/components/link/link-test.stories.tsx
@@ -3,14 +3,15 @@ import { action } from "@storybook/addon-actions";
import { ICONS } from "../icon/icon-config";
import { LINK_ALIGNMENTS, LINK_POSITIONS, LINK_VARIANTS } from "./link.config";
import Link, { LinkProps } from "./link.component";
+import Box from "../box";
export default {
title: "Link/Test",
- includeStories: ["DefaultStory"],
+ includeStories: ["DefaultStory", "FlexContainer"],
parameters: {
info: { disable: true },
chromatic: {
- disableSnapshot: true,
+ disableSnapshot: false,
},
},
argTypes: {
@@ -94,6 +95,34 @@ DefaultStory.args = {
isDarkBackground: false,
};
+export const FlexContainer = () => {
+ const link = (
+