Sha256: 01bfa6a2bf1e9119c5a513ec03e76b23f2b1ffd151e5f200b093134c08a54a5d
Contents?: true
Size: 505 Bytes
Versions: 26
Compression:
Stored size: 505 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Slash < Base def view_template svg( class: classes, 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' ) { |s| s.path(d: 'M22 2 2 22') } end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems