Sha256: 1a9bc5a91462320a3b2869400d675cea3fbb9b8d695c0d8784a2bf57911ca9b4
Contents?: true
Size: 869 Bytes
Versions: 12
Compression:
Stored size: 869 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class FireExtinguisher < 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: 'M12 7a4 4 0 0 1 4 4v9a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1v-9a4 4 0 0 1 4 -4z' ) s.path(d: 'M9 16h6') s.path(d: 'M12 7v-3') s.path(d: 'M16 5l-4 -1l4 -1') s.path(d: 'M12 4h-3a3 3 0 0 0 -3 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems