Sha256: 729f8d8197e2ace59d1e4b379a1b8b98006b5f02873e7c506c192928acb05ba1
Contents?: true
Size: 602 Bytes
Versions: 14
Compression:
Stored size: 602 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.path(d: 'M11 19H5v-6') s.path(d: 'M13 5h6v6') s.path(d: 'M19 5 5 19') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems