ubicloud/views/components/copyable_content.erb
Jeremy Evans 311699eac2 Use herb linter for linting erb files, and fix most issues
After running these changes, there are 1 error and 3 warnings when
running the linter, due to bugs in the linter
(https://github.com/marcoroth/herb/issues 480, 481, 483).
2025-09-05 14:51:03 -07:00

19 lines
495 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
alt=""
src="/icons/hero-clipboard-document.svg"
width="18px"
class="inline-block copy-button cursor-pointer ms1"
>
</div>