Sha256: f8e288ebb988c3bde3a57b0999a849ae906e8a360d3c2f4beb6ef0697dc1adf8

Contents?: true

Size: 769 Bytes

Versions: 14

Compression:

Stored size: 769 Bytes

Contents

# frozen_string_literal: true

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

        def outline
          svg(
            **attrs,
            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: 'M21 19h-18l9 -15')
            s.path(d: 'M20.615 15.171h.015')
            s.path(d: 'M19.515 11.771h.015')
            s.path(d: 'M17.715 8.671h.015')
            s.path(d: 'M15.415 5.971h.015')
          end
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/angle.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/angle.rb