Sha256: 87bfc5d40f9c2f61cc3175c81f9bb84d04315ce080ae03b8268d844c8d03cdff
Contents?: true
Size: 668 Bytes
Versions: 26
Compression:
Stored size: 668 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Upload < 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: 'M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4') s.polyline(points: '17 8 12 3 7 8') s.line(x1: '12', x2: '12', y1: '3', y2: '15') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems