Sha256: be80d76cea4104a8411d4fdb4317bea6999d6f3f54a0128df966111602b2a900

Contents?: true

Size: 1.24 KB

Versions: 12

Compression:

Stored size: 1.24 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Bowl < 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:
                'M20 7a2 2 0 0 1 2 2v.5c0 1.694 -2.247 5.49 -3.983 6.983l-.017 .013v.504a2 2 0 0 1 -1.85 1.995l-.15 .005h-8a2 2 0 0 1 -2 -2v-.496l-.065 -.053c-1.76 -1.496 -3.794 -4.965 -3.928 -6.77l-.007 -.181v-.5a2 2 0 0 1 2 -2z'
            )
          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:
                'M4 8h16a1 1 0 0 1 1 1v.5c0 1.5 -2.517 5.573 -4 6.5v1a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-1c-1.687 -1.054 -4 -5 -4 -6.5v-.5a1 1 0 0 1 1 -1z'
            )
          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/bowl.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/bowl.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/bowl.rb