Sha256: 1542b5040a2392c642738a6f60e7d94f9865fe26387960da3f355ac6c88f98e2
Contents?: true
Size: 611 Bytes
Versions: 26
Compression:
Stored size: 611 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ArrowDownToLine < 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: 'M12 17V3') s.path(d: 'm6 11 6 6 6-6') s.path(d: 'M19 21H5') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems