Sha256: 41f7689bb058616d4daa52c77092fc4906211a9c69f7abebb735df9d9de59170
Contents?: true
Size: 834 Bytes
Versions: 38
Compression:
Stored size: 834 Bytes
Contents
<ol role="list" class="flex items-center space-x-4"> <% @items.each.with_index do |item, i| %> <li> <div class="flex items-center"> <% if i.positive? %> <!-- Heroicon name: solid/chevron-right --> <svg class="flex-shrink-0 h-5 w-5 text-gray-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" /> </svg> <% end %> <a href="<%= item[:path] %>" data-turbo-frame="_top" class="<%= 'ml-4' unless i.zero? %> text-sm font-medium text-gray-500 hover:text-gray-700"> <%= item[:label] %> </a> </div> </li> <% end %> </ol>
Version data entries
38 entries across 38 versions & 1 rubygems