Sha256: 0f7be6d315b1b2ac396281b688a5f87b74f2224efe465e0e9af170cad4163f08
Contents?: true
Size: 897 Bytes
Versions: 14
Compression:
Stored size: 897 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class ScanEye < 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.circle(cx: '12', cy: '12', r: '1') s.path( d: 'M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems