open-webui/src/lib/components/chat/Settings/UserSettingSection.svelte
Timothy Jaeryang Baek bd5d7b2e87 refac
2026-07-24 01:47:11 -04:00

17 lines
336 B
Svelte

<script lang="ts">
export let title = '';
export let first = false;
export let className = '';
</script>
<section class="w-full {first ? '' : 'mt-4'} {className}">
{#if title}
<h3 class="mb-2 text-xs text-gray-600 dark:text-gray-400">
{title}
</h3>
{/if}
<div class="flex flex-col gap-2.5">
<slot />
</div>
</section>