{#if title}
{title}
{/if}
{#each actions as action (action.label)}
handle(action)} class="flex w-full items-center gap-3 rounded-xl px-4 py-3 text-left text-base transition active:bg-gray-100 disabled:opacity-50 dark:active:bg-gray-700" class:text-gray-900={action.tone !== 'danger'} class:dark:text-gray-100={action.tone !== 'danger'} class:text-red-600={action.tone === 'danger'} class:dark:text-red-400={action.tone === 'danger'} class:hover:bg-gray-50={!action.disabled} class:dark:hover:bg-gray-800={!action.disabled} > {#if action.icon}
{action.icon}
{/if}
{action.label}
{/each}
Abbrechen