# frozen_string_literal: true module Blacklight module Icons # This is the magnifing glass icon for the search button. # You can override the default svg by setting: # Blacklight::Icons::SearchComponent.svg = 'your SVG here' class SearchComponent < Blacklight::Icons::IconComponent self.svg = <<~SVG SVG end end end