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