<% stats.each do |text, amount, options = {}| %>
<%= render Admin::Stats::StatComponent.new(text: text, amount: amount, options: options) %>
<% end %>
<% bugdets_stats.each do |budget_name, *budget_stats| %>
<%= budget_name %>
<% budget_stats.each do |text, amount, options = {}| %>
<%= render Admin::Stats::StatComponent.new(text: text, amount: amount, options: options) %>
<% end %>
<% end %>