Sha256: d84ad9017368d6d0733575fa9329bb9bf892bc10fc26d6c4bdbdfd9eefcd59f6

Contents?: true

Size: 692 Bytes

Versions: 14

Compression:

Stored size: 692 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class BrandHtml5 < 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: 'M20 4l-2 14.5l-6 2l-6 -2l-2 -14.5z')
            s.path(d: 'M15.5 8h-7l.5 4h6l-.5 3.5l-2.5 .75l-2.5 -.75l-.1 -.5')
          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/brand_html5.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/brand_html5.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/brand_html5.rb