Sha256: f9e1f54053e1cd36f2654aa7613e824413b87737a294fb81da6715182e0f78c6
Contents?: true
Size: 588 Bytes
Versions: 14
Compression:
Stored size: 588 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Diff < 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: 'M12 3v14') s.path(d: 'M5 10h14') s.path(d: 'M5 21h14') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems