Sha256: 2ad32d8e097555987dac309b4614a341ee8fcc09048204239e96c8a2dc8dd4a8
Contents?: true
Size: 704 Bytes
Versions: 18
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Import < 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: 'M12 3v12') s.path(d: 'm8 11 4 4 4-4') s.path( d: 'M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4' ) end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems