Sha256: c3d8df151717ace17ed399df3878fee1e7669e19ce99b700aeeaa58293482488
Contents?: true
Size: 700 Bytes
Versions: 18
Compression:
Stored size: 700 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GitPullRequestCreate < 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: '6', cy: '6', r: '3') s.path(d: 'M6 9v12') s.path(d: 'M13 6h3a2 2 0 0 1 2 2v3') s.path(d: 'M18 15v6') s.path(d: 'M21 18h-6') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems