Sha256: 232281ed7b10ff9bd590c61fcb999bca6ba9add331bdecb091c4004207500afb
Contents?: true
Size: 794 Bytes
Versions: 26
Compression:
Stored size: 794 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ScanText < 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 7V5a2 2 0 0 1 2-2h2') s.path(d: 'M17 3h2a2 2 0 0 1 2 2v2') s.path(d: 'M21 17v2a2 2 0 0 1-2 2h-2') s.path(d: 'M7 21H5a2 2 0 0 1-2-2v-2') s.path(d: 'M7 8h8') s.path(d: 'M7 12h10') s.path(d: 'M7 16h6') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems