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