{buttonText}
{#if isOpen}
handleSelect(null)} class="flex w-full items-center gap-2 px-3 py-2 text-left text-sm transition-colors hover:bg-slate-700 {!currentPromptId ? 'bg-slate-700/50 text-slate-100' : 'text-slate-300'}" >
No system prompt
{#if !currentPromptId}
{/if}
{#if prompts.length > 0}
{#each prompts as prompt}
handleSelect(prompt.id)} class="flex w-full flex-col gap-0.5 px-3 py-2 text-left transition-colors hover:bg-slate-700 {currentPromptId === prompt.id ? 'bg-slate-700/50' : ''}" >
{prompt.name} {#if prompt.isDefault}
(default)
{/if}
{#if currentPromptId === prompt.id}
{/if}
{#if prompt.description}
{prompt.description}
{/if}
{/each} {:else}
No prompts available.
Create one
{/if}
{/if}