Sha256: b6c801fbe86090483d6f8249fa91c2c99d1d74e32c0674be6f510bae01472f8b
Contents?: true
Size: 643 Bytes
Versions: 21
Compression:
Stored size: 643 Bytes
Contents
# frozen_string_literal: true module Blacklight module Icons # This is the list icon for the search button. # You can override the default svg by setting: # Blacklight::Icons::ListComponent.svg = '<svg>your SVG here</svg>' class ListComponent < Blacklight::Icons::IconComponent self.svg = <<~SVG <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" aria-hidden="true" width="24" height="24" viewBox="0 0 24 24"> <path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"/><path d="M0 0h24v24H0z" fill="none"/> </svg> SVG end end end
Version data entries
21 entries across 21 versions & 2 rubygems