Sha256: 3b3e41aeac7267a450699493fa1be43e1cfcbb210c49d794270da86a9547d326
Contents?: true
Size: 665 Bytes
Versions: 14
Compression:
Stored size: 665 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Navigation2Off < 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: 'M9.31 9.31 5 21l7-4 7 4-1.17-3.17') s.path(d: 'M14.53 8.88 12 2l-1.17 3.17') s.line(x1: '2', x2: '22', y1: '2', y2: '22') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems