Sha256: 1a98f3f8008567c2e6d44b68225b2c2aa20d0dd4412c00944f767efa3e240395
Contents?: true
Size: 660 Bytes
Versions: 26
Compression:
Stored size: 660 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MoveHorizontal < 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.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
26 entries across 26 versions & 2 rubygems