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