Sha256: 540b4ed1e71d2dcb0dbef7abae0d18c9d31226281dd94ed49eea3c461fe32afd
Contents?: true
Size: 667 Bytes
Versions: 12
Compression:
Stored size: 667 Bytes
Contents
# 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 = '<svg>your SVG here</svg>' class RemoveCircleComponent < Blacklight::Icons::IconComponent self.svg = <<~SVG <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> <path fill="none" d="M0 0h24v24H0V0z"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z"/> </svg> SVG end end end end
Version data entries
12 entries across 12 versions & 2 rubygems