feat(layer): first pass at Layer component (#1932)

Closes #1892
This commit is contained in:
Sam 2024-03-24 09:30:32 +11:00 committed by GitHub
commit 180f33b907
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 164 additions and 2 deletions

13
tests/Layer.test.svelte Normal file
View file

@ -0,0 +1,13 @@
<script>
import { Layer } from "carbon-components-svelte";
</script>
<Layer>
<p>First layer</p>
<Layer>
<p>Second layer</p>
<Layer>
<p>Third layer</p>
</Layer>
</Layer>
</Layer>