Sha256: 14642875f413fa8e599dbfe80ceb334c38ce04b9e35e10c6b8e1eeca063448a1
Contents?: true
Size: 650 Bytes
Versions: 14
Compression:
Stored size: 650 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::MasonryComponent.svg = '<svg>your SVG here</svg>' class MasonryComponent < 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 18h5v-6h-5v6zm-6 0h5V5H4v13zm12 0h5v-6h-5v6zM10 5v6h11V5H10z"/> </svg> SVG end end end end
Version data entries
14 entries across 14 versions & 2 rubygems