Sha256: 05d231b82fa07f188f5fcb6be15dca922af6cf219543d4b5a6ee03f60b00a2e5
Contents?: true
Size: 776 Bytes
Versions: 14
Compression:
Stored size: 776 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class FoldHorizontal < 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: 'M2 12h6') s.path(d: 'M22 12h-6') s.path(d: 'M12 2v2') s.path(d: 'M12 8v2') s.path(d: 'M12 14v2') s.path(d: 'M12 20v2') s.path(d: 'm19 9-3 3 3 3') s.path(d: 'm5 15 3-3-3-3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems