lib/phlex/icons/tabler/ironing_3.rb in phlex-icons-tabler-1.1.0 vs lib/phlex/icons/tabler/ironing_3.rb in phlex-icons-tabler-1.2.0

- old
+ new

@@ -1,13 +1,24 @@ # frozen_string_literal: true +# rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class Ironing3 < Base def filled - raise NotImplementedError + svg( + **attrs, + xmlns: 'http://www.w3.org/2000/svg', + viewbox: '0 0 24 24', + fill: 'currentColor' + ) do |s| + s.path( + d: + 'M16.459 5a4 4 0 0 1 3.945 3.343l1.387 8.329a2 2 0 0 1 -1.971 2.328h-16.82a1 1 0 0 1 -1 -1a8 8 0 0 1 8 -8h8.652l-.22 -1.329a2 2 0 0 0 -1.811 -1.665l-.162 -.006h-7.459a1 1 0 1 1 0 -2zm-4.449 9h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m-3 0h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2m6 0h-.01a1 1 0 0 0 -.117 1.993l.127 .007a1 1 0 0 0 0 -2' + ) + end end def outline svg( **attrs, @@ -30,5 +41,6 @@ end end end end end +# rubocop:enable Layout/LineLength