Sha256: 7dcb5d103ad861dfc386496210df76e60993ca569054a5a0227a1f0c19b6daeb
Contents?: true
Size: 657 Bytes
Versions: 21
Compression:
Stored size: 657 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::StartSlideshowComponent.svg = '<svg>your SVG here</svg>' class StartSlideshowComponent < Blacklight::Icons::IconComponent self.svg = <<~SVG <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z"></path> </svg> SVG end end end end
Version data entries
21 entries across 21 versions & 2 rubygems