Sha256: 194ced8b0391b184ad49f0fde753ba31cc990f7a451c34e512f3c54eb557a807
Contents?: true
Size: 755 Bytes
Versions: 26
Compression:
Stored size: 755 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GitGraph < 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: 'M5 9v6') s.circle(cx: '5', cy: '18', r: '3') s.path(d: 'M12 3v18') s.circle(cx: '19', cy: '6', r: '3') s.path(d: 'M16 15.7A9 9 0 0 0 19 9') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems