27 lines
1.2 KiB
PHP
27 lines
1.2 KiB
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="M13 7a3 3 0 11-6 0 3 3 0 016 0zm-8 10a5 5 0 0110 0H5z"/>
|
|
</svg>
|
|
</div>
|
|
<div class="flex-1 min-w-0">
|
|
<h3 class="text-base font-semibold text-t1">Remove Member</h3>
|
|
<p class="mt-1.5 text-sm text-t2">
|
|
Remove <span class="text-t1 font-medium">{{ $memberName }}</span> from this workspace? They will lose access immediately.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex gap-3 mt-6 justify-end">
|
|
<button wire:click="closeModal"
|
|
class="px-4 py-2 bg-s2 text-t2 text-sm font-medium rounded-lg hover:text-t1 transition-colors border border-white/[.06]">
|
|
Cancel
|
|
</button>
|
|
<button wire:click="remove"
|
|
class="px-4 py-2 bg-red text-white text-sm font-medium rounded-lg hover:opacity-90 transition-opacity">
|
|
Remove
|
|
</button>
|
|
</div>
|
|
</div>
|