Sha256: e31993b44e8ff296a41241bd968c5152a6e1bb8f2d940705fd0dba9b59aef8a0
Contents?: true
Size: 590 Bytes
Versions: 14
Compression:
Stored size: 590 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Heading < 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: 'M6 12h12') s.path(d: 'M6 20V4') s.path(d: 'M18 20V4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems