mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-07-15 16:27:26 +02:00
16 lines
263 B
Svelte
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>
|