Sha256: ec5f7a5e506fcf6e27bfd9a0a32de25356d455d6fbfb4c200648197cd2339414
Contents?: true
Size: 575 Bytes
Versions: 26
Compression:
Stored size: 575 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MoveRight < 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: 'M18 8L22 12L18 16') s.path(d: 'M2 12H22') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems