Sha256: 78a1586f05ef6f1f087c11657b7d08c7b82b6a4b602199af1b3db7a099ea483a
Contents?: true
Size: 787 Bytes
Versions: 26
Compression:
Stored size: 787 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class UnfoldVertical < 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