Sha256: 33823f0292c75c43f673276d8565f9b6976abc16896f2f35b2a03c76320e94b2
Contents?: true
Size: 653 Bytes
Versions: 4
Compression:
Stored size: 653 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MoveHorizontal < 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.polyline(points: '18 8 22 12 18 16') s.polyline(points: '6 8 2 12 6 16') s.line(x1: '2', x2: '22', y1: '12', y2: '12') end end end end end end
Version data entries
4 entries across 4 versions & 2 rubygems