mirror of
https://github.com/appwrite/console.git
synced 2026-04-07 19:17:46 +00:00
8 lines
144 B
Svelte
8 lines
144 B
Svelte
<script lang="ts">
|
|
export let fullWidth = false;
|
|
</script>
|
|
|
|
<ul class="collapsible" class:u-width-full-line={fullWidth}>
|
|
<slot />
|
|
</ul>
|