Sha256: c0e3f364cbdf822102e15df35eb3df7e0fbf3e35b2eb2656259852750c5b9aaa
Contents?: true
Size: 778 Bytes
Versions: 26
Compression:
Stored size: 778 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GitCompareArrows < 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.circle(cx: '5', cy: '6', r: '3') s.path(d: 'M12 6h5a2 2 0 0 1 2 2v7') s.path(d: 'm15 9-3-3 3-3') s.circle(cx: '19', cy: '18', r: '3') s.path(d: 'M12 18H7a2 2 0 0 1-2-2V9') s.path(d: 'm9 15 3 3-3 3') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems