Sha256: 0f7747a679e128a44c772849a762c1f0199b0bdc501a8425e8647b7b4a865989

Contents?: true

Size: 1.6 KB

Versions: 12

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BowlSpoon < 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 10a2 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'
            )
            s.path(
              d:
                'M8 2c1.71 0 3.237 .787 3.785 2h8.215a1 1 0 0 1 0 2l-8.216 .001c-.548 1.213 -2.074 1.999 -3.784 1.999c-2.144 0 -4 -1.237 -4 -3s1.856 -3 4 -3'
            )
          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 11h16a1 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'
            )
            s.path(
              d: 'M8 7c1.657 0 3 -.895 3 -2s-1.343 -2 -3 -2s-3 .895 -3 2s1.343 2 3 2'
            )
            s.path(d: 'M11 5h9')
          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_spoon.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/bowl_spoon.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/bowl_spoon.rb