19 lines
377 B
Plaintext
19 lines
377 B
Plaintext
<%= render StatusTextComponent.new(
|
|
text: @text,
|
|
icon_name: @icon_name,
|
|
icon_color: @icon_color) %>
|
|
|
|
<% if @status == 1 %>
|
|
<p class="mt-8">
|
|
<button class="btn-md btn-blue">
|
|
Add the relay to my list
|
|
</button>
|
|
</p>
|
|
<% elsif @status == 2 %>
|
|
<p class="mt-8">
|
|
<button class="btn-md btn-blue">
|
|
Set up default relays
|
|
</button>
|
|
</p>
|
|
<% end %>
|