Sha256: 62197b9d1a44875abce82635a2203843515f6962da667e96f89b6068360ff223
Contents?: true
Size: 769 Bytes
Versions: 26
Compression:
Stored size: 769 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GitBranchPlus < 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.path(d: 'M6 3v12') s.path(d: 'M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z') s.path(d: 'M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z') s.path(d: 'M15 6a9 9 0 0 0-9 9') s.path(d: 'M18 15v6') s.path(d: 'M21 18h-6') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems