Sha256: 7793d9aee4b584657ddfca98044beb3b7b83e0338b8be19831c53c418c30e488

Contents?: true

Size: 795 Bytes

Versions: 4

Compression:

Stored size: 795 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class Ironing2 < 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: 'M10 15h.01')
            s.path(
              d:
                'M9 6h7.459a3 3 0 0 1 2.959 2.507l.577 3.464l.81 4.865a1 1 0 0 1 -.985 1.164h-16.82a7 7 0 0 1 7 -7h9.8'
            )
            s.path(d: 'M14 15h.01')
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

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