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