Sha256: 6d511971d9abf055f90945d054ebb6de49f2b6c8756e469f1c548df7d0afc557
Contents?: true
Size: 794 Bytes
Versions: 26
Compression:
Stored size: 794 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Haze < Base def view_template 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: 'm5.2 6.2 1.4 1.4') s.path(d: 'M2 13h2') s.path(d: 'M20 13h2') s.path(d: 'm17.4 7.6 1.4-1.4') s.path(d: 'M22 17H2') s.path(d: 'M22 21H2') s.path(d: 'M16 13a4 4 0 0 0-8 0') s.path(d: 'M12 5V2.5') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems