nimuli/resources/views/livewire/modals/delete-qr-code.blade.php

21 lines
1003 B
PHP

<div class="p-6">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-full bg-red/10 flex items-center justify-center flex-shrink-0">
<svg class="w-5 h-5 text-red" fill="none" viewBox="0 0 20 20" stroke="currentColor" stroke-width="1.5">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 2h2m-5 2h8l-1 12H6L5 4zm3 4v6m2-6v6"/>
</svg>
</div>
<div class="flex-1 min-w-0">
<h3 class="text-base font-semibold text-t1">Delete QR Code</h3>
<p class="mt-1.5 text-sm text-t2">
Delete <span class="text-t1 font-medium">{{ $qrLabel }}</span>? This cannot be undone.
</p>
</div>
</div>
<div class="flex gap-3 mt-6 justify-end">
<x-ui.button wire:click="closeModal" variant="ghost" label="Cancel" />
<x-ui.button wire:click="delete" action="delete" variant="danger" label="Delete QR Code" loading-label="Deleting..." />
</div>
</div>