23 lines
		
	
	
		
			488 B
		
	
	
	
		
			Svelte
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			488 B
		
	
	
	
		
			Svelte
		
	
	
	
	
	
<script>
 | 
						|
    import { slide } from 'svelte/transition';
 | 
						|
    import ErrorAlert from '../ErrorAlert.svelte';
 | 
						|
 | 
						|
    export let title;
 | 
						|
</script>
 | 
						|
 | 
						|
 | 
						|
<div>
 | 
						|
    <div class="flex flex-wrap justify-between gap-y-4">
 | 
						|
        <h3 class="text-lg font-bold shrink-0">{title}</h3>
 | 
						|
        {#if $$slots.input}
 | 
						|
            <slot name="input"></slot>
 | 
						|
        {/if}
 | 
						|
    </div>
 | 
						|
 | 
						|
    {#if $$slots.description}
 | 
						|
        <p class="mt-3">
 | 
						|
            <slot name="description"></slot>
 | 
						|
        </p>
 | 
						|
    {/if}
 | 
						|
</div>
 |