Sha256: b1c66743796f0fcaf1e22e83beb089a35cc33af243150a9be276260eea7ad891

Contents?: true

Size: 723 Bytes

Versions: 24

Compression:

Stored size: 723 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Remix
      class OctagonLine < 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:
                'M15.936 2.50098L21.501 8.06595V15.936L15.936 21.501H8.06595L2.50098 15.936V8.06595L8.06595 2.50098H15.936ZM15.1076 4.50098H8.89437L4.50098 8.89437V15.1076L8.89437 19.501H15.1076L19.501 15.1076V8.89437L15.1076 4.50098Z'
            )
          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/octagon_line.rb
phlex-icons-0.4.0 lib/phlex/icons/remix/octagon_line.rb
phlex-icons-0.3.0 lib/phlex/icons/remix/octagon_line.rb
phlex-icons-0.2.0 lib/phlex/icons/remix/octagon_line.rb