Sha256: 48e8a6b25e00071b2dbff9a408954b0efe4f227704bc6791f0837ba570e261d4
Contents?: true
Size: 718 Bytes
Versions: 14
Compression:
Stored size: 718 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GitPullRequestArrow < 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.circle(cx: '5', cy: '6', r: '3') s.path(d: 'M5 9v12') s.circle(cx: '19', cy: '18', r: '3') s.path(d: 'm15 9-3-3 3-3') s.path(d: 'M12 6h5a2 2 0 0 1 2 2v7') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems