Sha256: 4cd4693320b4fe83583ce136345180a144496127d69a1693df1cabcadf7c2612

Contents?: true

Size: 718 Bytes

Versions: 24

Compression:

Stored size: 718 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Remix
      class SignpostLine < Base
        def view_template
          svg(
            class: classes,
            viewbox: '0 0 24 24',
            fill: 'currentColor',
            xmlns: 'http://www.w3.org/2000/svg'
          ) do |s|
            s.path(
              d:
                'M12 5H17.4142L21.7071 9.29289C22.0976 9.68342 22.0976 10.3166 21.7071 10.7071L17.4142 15H12V22H10V15H4C3.44772 15 3 14.5523 3 14V6C3 5.44772 3.44772 5 4 5H10V2H12V5ZM16.5858 13L19.5858 10L16.5858 7H5V13H16.5858Z'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
phlex-icons-0.5.0 lib/phlex/icons/remix/signpost_line.rb
phlex-icons-0.4.0 lib/phlex/icons/remix/signpost_line.rb
phlex-icons-0.3.0 lib/phlex/icons/remix/signpost_line.rb
phlex-icons-0.2.0 lib/phlex/icons/remix/signpost_line.rb