# frozen_string_literal: false # Core SVG data for the binoculars insignia. # # This class should never need to be called directly. # @private class USPSFlags class Core module Icons class Binoculars def initialize(type: :d) @color = case type when :d USPSFlags::Config::RED when :n USPSFlags::Config::BLUE end end def svg <<~SVG SVG end end end end end