Sha256: 9188b26598832629390b129aceaf3fe9870fe13cc024e2748ff39d2e7b49e518
Contents?: true
Size: 650 Bytes
Versions: 26
Compression:
Stored size: 650 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class AArrowDown < 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: 'M3.5 13h6') s.path(d: 'm2 16 4.5-9 4.5 9') s.path(d: 'M18 7v9') s.path(d: 'm14 12 4 4 4-4') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems