mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-04 13:52:06 +08:00
10 lines
463 B
Text
10 lines
463 B
Text
<%# locals: (content:, message: "Copied", revealable: false, classes: "") %>
|
|
|
|
<div class="copyable-content inline-flex items-center gap-1 <%= classes %>" data-content="<%= content %>" data-message="<%= message %>">
|
|
<% if revealable %>
|
|
<%== part("components/revealable_content", content:) %>
|
|
<% else %>
|
|
<%= content %>
|
|
<% end %>
|
|
<img src="/icons/hero-clipboard-document.svg" width="18px" class="inline-block copy-button cursor-pointer ms1"/>
|
|
</div>
|