Sha256: 2903f1bfc49be393078755034becd00342bb22d9c57481f29a5fb821b7f2b4e3
Contents?: true
Size: 652 Bytes
Versions: 4
Compression:
Stored size: 652 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MoveDiagonal2 < 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.polyline(points: '5 11 5 5 11 5') s.polyline(points: '19 13 19 19 13 19') s.line(x1: '5', x2: '19', y1: '5', y2: '19') end end end end end end
Version data entries
4 entries across 4 versions & 2 rubygems