Sha256: 788b55a6eaf9394dade3a991cf2ffdff883f79c9208a57cf269d272a00c6e1a2
Contents?: true
Size: 527 Bytes
Versions: 26
Compression:
Stored size: 527 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ArrowBigDown < 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' ) { |s| s.path(d: 'M15 6v6h4l-7 7-7-7h4V6h6z') } end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems