feat(stack): add Stack component (#1963)

This commit is contained in:
Eric Liu 2024-04-21 21:19:12 -07:00 committed by GitHub
commit 0f1a77a3fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 470 additions and 2 deletions

6
tests/Stack.test.svelte Normal file
View file

@ -0,0 +1,6 @@
<script lang="ts">
import { Stack } from "../types";
</script>
<Stack gap="200px" orientation="vertical">Content</Stack>
<Stack gap="{13}" orientation="horizontal">Content</Stack>