mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-13 12:27:03 +00:00
11 lines
238 B
Svelte
11 lines
238 B
Svelte
<script lang="ts">
|
|
import {fly} from "@lib/transition"
|
|
|
|
export let component
|
|
export let props = {}
|
|
</script>
|
|
|
|
<div class="modal-box bg-alt" transition:fly={{duration: 100}}>
|
|
<svelte:component this={component} {...props} />
|
|
</div>
|