# Core SVG data for the binoculars insignia.
#
# This class should never need to be called directly.
# @private
class USPSFlags::Core::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