Sha256: 4bf66802469595aa5a34e72b705a162afe1e68691427abd9cabf8a924a11b3d5
Contents?: true
Size: 722 Bytes
Versions: 14
Compression:
Stored size: 722 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ScanLine < 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 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 12h10') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems