8 lines
184 B
Plaintext
8 lines
184 B
Plaintext
<% @statuses.each do |status| %>
|
|
<%= render StatusTextComponent.new(
|
|
text: status[:text],
|
|
icon_name: status[:icon_name],
|
|
icon_color: status[:icon_color]
|
|
) %>
|
|
<% end %>
|