Sha256: a51eadd8b8bf79e5bbdbd9e85781de9bb426650a7b222532fa8b5cf0da48cf2a
Contents?: true
Size: 607 Bytes
Versions: 10
Compression:
Stored size: 607 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.path(d: 'm18 8 4 4-4 4') s.path(d: 'M2 12h20') s.path(d: 'm6 8-4 4 4 4') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems