Files
docuseal/app/views/shared/_button_title.html.erb
T
2023-06-17 23:45:49 +03:00

13 lines
359 B
Plaintext

<span class="enabled">
<span class="flex items-center justify-center space-x-2">
<%= icon if icon %>
<span><%= title %></span>
</span>
</span>
<span class="disabled">
<span class="flex items-center justify-center space-x-2">
<%= svg_icon('loader', class: 'w-6 h-6 animate-spin') %>
<span><%= disabled_with %>...</span>
</span>
</span>