Sha256: 2f43ee3249acf7ecf15e43662f27b6f514b8f57bcf0ad4664c25ddc9977e686f

Contents?: true

Size: 943 Bytes

Versions: 12

Compression:

Stored size: 943 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class Trekking < Base
        def filled
          raise NotImplementedError
        end

        def outline
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'none',
            stroke: 'currentColor',
            stroke_width: '2',
            stroke_linecap: 'round',
            stroke_linejoin: 'round'
          ) do |s|
            s.path(d: 'M12 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0')
            s.path(d: 'M7 21l2 -4')
            s.path(d: 'M13 21v-4l-3 -3l1 -6l3 4l3 2')
            s.path(
              d:
                'M10 14l-1.827 -1.218a2 2 0 0 1 -.831 -2.15l.28 -1.117a2 2 0 0 1 1.939 -1.515h1.439l4 1l3 -2'
            )
            s.path(d: 'M17 12v9')
            s.path(d: 'M16 20h2')
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.17.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/trekking.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/trekking.rb