Sha256: aaf20b028516d844985ec64bc1d7a018670894acbf675bb129be25df663288dd
Contents?: true
Size: 994 Bytes
Versions: 5
Compression:
Stored size: 994 Bytes
Contents
<%= render Primer::BaseComponent.new(**@system_arguments) do %> <% if spinner.present? %> <%= render spinner.component %> <% elsif @icon.present? %> <%= render(Primer::OcticonComponent.new( icon: @icon, size: @icon_size, classes: "blankslate-icon" )) %> <% elsif @image_src.present? && @image_alt.present? %> <%= image_tag "#{@image_src}", class: "mb-3", size: "56x56", alt: "#{@image_alt}" %> <% end %> <% if @title.present? %> <%= render Primer::BaseComponent.new(tag: @title_tag, mb: 1) do %><%= @title %><% end %> <% end %> <% if @description.present? %> <p><%= @description %></p> <% end %> <%= content %> <% if @button_text.present? && @button_url.present? %> <a class="btn <%= @button_classes %>" href="<%= @button_url %>"><%= @button_text %></a> <% end %> <% if @link_text.present? && @link_url.present? %> <p> <%= link_to "#{@link_url}" do %><%= @link_text %><% end %> </p> <% end %> <% end %>
Version data entries
5 entries across 5 versions & 1 rubygems