Sheet
A side or edge panel for secondary workflows and supporting detail.
The Sheet Component
Basic Usage
Code Snippet
<script lang="ts"> import { Button, Sheet } from '$lib/components'; let open = $state(false); </script> <Button onclick={() => (open = true)}>Open settings</Button> <Sheet bind:open={open} side="right" title="Quick settings" description="Adjust rollout preferences."> <p class="text-sm text-app-text-muted">Move secondary setup work out of the main canvas.</p> </Sheet>Examples
Large Left Sheet
Open a wider sheet from the left for navigation or historical context.
