mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
12 lines
231 B
Svelte
12 lines
231 B
Svelte
<script lang="ts">
|
|
export let isCommonSection = false;
|
|
export let gap = 24;
|
|
</script>
|
|
|
|
<ul
|
|
class="form-list"
|
|
class:common-section={isCommonSection}
|
|
style={`--form-list-gap: ${gap / 16}rem;`}>
|
|
<slot />
|
|
</ul>
|