Sha256: 23c76cd4dd4cbb785ca658b96456a4ad5fe0ce28749c2bb9252b8b270b83f768
Contents?: true
Size: 660 Bytes
Versions: 12
Compression:
Stored size: 660 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Heading4 < Base def view_template 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: 'M4 12h8') s.path(d: 'M4 18V6') s.path(d: 'M12 18V6') s.path(d: 'M17 10v4h4') s.path(d: 'M21 10v8') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems