Sha256: 49cb639dc7aabeac91190941e86acba6dccdec0e443e99a368be8f2b6dad8f66
Contents?: true
Size: 785 Bytes
Versions: 26
Compression:
Stored size: 785 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class FoldVertical < 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: 'M12 22v-6') s.path(d: 'M12 8V2') s.path(d: 'M4 12H2') s.path(d: 'M10 12H8') s.path(d: 'M16 12h-2') s.path(d: 'M22 12h-2') s.path(d: 'm15 19-3-3-3 3') s.path(d: 'm15 5-3 3-3-3') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems