Sha256: 55f621184a64b3eb2e2b6030972e2f83ec4bbbb77c864fc3c3f95950fe1fe88d
Contents?: true
Size: 646 Bytes
Versions: 21
Compression:
Stored size: 646 Bytes
Contents
# frozen_string_literal: true module Blacklight module Gallery module Icons # This is the gallery icon for the view type button. # You can override the default svg by setting: # Blacklight::Gallery:Icons::ChevronRightComponent.svg = '<svg>your SVG here</svg>' class ChevronRightComponent < 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="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z"/> </svg> SVG end end end end
Version data entries
21 entries across 21 versions & 2 rubygems