Sha256: 7271cc43959010dc0c1b58b5dcd6a5d857c7fa813d6e604ad712fa1694b664f3
Contents?: true
Size: 778 Bytes
Versions: 18
Compression:
Stored size: 778 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class FoldVertical < 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: '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
18 entries across 18 versions & 2 rubygems