Sha256: e58ed9da5a1a563cc887f89516c3b161f3120eaf7e3e860048a4637d3acc8b9b
Contents?: true
Size: 576 Bytes
Versions: 26
Compression:
Stored size: 576 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MoveDownRight < 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.path(d: 'M19 13V19H13') s.path(d: 'M5 5L19 19') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems