mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
9 lines
209 B
Svelte
9 lines
209 B
Svelte
<script lang="ts">
|
|
export let fullWidth = false;
|
|
export let alignEnd = false;
|
|
</script>
|
|
|
|
<div class="form-item-part" class:u-cross-child-end={alignEnd} class:u-stretch={fullWidth}>
|
|
<slot />
|
|
</div>
|