Sha256: 3b19df8a7f4a70455948ebeff5f47e1ca20af4cc579f5efe8e67df484e96a111
Contents?: true
Size: 773 Bytes
Versions: 18
Compression:
Stored size: 773 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Crosshair < 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.circle(cx: '12', cy: '12', r: '10') s.line(x1: '22', x2: '18', y1: '12', y2: '12') s.line(x1: '6', x2: '2', y1: '12', y2: '12') s.line(x1: '12', x2: '12', y1: '6', y2: '2') s.line(x1: '12', x2: '12', y1: '22', y2: '18') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems