mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-06 14:05:20 +02:00
* Dashboard design fixes * Update dashboard greeting * Remove sidebar toggle from settings breadcrumbs * Autofocus and outlines for category dropdowns * Lint fixes
14 lines
499 B
Text
14 lines
499 B
Text
<%# locals: { trend: } %>
|
|
|
|
<p class="text-sm" style="color: <%= trend.color %>">
|
|
<% if trend.direction.flat? %>
|
|
<span>No change</span>
|
|
<% else %>
|
|
<span class="font-mono">
|
|
<%= trend.value.is_a?(Money) ? format_money(trend.value) : trend.value.round(2) %>
|
|
</span>
|
|
<% unless trend.percent.infinite? %>
|
|
<span class="font-mono">(<%= lucide_icon(trend.icon, class: "w-4 h-4 align-text-bottom inline") %><%= trend.percent_formatted %>)</span>
|
|
<% end %>
|
|
<% end %>
|
|
</p>
|