Sha256: 112644bd8ab3c848ffcb0fb0213443af96513a4e0bb34dfede6077369f95c952
Contents?: true
Size: 668 Bytes
Versions: 26
Compression:
Stored size: 668 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class EqualNot < 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' ) do |s| s.line(x1: '5', x2: '19', y1: '9', y2: '9') s.line(x1: '5', x2: '19', y1: '15', y2: '15') s.line(x1: '19', x2: '5', y1: '5', y2: '19') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems