Sha256: 55398287430daa34d34a47481f81a6463d9db2f82095f8cb070ea84fbbb4dff8
Contents?: true
Size: 833 Bytes
Versions: 4
Compression:
Stored size: 833 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class IroningSteam < 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: 'M12 19v2') s.path( d: 'M9 4h7.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: 'M8 19l-1 2') s.path(d: 'M16 19l1 2') end end end end end end
Version data entries
4 entries across 4 versions & 2 rubygems