Sha256: a6bca207b884b75e41d4089a881128c3d6395407859c435754f929558da2bd9d
Contents?: true
Size: 642 Bytes
Versions: 14
Compression:
Stored size: 642 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class AArrowUp < Base def view_template svg( **attrs, 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 16V7') s.path(d: 'm14 11 4-4 4 4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems