mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
548 B
17 lines
548 B
<span class="enabled">
|
|
<span class="flex items-center justify-center space-x-2">
|
|
<%= icon %>
|
|
<% if title %>
|
|
<span class="<%= local_assigns[:title_class] %>"><%= title %></span>
|
|
<% end %>
|
|
</span>
|
|
</span>
|
|
<span class="disabled">
|
|
<span class="flex items-center justify-center space-x-2">
|
|
<%= local_assigns[:icon_disabled] || svg_icon('loader', class: 'w-5 h-5 animate-spin') %>
|
|
<% if disabled_with %>
|
|
<span class="<%= local_assigns[:title_class] %>"><%= disabled_with %>...</span>
|
|
<% end %>
|
|
</span>
|
|
</span>
|