Sha256: 484e27063e358a6dbbea4f9f6443823164b566e308309025b75dc0dcd8fde657
Contents?: true
Size: 622 Bytes
Versions: 14
Compression:
Stored size: 622 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Tally4 < 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 4v16') s.path(d: 'M9 4v16') s.path(d: 'M14 4v16') s.path(d: 'M19 4v16') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems