Sha256: d693984f255ebb741f2d0bac00c30d394f9b9054cf4b40984da799c711fa678f
Contents?: true
Size: 745 Bytes
Versions: 26
Compression:
Stored size: 745 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class GitPullRequestClosed < 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: '6', cy: '6', r: '3') s.path(d: 'M6 9v12') s.path(d: 'm21 3-6 6') s.path(d: 'm21 9-6-6') s.path(d: 'M18 11.5V15') s.circle(cx: '18', cy: '18', r: '3') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems