Sha256: 754404cf7108906928871b6a00cdd62ea6b006864be262bfe83d520679fe1793

Contents?: true

Size: 972 Bytes

Versions: 6

Compression:

Stored size: 972 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BrandSteam < 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:
                'M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 3l-.176 0a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z'
            )
            s.circle(cx: '16.5', cy: '9.5', r: '1', fill: 'currentColor')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/brand_steam.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/brand_steam.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/brand_steam.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/brand_steam.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/brand_steam.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/brand_steam.rb