Sha256: 8e53a4717a7c1c90daf9cd838817dece70de5686e265710c11772c245a887786
Contents?: true
Size: 762 Bytes
Versions: 14
Compression:
Stored size: 762 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class FlipHorizontal < 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: 'M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3') s.path(d: 'M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3') s.path(d: 'M12 20v2') s.path(d: 'M12 14v2') s.path(d: 'M12 8v2') s.path(d: 'M12 2v2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems