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

- old
+ new

@@ -1,13 +1,30 @@ # frozen_string_literal: true +# rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class IroningSteam < 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: 'M12 18a1 1 0 0 1 1 1v2a1 1 0 0 1 -2 0v-2a1 1 0 0 1 1 -1') + s.path( + d: + 'M16.459 3a4 4 0 0 1 3.945 3.343l.577 3.464l.81 4.865a2 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 -2z' + ) + s.path(d: 'M7.106 18.553a1 1 0 0 1 1.788 .894l-1 2a1 1 0 0 1 -1.788 -.894z') + s.path( + d: + 'M15.553 18.106a1 1 0 0 1 1.341 .447l1 2a1 1 0 0 1 -1.788 .894l-1 -2a1 1 0 0 1 .447 -1.341' + ) + end end def outline svg( **attrs, @@ -30,5 +47,6 @@ end end end end end +# rubocop:enable Layout/LineLength