Sha256: eb68755ef170358b6b682934a53f8ed2c9fef0402784b365346cd39ffb0eaed8
Contents?: true
Size: 648 Bytes
Versions: 26
Compression:
Stored size: 648 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ArrowRightLeft < 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: 'm16 3 4 4-4 4') s.path(d: 'M20 7H4') s.path(d: 'm8 21-4-4 4-4') s.path(d: 'M4 17h16') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems