mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 15:35:22 +02:00
12 lines
485 B
Text
12 lines
485 B
Text
|
<%= turbo_frame_tag dom_id(@account, :sparkline) do %>
|
||
|
<div class="flex items-center justify-end gap-1">
|
||
|
<div class="w-8 h-5">
|
||
|
<%= render "shared/sparkline", id: dom_id(@account, :sparkline_chart), series: @account.sparkline_series %>
|
||
|
</div>
|
||
|
|
||
|
<%= tag.p @account.sparkline_series.trend.percent_formatted,
|
||
|
style: "color: #{@account.sparkline_series.trend.color}",
|
||
|
class: "text-right text-xs font-medium text-primary" %>
|
||
|
</div>
|
||
|
<% end %>
|