Sha256: 07b5a9f9c997c4a4aedad38a7767aa3a92e2fa339f8972bc72a2bb9bb2c3004e

Contents?: true

Size: 964 Bytes

Versions: 12

Compression:

Stored size: 964 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class WashMachine < Base
        def filled
          raise NotImplementedError
        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:
                'M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z'
            )
            s.path(d: 'M12 14m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0')
            s.path(d: 'M8 6h.01')
            s.path(d: 'M11 6h.01')
            s.path(d: 'M14 6h2')
            s.path(d: 'M8 14c1.333 -.667 2.667 -.667 4 0c1.333 .667 2.667 .667 4 0')
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

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