Sha256: 09504355d1055470170071efc0111bab4fcfe85057861f1f4a02ec98d48b7ab2

Contents?: true

Size: 627 Bytes

Versions: 24

Compression:

Stored size: 627 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Remix
      class HexagonLine < 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:
                'M17.5 2.5L23 12L17.5 21.5H6.5L1 12L6.5 2.5H17.5ZM16.3469 4.5H7.65311L3.311 12L7.65311 19.5H16.3469L20.689 12L16.3469 4.5Z'
            )
          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/hexagon_line.rb
phlex-icons-0.4.0 lib/phlex/icons/remix/hexagon_line.rb
phlex-icons-0.3.0 lib/phlex/icons/remix/hexagon_line.rb
phlex-icons-0.2.0 lib/phlex/icons/remix/hexagon_line.rb