Sha256: 6a338286418866b4c2f4c6abf36d2dd7b2182197c5bd882b5b73d152dd208757
Contents?: true
Size: 685 Bytes
Versions: 14
Compression:
Stored size: 685 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ListCollapse < 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: '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
14 entries across 14 versions & 2 rubygems