Sha256: 5c5473f61f9cb7a58b3c46523cd6bb9f8c30a45b049a900ee52e63348bfddedb

Contents?: true

Size: 1.52 KB

Versions: 12

Compression:

Stored size: 1.52 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Beer < Base
        def filled
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M17 2a2 2 0 0 1 1.995 1.85l.005 .15v4c0 1.335 -.229 2.386 -.774 3.692l-.157 .363l-.31 .701a8.902 8.902 0 0 0 -.751 3.242l-.008 .377v3.625a2 2 0 0 1 -1.85 1.995l-.15 .005h-6a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3.625c0 -1.132 -.21 -2.25 -.617 -3.28l-.142 -.34l-.31 -.699c-.604 -1.358 -.883 -2.41 -.925 -3.698l-.006 -.358v-4a2 2 0 0 1 1.85 -1.995l.15 -.005h10zm0 2h-10v3h10v-3z'
            )
          end
        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:
                'M9 21h6a1 1 0 0 0 1 -1v-3.625c0 -1.397 .29 -2.775 .845 -4.025l.31 -.7c.556 -1.25 .845 -2.253 .845 -3.65v-4a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1v4c0 1.397 .29 2.4 .845 3.65l.31 .7a9.931 9.931 0 0 1 .845 4.025v3.625a1 1 0 0 0 1 1z'
            )
            s.path(d: 'M6 8h12')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

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