Files
phishingclub/frontend/src/lib/components/Form.svelte
T
2025-08-21 16:14:09 +02:00

16 lines
263 B
Svelte

<script>
export let bindTo = null;
export let fullHeight = false;
export let fullWidth = false;
</script>
<form
on:submit|preventDefault
class="flex w-60 flex-col"
class:h-full={fullHeight}
class:w-full={fullWidth}
bind:this={bindTo}
>
<slot />
</form>