fix(savings_goals): status pill icons inherit pill's semantic color

Pass color: "current" to the icon helper so triangle-alert / circle-check
/ star / infinity / pause render in the same color as the pill's text
(text-success / text-warning / text-secondary). The icon helper defaults
to text-secondary, which made all icons grey regardless of pill variant.
This commit is contained in:
Guillem Arias
2026-05-11 15:18:45 +02:00
parent 27863882fe
commit a7bec613c0

View File

@@ -1,4 +1,4 @@
<span class="inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-xs font-medium whitespace-nowrap <%= classes %>" aria-label="<%= label %>">
<%= helpers.icon(icon_name, size: "xs") %>
<%= helpers.icon(icon_name, size: "xs", color: "current") %>
<%= label %>
</span>