Sha256: 2b447fbe305cd128302050702b2bf24ebc42b48d65b66075d1973ffeec223404
Contents?: true
Size: 797 Bytes
Versions: 14
Compression:
Stored size: 797 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class FileScan < 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: 'M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4') s.path(d: 'M14 2v4a2 2 0 0 0 2 2h4') s.path(d: 'M16 14a2 2 0 0 0-2 2') s.path(d: 'M20 14a2 2 0 0 1 2 2') s.path(d: 'M20 22a2 2 0 0 0 2-2') s.path(d: 'M16 22a2 2 0 0 1-2-2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems