Sha256: 052ba534aeee4fd88b31aec78217f0a82925558acc22dd643f8843bb283cc121
Contents?: true
Size: 605 Bytes
Versions: 10
Compression:
Stored size: 605 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MoveVertical < 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: 'M12 2v20') s.path(d: 'm8 18 4 4 4-4') s.path(d: 'm8 6 4-4 4 4') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems