Sha256: 4f71f36b50e1098bcb756998d10e1d6b4732e5f8f201d5f7a224363bedf3789a
Contents?: true
Size: 684 Bytes
Versions: 18
Compression:
Stored size: 684 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Scan < 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') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems