mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 15:19:38 +02:00
14 lines
508 B
Text
14 lines
508 B
Text
<%# locals: { trend: } %>
|
|
|
|
<% styles = trend_styles(trend) %>
|
|
|
|
<p class="text-sm <%= styles[:text_class] %>">
|
|
<% if trend.direction.flat? %>
|
|
<span>No change</span>
|
|
<% else %>
|
|
<span><%= styles[:symbol] %><%= trend.value.is_a?(Money) ? format_money(trend.value.abs) : trend.value.abs.round(2) %></span>
|
|
<% unless trend.percent.infinite? %>
|
|
<span>(<%= lucide_icon(styles[:icon], class: "w-4 h-4 align-text-bottom inline") %><%= trend.percent.abs %>%)</span>
|
|
<% end %>
|
|
<% end %>
|
|
</p>
|