Sha256: 17fa8620f898b05e25f424dbfb1320e5e1c10463a74df20c426c78b65a3a6358
Contents?: true
Size: 666 Bytes
Versions: 26
Compression:
Stored size: 666 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ListPlus < 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: 'M11 12H3') s.path(d: 'M16 6H3') s.path(d: 'M16 18H3') s.path(d: 'M18 9v6') s.path(d: 'M21 12h-6') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems