mirror of
https://github.com/we-promise/sure.git
synced 2026-04-26 15:34:13 +00:00
Agent-Logs-Url: https://github.com/we-promise/sure/sessions/e802e01f-079e-4322-ba03-b222ab5d4b84 Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com>
14 lines
379 B
Plaintext
14 lines
379 B
Plaintext
<%= container do %>
|
|
<% if icon && (icon_position != :right) %>
|
|
<%= helpers.icon(icon, size: size, color: icon_color, class: icon_classes) %>
|
|
<% end %>
|
|
|
|
<% unless icon_only? %>
|
|
<span class="min-w-0 truncate"><%= text %></span>
|
|
<% end %>
|
|
|
|
<% if icon && icon_position == :right %>
|
|
<%= helpers.icon(icon, size: size, color: icon_color) %>
|
|
<% end %>
|
|
<% end %>
|