Sha256: cb0e3736f7503b52d44a324c2d20e1261290b665b193586df2432885fea61f92

Contents?: true

Size: 937 Bytes

Versions: 3

Compression:

Stored size: 937 Bytes

Contents

<%= render Primer::BaseComponent.new(**@system_arguments) do %>
  <% if @icon.present? %>
    <%= render(Primer::OcticonComponent.new(
      icon: @icon,
      size: @icon_size,
      classes: "blankslate-icon"
    )) %>
  <% end %>

  <% if @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

3 entries across 3 versions & 1 rubygems

Version Path
primer_view_components-0.0.15 app/components/primer/blankslate_component.html.erb
primer_view_components-0.0.14 app/components/primer/blankslate_component.html.erb
primer_view_components-0.0.13 app/components/primer/blankslate_component.html.erb