Files
flotilla/src/lib/components/Field.svelte
T
2024-10-17 15:21:22 -07:00

14 lines
295 B
Svelte

<div class="flex flex-col gap-2 {$$props.class}">
{#if $$slots.label}
<label class="flex items-center gap-2 font-bold">
<slot name="label" />
</label>
{/if}
<slot name="input" />
{#if $$slots.info}
<p class="text-sm">
<slot name="info" />
</p>
{/if}
</div>