Sha256: 84902c38b056df0fb31f7a6905c18b19bb5e7c0639f94e6c6579069985a77d86
Contents?: true
Size: 571 Bytes
Versions: 26
Compression:
Stored size: 571 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class MoveUpLeft < 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: 'M5 11V5H11') s.path(d: 'M5 5L19 19') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems