<% packages.each do |package, icons| %>
<%= package.name %>
<% if my_package?(package) %>
<%= link_to_share package %>
<%= link_to package_path(package),
method: :delete,
class: 'text-danger mt-05 list-inline-item text-sm',
title: 'Delete package',
data: { confirm: 'You sure you want to delete this package?', toggle: 'iconly-tooltip' } do %>
<% end %>
<% end %>
<% icons.each do |icon| %>
<%= icon_svg icon, project_icons %>
<% end %>
<% end %>
<% if packages.blank? %>
Can't find that icon ...
<%= link_to 'Clear search', project_path(project), class: 'btn btn-lg btn-primary' %>
<% end %>