$deleteButton = <<<HTML
<button
type="button"
wire:click="mountTableAction('delete', '{$record->id}')"
wire:loading.attr="disabled"
class="fi-btn relative font-semibold inline-grid items-center gap-1 px-2.5 py-1.5 text-sm rounded-lg
ring-1 ring-custom-600 text-custom-600 hover:bg-custom-400/10
dark:text-custom-400 dark:ring-custom-500"
style="--c-400:var(--danger-400); --c-500:var(--danger-500); --c-600:var(--danger-600);"
>
<!-- Delete icon -->
<svg wire:loading.remove.delay.default="1" wire:target="mountTableAction('delete', '{$record->id}')"
class="w-4 h-4" fill="currentColor">
<path d="M8.75 1A2.75..."/>
</svg>
<!-- Loading spinner -->
<svg class="w-4 h-4 animate-spin" fill="none" viewBox="0 0 24 24"
wire:loading.delay.default=""
wire:target="mountTableAction('delete', '{$record->id}')">
<path ... />
</svg>
<span class="fi-btn-label">削除</span>
</button>
HTML;
$deleteButton = <<<HTML
<button
type="button"
wire:click="mountTableAction('delete', '{$record->id}')"
wire:loading.attr="disabled"
class="fi-btn relative font-semibold inline-grid items-center gap-1 px-2.5 py-1.5 text-sm rounded-lg
ring-1 ring-custom-600 text-custom-600 hover:bg-custom-400/10
dark:text-custom-400 dark:ring-custom-500"
style="--c-400:var(--danger-400); --c-500:var(--danger-500); --c-600:var(--danger-600);"
>
<!-- Delete icon -->
<svg wire:loading.remove.delay.default="1" wire:target="mountTableAction('delete', '{$record->id}')"
class="w-4 h-4" fill="currentColor">
<path d="M8.75 1A2.75..."/>
</svg>
<!-- Loading spinner -->
<svg class="w-4 h-4 animate-spin" fill="none" viewBox="0 0 24 24"
wire:loading.delay.default=""
wire:target="mountTableAction('delete', '{$record->id}')">
<path ... />
</svg>
<span class="fi-btn-label">削除</span>
</button>
HTML;