# Core SVG data for the anchor insignia. # # This class should never need to be called directly. # @private class USPSFlags::Core::Anchor def initialize(color: :red) @color_code = case color when :red "#BF0D3E" when :white "#FFFFFF" end end def svg <<~SVG SVG end end