Sha256: 916251251d9a77f051266a9fc0969fe101f820f93b3009d7e7c25b9af3107474
Contents?: true
Size: 692 Bytes
Versions: 26
Compression:
Stored size: 692 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ListCollapse < 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: 'm3 10 2.5-2.5L3 5') s.path(d: 'm3 19 2.5-2.5L3 14') s.path(d: 'M10 6h11') s.path(d: 'M10 12h11') s.path(d: 'M10 18h11') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems