Sha256: 697352da36d1209edb00ac282bc418de5ac9fc91c4f5711abfd976a3efde9b10
Contents?: true
Size: 574 Bytes
Versions: 26
Compression:
Stored size: 574 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ArrowDownLeft < 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: 'M17 7 7 17') s.path(d: 'M17 17H7V7') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems