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