Sha256: a0479f29b55b8c98d07e5a1b0152121d5681049277c0dc34359620c2a5f92562
Contents?: true
Size: 667 Bytes
Versions: 26
Compression:
Stored size: 667 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ListX < 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: 'm19 10-4 4') s.path(d: 'm15 10 4 4') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems