diff --git a/packages/orbit-components/src/Stack/Stack.ct-story.tsx b/packages/orbit-components/src/Stack/Stack.ct-story.tsx new file mode 100644 index 0000000000..b9f10726cb --- /dev/null +++ b/packages/orbit-components/src/Stack/Stack.ct-story.tsx @@ -0,0 +1,15 @@ +import React from "react"; + +import type { Props } from "./types"; + +import Stack from "."; + +export default function StackStory(props: Omit) { + return ( + +
First child
+
Second child
+
Third child
+
+ ); +} diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx b/packages/orbit-components/src/Stack/Stack.ct.tsx new file mode 100644 index 0000000000..4cb310bfed --- /dev/null +++ b/packages/orbit-components/src/Stack/Stack.ct.tsx @@ -0,0 +1,76 @@ +import * as React from "react"; +import { test, expect } from "@playwright/experimental-ct-react"; + +import { DIRECTIONS, SPACINGS } from "../utils/layout/consts"; +import { ALIGN } from "../common/tailwind/alignItems"; +import StackStory from "./Stack.ct-story"; +import { JUSTIFY } from "../common/tailwind/justify"; +import Box from "../Box"; + +test.describe("visual Stack", () => { + test(`Stack default`, async ({ mount }) => { + const component = await mount(); + + await expect(component).toHaveScreenshot(); + }); + + Object.values(SPACINGS).forEach(spacing => { + test(`Stack with spacing ${spacing}`, async ({ mount }) => { + const component = await mount(); + + await expect(component).toHaveScreenshot(); + }); + }); + + test("Stack with inline", async ({ mount }) => { + const component = await mount(); + + await expect(component).toHaveScreenshot(); + }); + + test("Stack with gap", async ({ mount }) => { + const component = await mount(); + + await expect(component).toHaveScreenshot(); + }); + + Object.values(DIRECTIONS).forEach(direction => { + test(`Stack with direction ${direction}`, async ({ mount }) => { + const component = await mount(); + + await expect(component).toHaveScreenshot(); + }); + }); + + Object.values(ALIGN).forEach(align => { + test(`Stack with align ${align} and direction row`, async ({ mount }) => { + const component = await mount(); + + await expect(component).toHaveScreenshot(); + }); + + test(`Stack with align ${align} and direction column`, async ({ mount }) => { + const component = await mount(); + + await expect(component).toHaveScreenshot(); + }); + }); + + Object.values(JUSTIFY).forEach(justify => { + test(`Stack with justify ${justify} and direction row`, async ({ mount }) => { + const component = await mount(); + + await expect(component).toHaveScreenshot(); + }); + + test(`Stack with justify ${justify} and direction column`, async ({ mount }) => { + const component = await mount( + + + , + ); + + await expect(component).toHaveScreenshot(); + }); + }); +}); diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Desktop-darwin.png new file mode 100644 index 0000000000..ffb61ae9ab Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Desktop-linux.png new file mode 100644 index 0000000000..4aaa05745d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..d8483b284e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..56f90f9fbb Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..763c372972 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..430a64278d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..9ee8106e4c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..ce71a0c2ed Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..5cc97c364c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..dc86f3db33 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Tablet-darwin.png new file mode 100644 index 0000000000..7ca5c2f26e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Tablet-linux.png new file mode 100644 index 0000000000..2bb8458699 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-default-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..8aeae68876 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..85dcc8cd48 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..2910e0da2b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..9381c85561 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..03c2bbdd9d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..a6089090ce Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..8486ef66ad Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..0d9f344a86 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..bbe4a5e8fa Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..0ed10bc7a8 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..2740818a8c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..59c71fdd2d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..bc199d9780 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..4b96ee46b4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..1a68ddd95d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..f6383d016e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..c8d60e5b6d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..7fdd699635 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..56d47f95dc Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..3ac7a370b9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..b8be68d5aa Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..5e06bffe12 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..b9c4979157 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..5d0f9c1d95 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-baseline-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..5c335ed3ed Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..18e0c9b228 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..271b90897c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..577049bef4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..858957a8bd Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..aa17a62ded Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..5645c12d36 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..8de153ccd7 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..c98b9fa29f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..ead9a2fec6 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..e4ea06c90f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..1ef6af22f6 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..bc199d9780 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..4b96ee46b4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..1a68ddd95d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..f6383d016e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..c8d60e5b6d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..7fdd699635 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..56d47f95dc Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..3ac7a370b9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..b8be68d5aa Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..5e06bffe12 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..b9c4979157 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..5d0f9c1d95 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-center-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..d2b750bd8e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..f83ad83549 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..75fbb9fd6c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..740d6b6690 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..3247c32daa Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..f0a065ee0a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..2eb296cd6d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..e2c660b760 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..5cadc633b4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..1c2214cfaf Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..09ad350381 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..439d62e3dd Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..4e2f0be427 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..7f6318ba01 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..46f0b1e3e2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..731bd8d6ef Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..a9e4170cf7 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..598ea52f02 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..d4a6054d43 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..9ff1ff926e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..32c4347243 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..6058531cfe Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..05da1ad650 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..602fbfb846 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-end-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..8aeae68876 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..85dcc8cd48 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..2910e0da2b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..9381c85561 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..03c2bbdd9d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..a6089090ce Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..8486ef66ad Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..0d9f344a86 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..bbe4a5e8fa Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..0ed10bc7a8 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..2740818a8c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..59c71fdd2d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..c012f6cf3f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..7bf34184d2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..278230e135 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..ff2392974f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..b0f9ea322e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d9dbb31738 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..2a219d277f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..eac6d04c2c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..2efc587669 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..7514deab4f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..e4ebe7666a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..069f3294d4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-start-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..ffb61ae9ab Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..4aaa05745d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..d8483b284e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..56f90f9fbb Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..763c372972 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..430a64278d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..9ee8106e4c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..ce71a0c2ed Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..5cc97c364c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..dc86f3db33 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..7ca5c2f26e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..2bb8458699 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..c012f6cf3f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..7bf34184d2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..278230e135 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..ff2392974f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..b0f9ea322e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d9dbb31738 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..2a219d277f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..eac6d04c2c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..2efc587669 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..7514deab4f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..e4ebe7666a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..069f3294d4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-align-stretch-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..8aeae68876 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..85dcc8cd48 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..2910e0da2b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..9381c85561 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..03c2bbdd9d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..a6089090ce Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..8486ef66ad Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..0d9f344a86 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..bbe4a5e8fa Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..0ed10bc7a8 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..2740818a8c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..59c71fdd2d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Desktop-darwin.png new file mode 100644 index 0000000000..e6e1d5bf1b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Desktop-linux.png new file mode 100644 index 0000000000..6c5a481f6f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..e9fef7d0a6 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..a34c3f5922 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..9864a44417 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d2fd1ba677 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..bdb842005d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..b5c93e4852 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..d57b5d3bdf Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..c29179ce0d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Tablet-darwin.png new file mode 100644 index 0000000000..4737d677a4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Tablet-linux.png new file mode 100644 index 0000000000..c50eead71e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-column-reverse-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..c012f6cf3f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..7bf34184d2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..278230e135 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..ff2392974f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..b0f9ea322e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d9dbb31738 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..2a219d277f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..eac6d04c2c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..2efc587669 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..7514deab4f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..e4ebe7666a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..069f3294d4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Desktop-darwin.png new file mode 100644 index 0000000000..d60231331e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Desktop-linux.png new file mode 100644 index 0000000000..0bcf914ce7 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..ab785d7794 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..aa2c064d91 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..344ebef49c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..fc9d85cd73 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..3edac467fe Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..8d1a7e6d3b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..05e8d9cf81 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..f58cf942de Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Tablet-darwin.png new file mode 100644 index 0000000000..eab6653edf Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Tablet-linux.png new file mode 100644 index 0000000000..d2211a15d9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-direction-row-reverse-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Desktop-darwin.png new file mode 100644 index 0000000000..c012f6cf3f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Desktop-linux.png new file mode 100644 index 0000000000..7bf34184d2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..278230e135 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..ff2392974f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..b0f9ea322e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d9dbb31738 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..2a219d277f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..eac6d04c2c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..2efc587669 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..7514deab4f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Tablet-darwin.png new file mode 100644 index 0000000000..e4ebe7666a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Tablet-linux.png new file mode 100644 index 0000000000..069f3294d4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-gap-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Desktop-darwin.png new file mode 100644 index 0000000000..037a96e668 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Desktop-linux.png new file mode 100644 index 0000000000..bbf1e94e04 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..037a96e668 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..bbf1e94e04 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..2ef013f2b9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..820811e4d3 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..2ef013f2b9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..820811e4d3 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..3c53e28ebc Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..820811e4d3 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Tablet-darwin.png new file mode 100644 index 0000000000..3c53e28ebc Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Tablet-linux.png new file mode 100644 index 0000000000..820811e4d3 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-inline-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..ddec7fad24 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..5cb59d4374 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..4838a27662 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..1d25965318 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..813d3354f5 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..8b782d4d1a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..ed27b42ddb Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..9b7ca8a499 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..ca252b0616 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..03fcac568c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..485704646f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..1101b6e728 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..f8708cfd25 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..b358f5bdbd Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..d6a5cfe043 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..0d699463e4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..f8ac3c2fc7 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d4c991a6cf Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..15a7852e2c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..3470655c29 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..0d0b43b020 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..016e6d563b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..46eaba0235 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..c5618e4bfe Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-around-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..f0ccf2bd18 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..bcfcb289e7 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..ab84eac6d6 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..4252db248c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..1581e689c1 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..92046ea668 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..9c06819e76 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..50f894d93b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..39c009bfe5 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..c723f1afe2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..fc28d102ab Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..3302a4277b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..d271874072 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..842539516e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..a287f0d64f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..2ce30cf790 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..f90f717b18 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..32398c0a88 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..2994cab443 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..5809a30055 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..fef1268a9a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..7dd56dbb09 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..989f689da3 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..38d161544f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-between-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..fbe3ebfe5d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..ee6215391c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..cd4aba5593 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..9da4c8b086 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..691c85e45f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..198226bfd5 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..cdf88de418 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..4b43176d65 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..92b446de9e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..bb053534ef Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..23c0b95bd5 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..24c4efa49e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..777d528062 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..400ca85b06 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..dca8ac2200 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..388cb1143b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..cc11ae4ce3 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..2e2072e3e2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..efaf67e27c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..6419fb5489 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..0eb5773d96 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..adc92454dd Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..b90089133e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..d7f6d42a78 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-center-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..09796116d6 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..29d251e40c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..f4c667128c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..702416c8ea Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..835bb1f9c7 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..57fdf285d1 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..9195f5d1fa Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..1bcabd9f6c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..3c90ed9ce4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..42dc306648 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..d204ce6a5f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..c0999cd7e6 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..72d2d42d4d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..fbc0cd842e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..9f9f9b2967 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..cac8b8e9f8 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..57c5701893 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..37dc20f342 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..6c57966e66 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..fe36ea22bc Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..531dc1fad7 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..e754e5c8ac Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..767932a4f0 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..33ee0d797c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-end-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Desktop-darwin.png new file mode 100644 index 0000000000..0abb119469 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Desktop-linux.png new file mode 100644 index 0000000000..aa916694eb Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..1bcf299688 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..7bf87f8fd9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..233acea1bf Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..da18f40ceb Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..c1cc905129 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..49f500d2c1 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..bf16a603ce Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..75e7747496 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Tablet-darwin.png new file mode 100644 index 0000000000..5835d690ff Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Tablet-linux.png new file mode 100644 index 0000000000..7eba0cc0b5 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-column-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Desktop-darwin.png new file mode 100644 index 0000000000..c012f6cf3f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Desktop-linux.png new file mode 100644 index 0000000000..7bf34184d2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..278230e135 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..ff2392974f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..b0f9ea322e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d9dbb31738 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..2a219d277f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..eac6d04c2c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..2efc587669 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..7514deab4f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Tablet-darwin.png new file mode 100644 index 0000000000..e4ebe7666a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Tablet-linux.png new file mode 100644 index 0000000000..069f3294d4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-justify-start-and-direction-row-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Desktop-darwin.png new file mode 100644 index 0000000000..a9eea25fe0 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Desktop-linux.png new file mode 100644 index 0000000000..dcc211af58 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..a96228aa2a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..3bab8fa5f9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..8f6bf1da57 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..45ec933545 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..10537c51f8 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..acf56e8627 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..57161ef228 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..db1c7c99fe Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Tablet-darwin.png new file mode 100644 index 0000000000..d87e137740 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Tablet-linux.png new file mode 100644 index 0000000000..84de71d815 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XLarge-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Desktop-darwin.png new file mode 100644 index 0000000000..dcd28f79a0 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Desktop-linux.png new file mode 100644 index 0000000000..48ecc9512e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..6f13d48488 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..724ba2f3ca Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..5358e744ef Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..cb539bcd4c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..341f632cf6 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..72f666d682 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..03b9c428fe Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..46143a1364 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Tablet-darwin.png new file mode 100644 index 0000000000..f091947e32 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Tablet-linux.png new file mode 100644 index 0000000000..3c00315fc3 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XSmall-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Desktop-darwin.png new file mode 100644 index 0000000000..451ea28baa Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Desktop-linux.png new file mode 100644 index 0000000000..468bef4358 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..242f68e6e1 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..d062abedbe Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..9b3b47ac15 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..c7e90976c9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..f3481ca8ec Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..d7a01e0d98 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..f9133d1f38 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..685c93fa06 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Tablet-darwin.png new file mode 100644 index 0000000000..9f355ef90d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Tablet-linux.png new file mode 100644 index 0000000000..3c7e2f817b Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXLarge-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Desktop-darwin.png new file mode 100644 index 0000000000..2db22127ff Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Desktop-linux.png new file mode 100644 index 0000000000..9bbac62e39 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..158405c5b2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..7b5b46c531 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..93255fb931 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..eef187d86a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..9f8f1c0c39 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..043f9ea12d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..6956e38118 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..871fd38248 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Tablet-darwin.png new file mode 100644 index 0000000000..7435990511 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Tablet-linux.png new file mode 100644 index 0000000000..540fa70eef Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXSmall-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Desktop-darwin.png new file mode 100644 index 0000000000..816dc6d42f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Desktop-linux.png new file mode 100644 index 0000000000..dadb724c86 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..05b87510f9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..c13750f0b3 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..fafeb50e1d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..c7f578372d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..a17ae920da Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..e6da306388 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..182bcf0b46 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..9c76442ab2 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Tablet-darwin.png new file mode 100644 index 0000000000..ac67eb3a47 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Tablet-linux.png new file mode 100644 index 0000000000..82c6c51a9c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXLarge-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Desktop-darwin.png new file mode 100644 index 0000000000..21b3de4a58 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Desktop-linux.png new file mode 100644 index 0000000000..4a50b06d0a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..a3394d6e96 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..2e00583c59 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..9e035ff672 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..2b0f76229e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..d744a8b64a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..bb221ac133 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..9fe174f45a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..af7565fa64 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Tablet-darwin.png new file mode 100644 index 0000000000..74bad38ea8 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Tablet-linux.png new file mode 100644 index 0000000000..e2f5086019 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-XXXSmall-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Desktop-darwin.png new file mode 100644 index 0000000000..06244a9c26 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Desktop-linux.png new file mode 100644 index 0000000000..2576aaf455 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..ebb4d65809 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..8464c893f9 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..a6fd233161 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..a72244d71f Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..e6048c1256 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..269b890410 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..b7bef8b999 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..b456415533 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Tablet-darwin.png new file mode 100644 index 0000000000..f0fddc0e45 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Tablet-linux.png new file mode 100644 index 0000000000..871049ea8c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-large-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Desktop-darwin.png new file mode 100644 index 0000000000..ffb61ae9ab Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Desktop-linux.png new file mode 100644 index 0000000000..4aaa05745d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..d8483b284e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..56f90f9fbb Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..763c372972 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..430a64278d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..9ee8106e4c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..ce71a0c2ed Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..5cc97c364c Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..dc86f3db33 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Tablet-darwin.png new file mode 100644 index 0000000000..7ca5c2f26e Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Tablet-linux.png new file mode 100644 index 0000000000..2bb8458699 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-medium-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Desktop-darwin.png new file mode 100644 index 0000000000..33f9610cb0 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Desktop-linux.png new file mode 100644 index 0000000000..1e22d72ef4 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..d0f2e7331d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..d464864daf Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..b4942c0dfc Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..5ffd5f5c0a Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..cca0c99248 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..830a813285 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..e055f76a73 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..293b6fa273 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Tablet-darwin.png new file mode 100644 index 0000000000..b804e3481d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Tablet-linux.png new file mode 100644 index 0000000000..f010c67bb5 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-none-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Desktop-darwin.png new file mode 100644 index 0000000000..29576bca8d Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Desktop-linux.png new file mode 100644 index 0000000000..2b217c9977 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Desktop-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Desktop-darwin.png new file mode 100644 index 0000000000..89a984a4be Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Desktop-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Desktop-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..f4c065a304 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Mobile-darwin.png new file mode 100644 index 0000000000..988e7075d1 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..fe309e4516 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Medium-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Medium-Mobile-darwin.png new file mode 100644 index 0000000000..06e8794268 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Medium-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..92e1638a88 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Small-Mobile-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Small-Mobile-darwin.png new file mode 100644 index 0000000000..40aa057fdb Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Small-Mobile-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Small-Mobile-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..8ecdb2e875 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Tablet-darwin.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Tablet-darwin.png new file mode 100644 index 0000000000..f4b7733550 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Tablet-darwin.png differ diff --git a/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Tablet-linux.png b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Tablet-linux.png new file mode 100644 index 0000000000..9d3435bb40 Binary files /dev/null and b/packages/orbit-components/src/Stack/Stack.ct.tsx-snapshots/visual-Stack-Stack-with-spacing-small-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Stack/index.tsx b/packages/orbit-components/src/Stack/index.tsx index 48259cc802..23b90a6158 100644 --- a/packages/orbit-components/src/Stack/index.tsx +++ b/packages/orbit-components/src/Stack/index.tsx @@ -139,16 +139,19 @@ const Stack = (props: Props) => { return cx( typeof spaceAfter !== "undefined" && getSpaceAfterClasses(spaceAfter, viewport), - typeof align !== "undefined" && getAlignItemsClasses(align, viewport), - typeof align !== "undefined" && getAlignContentClasses(align, viewport), - typeof wrap !== "undefined" && getWrapClasses(wrap, viewport), - typeof grow !== "undefined" && getGrowClasses(grow, viewport), - typeof shrink !== "undefined" && getShrinkClasses(shrink, viewport), - typeof justify !== "undefined" && getJustifyClasses(justify, viewport), - getDirectionClasses(direction, viewport), + flex && [ + typeof align !== "undefined" && getAlignItemsClasses(align, viewport), + typeof align !== "undefined" && getAlignContentClasses(align, viewport), + typeof wrap !== "undefined" && getWrapClasses(wrap, viewport), + typeof grow !== "undefined" && getGrowClasses(grow, viewport), + typeof shrink !== "undefined" && getShrinkClasses(shrink, viewport), + typeof justify !== "undefined" && getJustifyClasses(justify, viewport), + getDirectionClasses(direction, viewport), + ], flex || inline ? getDisplayClasses(inline ? "inline-flex" : "flex", viewport) : "block", getSpacingClasses(spacing, viewport, direction, legacy), inline === false && "w-full", + !inline && direction === DIRECTION.COLUMN && "h-full", ); }; @@ -165,6 +168,7 @@ const Stack = (props: Props) => { return getTailwindTokensForMedia( { ...props[viewport], + flex: getProperty("flex", viewports, index), direction: getProperty("direction", viewports, index), spacing: getProperty("spacing", viewports, index), legacy: getProperty("legacy", viewports, index),