2024-09-11 19:04:39 +02:00
|
|
|
<%# app/views/invite_codes/_invite_code.html.erb %>
|
|
|
|
<div class="invite_code pt-2">
|
|
|
|
<div class="flex items-center justify-between p-2 w-1/2 bg-gray-25 rounded-md" data-controller="clipboard">
|
|
|
|
<div>
|
|
|
|
<span data-clipboard-target="source" class="text-sm font-medium"><%= invite_code.token %></span>
|
|
|
|
</div>
|
2025-02-13 11:31:07 -05:00
|
|
|
<button data-action="clipboard#copy" class="shrink-0 z-10 inline-flex items-center px-1 text-sm text-secondary font-sm text-center" type="button">
|
2024-09-11 19:04:39 +02:00
|
|
|
<span data-clipboard-target="iconDefault">
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= icon "copy" %>
|
2024-09-11 19:04:39 +02:00
|
|
|
</span>
|
|
|
|
<span class="hidden inline-flex items-center" data-clipboard-target="iconSuccess">
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= icon "check" %>
|
2024-09-11 19:04:39 +02:00
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|